Update app.py
Browse files
app.py
CHANGED
@@ -24,7 +24,7 @@ with open("tools-intent-detection.json", "r", encoding="utf-8") as file:
|
|
24 |
# API configuration
|
25 |
url = 'https://openai-dev-fra-001.openai.azure.com/openai/deployments/gpt-4o/chat/completions?api-version=2024-10-21'
|
26 |
headers = {
|
27 |
-
'api-key': API_KEY,
|
28 |
'Content-Type': 'application/json'
|
29 |
}
|
30 |
|
|
|
24 |
# API configuration
|
25 |
url = 'https://openai-dev-fra-001.openai.azure.com/openai/deployments/gpt-4o/chat/completions?api-version=2024-10-21'
|
26 |
headers = {
|
27 |
+
'api-key': os.getenv('API_KEY'),
|
28 |
'Content-Type': 'application/json'
|
29 |
}
|
30 |
|