Update app.py
Browse files
app.py
CHANGED
@@ -38,7 +38,7 @@ def pdf_changes(pdf_doc, open_ai_key):
|
|
38 |
return "You forgot OpenAI API key"
|
39 |
|
40 |
def add_text(history, text):
|
41 |
-
history = history + [(text,
|
42 |
return history, ""
|
43 |
|
44 |
def bot(history):
|
|
|
38 |
return "You forgot OpenAI API key"
|
39 |
|
40 |
def add_text(history, text):
|
41 |
+
history = history + [(text, "")]
|
42 |
return history, ""
|
43 |
|
44 |
def bot(history):
|