IamVicky111 commited on
Commit
e775f1d
·
verified ·
1 Parent(s): 72fdbc3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -0
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