Spaces:
Runtime error
Runtime error
Commit ·
eb79dbe
1
Parent(s): 87afed1
chore: Update API key
Browse files- src/constants.py +1 -1
src/constants.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
import os
|
| 2 |
import pandas as pd
|
| 3 |
|
| 4 |
-
API_KEY = "
|
| 5 |
CONVERSATIONAL_MODEL_API_ENDPOINT = "https://talent-interview-prep-conversational-model.multimodal.dev/"
|
| 6 |
QUESTION_RELATED_FEEDBACK_API_ENDPOINT = "https://talent-interview-prep-question-related-feedback.multimodal.dev/"
|
| 7 |
QUESTION_RELATED_IDEAL_ANSWER_API_ENDPOINT = "https://talent-interview-prep-question-related-ideal-answer.multimodal.dev/"
|
|
|
|
| 1 |
import os
|
| 2 |
import pandas as pd
|
| 3 |
|
| 4 |
+
API_KEY = os.getenv("API_KEY")
|
| 5 |
CONVERSATIONAL_MODEL_API_ENDPOINT = "https://talent-interview-prep-conversational-model.multimodal.dev/"
|
| 6 |
QUESTION_RELATED_FEEDBACK_API_ENDPOINT = "https://talent-interview-prep-question-related-feedback.multimodal.dev/"
|
| 7 |
QUESTION_RELATED_IDEAL_ANSWER_API_ENDPOINT = "https://talent-interview-prep-question-related-ideal-answer.multimodal.dev/"
|