Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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
|