project init
Browse files- .gitignore +12 -0
- .python-version +1 -0
- Dockerfile +29 -0
- app.py +0 -0
- pyproject.toml +15 -0
- uv.lock +0 -0
.gitignore
ADDED
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Python-generated files
|
2 |
+
__pycache__/
|
3 |
+
*.py[oc]
|
4 |
+
build/
|
5 |
+
dist/
|
6 |
+
wheels/
|
7 |
+
*.egg-info
|
8 |
+
|
9 |
+
# Virtual environments
|
10 |
+
.venv
|
11 |
+
|
12 |
+
.env
|
.python-version
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
3.13
|
Dockerfile
ADDED
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Get a distribution that has uv already installed
|
2 |
+
FROM ghcr.io/astral-sh/uv:python3.13-bookworm-slim
|
3 |
+
|
4 |
+
# Add user - this is the user that will run the app
|
5 |
+
# If you do not set user, the app will run as root (undesirable)
|
6 |
+
RUN useradd -m -u 1000 user
|
7 |
+
USER user
|
8 |
+
|
9 |
+
# Set the home directory and path
|
10 |
+
ENV HOME=/home/user \
|
11 |
+
PATH=/home/user/.local/bin:$PATH
|
12 |
+
|
13 |
+
ENV UVICORN_WS_PROTOCOL=websockets
|
14 |
+
|
15 |
+
# Set the working directory
|
16 |
+
WORKDIR $HOME/app
|
17 |
+
|
18 |
+
# Copy the app to the container
|
19 |
+
COPY --chown=user . $HOME/app
|
20 |
+
|
21 |
+
# Install the dependencies
|
22 |
+
# RUN uv sync --frozen
|
23 |
+
RUN uv sync
|
24 |
+
|
25 |
+
# Expose the port
|
26 |
+
EXPOSE 7860
|
27 |
+
|
28 |
+
# Run the app
|
29 |
+
CMD ["uv", "run", "chainlit", "run", "app.py", "--host", "0.0.0.0", "--port", "7860"]
|
app.py
ADDED
File without changes
|
pyproject.toml
ADDED
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[project]
|
2 |
+
name = "otmidterm"
|
3 |
+
version = "0.1.0"
|
4 |
+
description = "Add your description here"
|
5 |
+
readme = "README.md"
|
6 |
+
requires-python = ">=3.13"
|
7 |
+
dependencies = [
|
8 |
+
"chainlit>=2.2.1",
|
9 |
+
"langchain-community>=0.3.18",
|
10 |
+
"langchain-core>=0.3.39",
|
11 |
+
"langchain-openai>=0.3.7",
|
12 |
+
"langchain-qdrant>=0.2.0",
|
13 |
+
"langgraph>=0.2.74",
|
14 |
+
"qdrant-client>=1.13.2",
|
15 |
+
]
|
uv.lock
ADDED
The diff for this file is too large to render.
See raw diff
|
|