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 97baeff commit 2f268e8Copy full SHA for 2f268e8
.env
@@ -0,0 +1,7 @@
1
+API_TYPE="azure"
2
+GPT_MODEL="gpt-4o-mini"
3
+GPT_API_VERSION="2024-08-01-preview"
4
+EMBEDDING_MODEL="text-embedding-3-small"
5
+EMBEDDING_API_VERSION="2023-05-15"
6
+ENDPOINT="https://ai4se-openai.openai.azure.com/"
7
+AZURE_OPENAI_API_KEY="${AZURE_OPENAI_API_KEY}"
.github/workflows/docker-pipeline.yml
@@ -9,6 +9,9 @@ jobs:
9
build-and-push:
10
runs-on: ubuntu-latest
11
12
+ env:
13
+ AZURE_OPENAI_API_KEY: ${{ secrets.AZURE_OPENAI_API_KEY }}
14
+
15
steps:
16
- name: Checkout repository
17
uses: actions/checkout@v3
.gitignore
@@ -5,8 +5,6 @@ __pycache__/
*.pyd
*.ipynb_checkpoints/
8
-# Environment files
-.env
# IDE-specific files
.vscode/
0 commit comments