Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -2,7 +2,7 @@ import gradio as gr
|
|
| 2 |
|
| 3 |
def greet(name,history):
|
| 4 |
hist_msg=""
|
| 5 |
-
for h in history
|
| 6 |
hist_msg = hist_msg + h
|
| 7 |
return "Hello " + name + "!!" + hist_msg
|
| 8 |
|
|
|
|
| 2 |
|
| 3 |
def greet(name,history):
|
| 4 |
hist_msg=""
|
| 5 |
+
for h in history:
|
| 6 |
hist_msg = hist_msg + h
|
| 7 |
return "Hello " + name + "!!" + hist_msg
|
| 8 |
|