MarziehFadaee commited on
Commit
53d2d87
·
verified ·
1 Parent(s): e27fb9b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -0
app.py CHANGED
@@ -10,6 +10,9 @@ from functools import partial
10
  cohere_api_key = os.getenv("COHERE_API_KEY")
11
  co = cohere.Client(cohere_api_key)
12
 
 
 
 
13
  def trigger_example(example):
14
  chat, updated_history = generate_response(example)
15
  return chat, updated_history
 
10
  cohere_api_key = os.getenv("COHERE_API_KEY")
11
  co = cohere.Client(cohere_api_key)
12
 
13
+ history = []
14
+ chat = []
15
+
16
  def trigger_example(example):
17
  chat, updated_history = generate_response(example)
18
  return chat, updated_history