Add skeleton API to proxy requests to LLM provider.

This commit is contained in:
Hemang
2025-01-29 21:29:10 +01:00
parent 223b84bf0a
commit 3a9d982f6e
7 changed files with 104 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
FROM python:3.10
COPY ./requirements.txt /srv/proxy/requirements.txt
WORKDIR /srv/proxy
RUN pip install --no-cache-dir -r requirements.txt
COPY . /srv/proxy
ENTRYPOINT ./run.sh