usunięty atrybut TYPE
Browse files
app.py
CHANGED
@@ -68,7 +68,7 @@ def odp(message, history):
|
|
68 |
|
69 |
## Interfejs graficzny
|
70 |
with gr.Blocks() as demo:
|
71 |
-
chatbot = gr.Chatbot(
|
72 |
msg = gr.Textbox(label='Ja', autofocus=True)
|
73 |
msg.submit(odp, [msg, chatbot], [msg, chatbot])
|
74 |
demo.launch(inbrowser=True)
|
|
|
68 |
|
69 |
## Interfejs graficzny
|
70 |
with gr.Blocks() as demo:
|
71 |
+
chatbot = gr.Chatbot()
|
72 |
msg = gr.Textbox(label='Ja', autofocus=True)
|
73 |
msg.submit(odp, [msg, chatbot], [msg, chatbot])
|
74 |
demo.launch(inbrowser=True)
|