Spaces:
Runtime error
Runtime error
adding openai api key variable setting
Browse files
src/ctp_slack_bot/core/config.py
CHANGED
@@ -33,6 +33,9 @@ class Settings(BaseSettings):
|
|
33 |
# Hugging Face Configuration
|
34 |
HF_API_TOKEN: Optional[SecretStr] = None
|
35 |
|
|
|
|
|
|
|
36 |
|
37 |
|
38 |
# Logging Configuration
|
|
|
33 |
# Hugging Face Configuration
|
34 |
HF_API_TOKEN: Optional[SecretStr] = None
|
35 |
|
36 |
+
# OpenAI Configuration
|
37 |
+
OPENAI_API_KEY: Optional[SecretStr] = None
|
38 |
+
|
39 |
|
40 |
|
41 |
# Logging Configuration
|