Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -33,6 +33,10 @@ class HumanMessage:
|
|
| 33 |
def __init__(self, content):
|
| 34 |
self.content = content
|
| 35 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 36 |
|
| 37 |
def load_answer(question):
|
| 38 |
|
|
|
|
| 33 |
def __init__(self, content):
|
| 34 |
self.content = content
|
| 35 |
|
| 36 |
+
class AIMessage:
|
| 37 |
+
def __init__(self, content):
|
| 38 |
+
self.content = content
|
| 39 |
+
|
| 40 |
|
| 41 |
def load_answer(question):
|
| 42 |
|