MichaelWelsch commited on
Commit
f60bca2
·
1 Parent(s): 8f25484

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -3
app.py CHANGED
@@ -119,8 +119,6 @@ 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
- Title = gr.title("Juristische Ersteinschätzung einer KI.")
123
- desc = gr.description("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,4 +142,4 @@ with gr.Blocks() as demo:
144
  button_erstberatung.click(respond_prompt3, [Selbstauskunft, Kernfrage, chat, Sachverhalt], [Erstberatung, button_erstberatung])
145
 
146
 
147
- demo.launch()
 
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
  button_erstberatung.click(respond_prompt3, [Selbstauskunft, Kernfrage, chat, Sachverhalt], [Erstberatung, button_erstberatung])
143
 
144
 
145
+ demo.launch(title = "Juristische Ersteinschätzung einer KI.", description ="Disclaimer: Dies ist keine Anwaltliche Erstberatung, sondern ein Forschungsprojekt.")