hwberry2 commited on
Commit
a329ac7
·
1 Parent(s): 2dc12da

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -6,7 +6,7 @@ from gtts import gTTS
6
 
7
  openai.api_key = os.environ["OPEN_AI_KEY"]
8
 
9
- messages = gr.State([{"role": "system", "content": "You are a therapist. Respond in less than 5 sentences."}])
10
 
11
 
12
 
 
6
 
7
  openai.api_key = os.environ["OPEN_AI_KEY"]
8
 
9
+ messages = [{"role": "system", "content": "You are a therapist. Respond in less than 5 sentences."}]
10
 
11
 
12