Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -1,16 +1,4 @@
|
|
1 |
-
import gradio as gr
|
2 |
-
|
3 |
-
with gr.Blocks(theme='sudeepshouche/minimalist',css="#chatbot{height:300px} .overflow-y-auto{height:500px}") as demo:
|
4 |
-
gr.Markdown("<h1>Giurimatrix chatbot ti dà il benvenuto.</h1>\n<p>Sono ancora in fase di apprendimento e alcune delle mie risposte possono non essere completamente giuste.\nSe non ti piace la mia risposta, puoi scrivere <code>/feedback</code> aggiungendo la riposta che consideri corretta. Grazie a questo feedback, migliorerò le mie risposte.\n</p><p>Se hai bisogno di una aiuto scrivi <code>/help</code>. Se vuoi sapere come processo i dati, scrivi <code>/privacy</code>. Buon lavoro!</p>")
|
5 |
-
chatbot = gr.Chatbot()
|
6 |
-
message = gr.Textbox()
|
7 |
-
clear = gr.Button("Cancella cronologia")
|
8 |
-
demo.load(respond, [message, chatbot], [message, chatbot],name = "giurimatrix/chatbot", api_key="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")
|
9 |
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
clear.click(lambda: None, None, chatbot, queue=False)
|
14 |
-
|
15 |
-
if __name__ == "__main__":
|
16 |
-
demo.launch()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
|
2 |
+
import gradio as gr
|
3 |
+
demo = gr.load("giurimatrix/chatbot", src="spaces")
|
4 |
+
demo.launch()
|
|
|
|
|
|
|
|