-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e6232f6
commit 8287ca8
Showing
7 changed files
with
23 additions
and
21 deletions.
There are no files selected for viewing
This file contains 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 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 |
---|---|---|
@@ -1,11 +1,9 @@ | ||
FROM python:3.12.4-slim | ||
|
||
WORKDIR /opt/app | ||
COPY requirements.*.txt ./ | ||
COPY requirements.txt ./ | ||
|
||
RUN pip install --no-cache-dir -r requirements.llm.txt | ||
RUN pip install --no-cache-dir -r requirements.app.txt | ||
RUN pip install --no-cache-dir -r requirements.telemetry.txt | ||
RUN pip install --no-cache-dir -r requirements.txt | ||
RUN opentelemetry-bootstrap -a install | ||
|
||
COPY . . |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
4 changes: 0 additions & 4 deletions
4
examples/quick-start-llm-python/app/requirements.telemetry.txt
This file was deleted.
Oops, something went wrong.
This file contains 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,11 @@ | ||
flask==3.0.3 | ||
langchain-community==0.2.16 | ||
langchain-google-genai==1.0.10 | ||
langchain-openai==0.1.24 | ||
langchain==0.2.16 | ||
opentelemetry-distro==0.48b0 | ||
opentelemetry-exporter-otlp-proto-grpc==1.27.0 | ||
opentelemetry-exporter-otlp==1.27.0 | ||
python-dotenv==1.0.1 | ||
streamlit==1.38.0 | ||
traceloop-sdk==0.30.0 |
This file was deleted.
Oops, something went wrong.