Spaces:
Sleeping
Sleeping
dtrejopizzo
commited on
Commit
·
3d66890
1
Parent(s):
10dd5a8
Update app.py
Browse files
app.py
CHANGED
@@ -28,7 +28,6 @@ def openai_chat(prompt):
|
|
28 |
return message.strip()
|
29 |
|
30 |
def chatbot(input, history=[]):
|
31 |
-
input = sentence_builder
|
32 |
output = openai_chat(input)
|
33 |
history.append((input, output))
|
34 |
return history, history
|
|
|
28 |
return message.strip()
|
29 |
|
30 |
def chatbot(input, history=[]):
|
|
|
31 |
output = openai_chat(input)
|
32 |
history.append((input, output))
|
33 |
return history, history
|