We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d835535 commit 3e17886Copy full SHA for 3e17886
3 files changed
Dockerfile
@@ -22,7 +22,7 @@ RUN curl -LsSf https://astral.sh/uv/install.sh | sh \
22
&& uv python install 3.11 \
23
&& uv venv \
24
&& cd /tmp/build \
25
- && uv --native-tls pip install --no-cache . \
+ && uv --native-tls pip install --no-cache --override /tmp/build/etc/uv-overrides.txt . \
26
&& uv --native-tls run --script /tmp/build/etc/fetchDefaultModels.py \
27
&& rm -rf /tmp/build
28
etc/uv-overrides.txt
@@ -0,0 +1,2 @@
1
+numba>=0.60.0
2
+llvmlite>=0.43.0
pyproject.toml
@@ -32,6 +32,7 @@ dependencies = [
32
"python-docx>=1.1.2",
33
"python-dotenv>=1.0.1",
34
"python-pptx>=1.0.2",
35
+ "numba>=0.60.0",
36
"unstructured>=0.14.8",
37
"faiss-cpu>=1.11.0",
38
"langchain_community>=0.3.18",
0 commit comments