Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
|
@@ -94,7 +94,7 @@ with gr.Blocks(title="LLM with TTS") as demo:
|
|
| 94 |
gr.Markdown("LLM and TTS models will change without notice.")
|
| 95 |
js = """
|
| 96 |
function(chatbot){
|
| 97 |
-
console.log(chatbot[-1])
|
| 98 |
}
|
| 99 |
"""
|
| 100 |
chatbot = gr.Chatbot(type="messages")
|
|
|
|
| 94 |
gr.Markdown("LLM and TTS models will change without notice.")
|
| 95 |
js = """
|
| 96 |
function(chatbot){
|
| 97 |
+
console.log(chatbot[chatbot.length -1])
|
| 98 |
}
|
| 99 |
"""
|
| 100 |
chatbot = gr.Chatbot(type="messages")
|