updated fireconfig

This commit is contained in:
OwusuBlessing
2025-06-11 17:13:47 +01:00
parent 6ae07d1d98
commit 3fcce3b464
6 changed files with 244 additions and 27 deletions
+11 -1
View File
@@ -1,3 +1,4 @@
import os
QUIZ_TYPES = {
1: {
"name": "Single Line Text Inputs",
@@ -20,4 +21,13 @@ QUIZ_TYPES = {
}
MODEL = "gpt-4o-mini"
TEMPERATURE = 0.7
TEMPERATURE = 0.7
class Config:
API_KEY_ACCESS = os.getenv("API_KEY_ACCESS")
OPENAI_API_KEY = os.getenv("OPENAI_API_KEY")
BACKEND_XAPI_KEY = os.getenv("BACKEND_XAPI_KEY")
BACKEND_BASE_URL = os.getenv("BACKEND_BASE_URL_")