MichaelWelsch
commited on
Commit
•
eb29f6f
1
Parent(s):
f60bca2
Update app.py
Browse files
app.py
CHANGED
@@ -119,6 +119,8 @@ def respond_prompt3(Selbstauskunft, Kernfrage, chat, Sachverhalt):
|
|
119 |
return gr.update(value=output_prompt3, visible=True), gr.update(visible=False)
|
120 |
|
121 |
with gr.Blocks() as demo:
|
|
|
|
|
122 |
Selbstauskunft = gr.Textbox("", label="Erzähl mir, was passiert ist.")
|
123 |
Kernfrage = gr.Textbox("", label="Stelle eine Frage, die ich dir beantworten soll.")
|
124 |
Selbstauskunft = gr.Textbox("", label="Erzähl mir, was passiert ist.")
|
@@ -142,4 +144,4 @@ with gr.Blocks() as demo:
|
|
142 |
button_erstberatung.click(respond_prompt3, [Selbstauskunft, Kernfrage, chat, Sachverhalt], [Erstberatung, button_erstberatung])
|
143 |
|
144 |
|
145 |
-
demo.launch(
|
|
|
119 |
return gr.update(value=output_prompt3, visible=True), gr.update(visible=False)
|
120 |
|
121 |
with gr.Blocks() as demo:
|
122 |
+
title = gr.Textbox("", label="Juristische Ersteinschätzung einer KI.")
|
123 |
+
description = gr.Textbox("", label="Disclaimer: Dies ist keine Anwaltliche Erstberatung, sondern ein Forschungsprojekt.")
|
124 |
Selbstauskunft = gr.Textbox("", label="Erzähl mir, was passiert ist.")
|
125 |
Kernfrage = gr.Textbox("", label="Stelle eine Frage, die ich dir beantworten soll.")
|
126 |
Selbstauskunft = gr.Textbox("", label="Erzähl mir, was passiert ist.")
|
|
|
144 |
button_erstberatung.click(respond_prompt3, [Selbstauskunft, Kernfrage, chat, Sachverhalt], [Erstberatung, button_erstberatung])
|
145 |
|
146 |
|
147 |
+
demo.launch()
|