MathieuTrachino commited on
Commit
f637e61
·
verified ·
1 Parent(s): 95b36d4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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