AISparking commited on
Commit
e5bf814
·
verified ·
1 Parent(s): c3846ff

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -17,9 +17,9 @@ client = OpenAI(
17
 
18
  print("Client initialized.")
19
 
20
- SYSTEM_PROMPTS = os.getenv("SYSTEM_PROMPTS")
21
  import ast
22
- text_dict = ast.literal_eval(text) # Convert string back to dictionary
23
 
24
  def respond(
25
  message,
 
17
 
18
  print("Client initialized.")
19
 
20
+ SYSTEM_PROMPTS0 = os.getenv("SYSTEM_PROMPTS")
21
  import ast
22
+ SYSTEM_PROMPTS = ast.literal_eval(SYSTEM_PROMPTS0) # Convert string back to dictionary
23
 
24
  def respond(
25
  message,