-
Notifications
You must be signed in to change notification settings - Fork 218
Add support for Audio and Video summarization to Docsum #865
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
46 commits
Select commit
Hold shift + click to select a range
6c14008
v2a services
MSCetin37 1b28def
add a2t - llm
MSCetin37 8295cd6
update whisper serve
MSCetin37 6a44c5e
updates
MSCetin37 80ac6a5
add data service
MSCetin37 89e76c7
gateway
MSCetin37 0ff5083
clean gateway & orchestrator
MSCetin37 22a6516
updates
MSCetin37 89723ed
updates
MSCetin37 4907fc1
adding functional tests
MSCetin37 6cff4b2
updates
MSCetin37 afbbbde
updates
MSCetin37 b765da5
updates read me file
MSCetin37 f84cdcb
name changes
MSCetin37 f4f7d55
update readme file
MSCetin37 a4cb22d
update readme file
MSCetin37 9a9346e
update readme file
MSCetin37 01e0a4c
update readme file
MSCetin37 cce4a61
update readme file
MSCetin37 37112c0
update max token option
MSCetin37 d428d10
update the test files
MSCetin37 f2440ed
readme updtes
MSCetin37 5b2b6cf
readme updtes
MSCetin37 d6ee02f
merge sync
MSCetin37 a2a8c86
clean code
MSCetin37 f402ba3
update dataprep-compose-cd.yaml file
MSCetin37 6e10b4f
merge and sync
MSCetin37 ab61f95
merge and sync
MSCetin37 ff3ef0e
merge and sync gateway
MSCetin37 e8cd092
adding the copyright header
MSCetin37 bba8404
update the end of file char
MSCetin37 51d2784
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] 6a87761
Merge branch 'main' into docsum
MSCetin37 c314778
update gateway
MSCetin37 c3c2d5f
update gateway-docsum
MSCetin37 a836be0
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] d54f99a
fix test files
MSCetin37 f1d1b06
fix test files
MSCetin37 e274a33
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] cfeecca
Merge branch 'main' into docsum
ashahba 0af301f
merge & sync
MSCetin37 0e344b7
merge & sync
MSCetin37 374f3a1
Update dataprep-compose.yaml
MSCetin37 aca165f
update test
MSCetin37 eb11648
update dataprep-compose
MSCetin37 4e12321
Merge branch 'main' into docsum
ZePan110 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -36,6 +36,8 @@ | |
| ScoreDoc, | ||
| PIIRequestDoc, | ||
| PIIResponseDoc, | ||
| Audio2text, | ||
| DocSumDoc, | ||
| ) | ||
|
|
||
| # Constants | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,30 @@ | ||
| # Copyright (C) 2024 Intel Corporation | ||
| # SPDX-License-Identifier: Apache-2.0 | ||
|
|
||
| # Use the official Python 3.11 slim image as the base image | ||
| FROM python:3.11-slim | ||
|
|
||
| # Set environment variables | ||
| ENV LANG=C.UTF-8 | ||
|
|
||
| # Install necessary packages and clean up to reduce image size | ||
| RUN apt-get update -y && apt-get install -y --no-install-recommends --fix-missing \ | ||
| build-essential \ | ||
| libgl1-mesa-glx \ | ||
| libjemalloc-dev && \ | ||
| apt-get clean && \ | ||
| rm -rf /var/lib/apt/lists/* | ||
|
|
||
| # Create a directory for the user and set it as the working directory | ||
| WORKDIR /home/user | ||
|
|
||
| # Copy the application code and requirements file to the container | ||
| COPY comps /home/user/comps | ||
ashahba marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| COPY requirements.txt /home/user/requirements.txt | ||
| COPY ./comps/dataprep/multimedia2text/multimedia2text.py /home/user/multimedia2text.py | ||
ashahba marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| # Install Python dependencies | ||
| RUN python -m pip install --no-cache-dir -r requirements.txt | ||
|
|
||
| # Define the entry point for the container | ||
| ENTRYPOINT ["python", "multimedia2text.py"] | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.