Skip to content

Commit d34d515

Browse files
committed
Initial commit
0 parents  commit d34d515

22 files changed

+589
-0
lines changed

.env_example

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
GROQ_API_KEY="your api key here"
2+
JINA_API_KEY="your api key here"
3+
SERPER_API_KEY="your api key here"
4+
COHERE_API_KEY = "your api key here"

Dockerfile

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
FROM python:3.12-slim
2+
3+
WORKDIR /workspace
4+
ENV HOME=/workspace
5+
6+
ADD . /workspace
7+
8+
RUN chown -R 42420:42420 /workspace
9+
10+
# Install dependencies using apk and then Python packages
11+
RUN pip install -r requirements.txt
12+
13+
EXPOSE 8080
14+
15+
ENTRYPOINT ["uvicorn"]
16+
17+
CMD ["main:app", "--host", "0.0.0.0", "--port", "8080"]
18+
19+
20+
# this docker image work for OVH CLOUD AI DEPLOY
2.96 KB
Binary file not shown.
Binary file not shown.

__pycache__/groq_api.cpython-312.pyc

2.76 KB
Binary file not shown.
2.41 KB
Binary file not shown.

__pycache__/main.cpython-312.pyc

3.82 KB
Binary file not shown.

__pycache__/prompts.cpython-312.pyc

2.11 KB
Binary file not shown.
1.41 KB
Binary file not shown.
910 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)