We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96ff8eb commit 961697dCopy full SHA for 961697d
Dockerfile
@@ -10,5 +10,17 @@ COPY . .
10
# Install dependencies
11
RUN pip install -r requirements.txt
12
13
-# Set the default command
+# Set environment variables
14
+ENV API_TYPE="azure"
15
+ENV GPT_MODEL="gpt-4o-mini"
16
+ENV GPT_API_VERSION="2024-08-01-preview"
17
+ENV EMBEDDING_MODEL="text-embedding-3-small"
18
+ENV EMBEDDING_API_VERSION="2023-05-15"
19
+ENV ENDPOINT="https://ai4se-openai.openai.azure.com/"
20
+ENV AZURE_OPENAI_API_KEY="VDfaCeEbTyAyPRC3C02mZyyANPxZGBxODmWOpWechSlv7GQ8zmmuJQQJ99AKACI8hq2XJ3w3AAABACOGPYeE"
21
+
22
+# Expose the application port
23
+EXPOSE 5000
24
25
+# Run the application
26
CMD ["python", "app.py"]
0 commit comments