Upload 3 files
Browse files- .dockerignore +29 -0
- requirements.txt +5 -1
- runtime.txt +1 -0
.dockerignore
ADDED
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
venv/
|
2 |
+
__pycache__/
|
3 |
+
*.pyc
|
4 |
+
*.pyo
|
5 |
+
*.pyd
|
6 |
+
.Python
|
7 |
+
env/
|
8 |
+
pip-log.txt
|
9 |
+
pip-delete-this-directory.txt
|
10 |
+
.tox/
|
11 |
+
.coverage
|
12 |
+
.coverage.*
|
13 |
+
.cache
|
14 |
+
nosetests.xml
|
15 |
+
coverage.xml
|
16 |
+
*.cover
|
17 |
+
*.log
|
18 |
+
.git/
|
19 |
+
.mypy_cache/
|
20 |
+
.pytest_cache/
|
21 |
+
.hypothesis/
|
22 |
+
downloads_folder/
|
23 |
+
reports/
|
24 |
+
uploads/
|
25 |
+
*.html
|
26 |
+
*.pdf
|
27 |
+
*.docx
|
28 |
+
*.pptx
|
29 |
+
*.xlsx
|
requirements.txt
CHANGED
@@ -27,6 +27,7 @@ tqdm==4.67.1
|
|
27 |
torch==2.7.1
|
28 |
torchvision==0.22.1
|
29 |
transformers==4.52.4
|
|
|
30 |
|
31 |
# Additional libraries
|
32 |
chess==1.11.2
|
@@ -49,4 +50,7 @@ plotly==6.1.2
|
|
49 |
Jinja2==3.1.6
|
50 |
|
51 |
# MCP support
|
52 |
-
mcp==1.9.3
|
|
|
|
|
|
|
|
27 |
torch==2.7.1
|
28 |
torchvision==0.22.1
|
29 |
transformers==4.52.4
|
30 |
+
youtube-transcript-api==1.1.0
|
31 |
|
32 |
# Additional libraries
|
33 |
chess==1.11.2
|
|
|
50 |
Jinja2==3.1.6
|
51 |
|
52 |
# MCP support
|
53 |
+
mcp==1.9.3
|
54 |
+
|
55 |
+
# Additional dependencies for document processing
|
56 |
+
soupsieve==2.7
|
runtime.txt
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
python-3.10.0
|