Spaces:
Sleeping
Sleeping
Initial commit
Browse files- Dockerfile +1 -1
- pyproject.toml +1 -1
Dockerfile
CHANGED
@@ -23,7 +23,7 @@ COPY --chown=user . $HOME/app
|
|
23 |
RUN uv sync
|
24 |
|
25 |
# Download NLTK data
|
26 |
-
RUN uv run -
|
27 |
|
28 |
# Expose the port
|
29 |
EXPOSE 7860
|
|
|
23 |
RUN uv sync
|
24 |
|
25 |
# Download NLTK data
|
26 |
+
RUN uv run -c "import nltk; nltk.download('punkt'); nltk.download('punkt_tab')"
|
27 |
|
28 |
# Expose the port
|
29 |
EXPOSE 7860
|
pyproject.toml
CHANGED
@@ -18,7 +18,7 @@ dependencies = [
|
|
18 |
"langchain-qdrant==0.2.0",
|
19 |
"langgraph==0.2.61",
|
20 |
"lxml==5.3.1",
|
21 |
-
"nltk==3.
|
22 |
"numpy==2.2.3",
|
23 |
"pyarrow==19.0.1",
|
24 |
"pymupdf==1.25.3",
|
|
|
18 |
"langchain-qdrant==0.2.0",
|
19 |
"langgraph==0.2.61",
|
20 |
"lxml==5.3.1",
|
21 |
+
"nltk==3.8.1",
|
22 |
"numpy==2.2.3",
|
23 |
"pyarrow==19.0.1",
|
24 |
"pymupdf==1.25.3",
|