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

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -2
app.py CHANGED
@@ -43,7 +43,7 @@ def respond_prompt0(Selbstauskunft, Kernfrage, chat):
43
  return out, gr.update(value=chat, visible=True), gr.update(value="", visible=True)
44
 
45
  else:
46
- return out + "\nLeider kann ich dir nicht weiterhelfen.", chat, ""
47
 
48
 
49
  def respond_prompt1(Selbstauskunft, Kernfrage, chat, text):
@@ -113,12 +113,16 @@ def respond_prompt3(Selbstauskunft, Kernfrage, chat, Sachverhalt):
113
  { "role": "user", "content": content + "\nSachverhalt: " + Sachverhalt}])
114
 
115
 
116
- output_prompt3 =completion.choices[0].message.content + "\n\n(Dies ist eine maschinell erstellte Einschätzung einer experimentellen KI-Software. Interpretieren Sie das Ergebnis mit Vorsicht.)"
117
  ########
118
 
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
 
 
43
  return out, gr.update(value=chat, visible=True), gr.update(value="", visible=True)
44
 
45
  else:
46
+ return out + ". \nLeider kann ich dir nicht weiterhelfen.", chat, ""
47
 
48
 
49
  def respond_prompt1(Selbstauskunft, Kernfrage, chat, text):
 
113
  { "role": "user", "content": content + "\nSachverhalt: " + Sachverhalt}])
114
 
115
 
116
+ output_prompt3 =completion.choices[0].message.content + "\n\n(Dies ist eine maschinell erstellte Einschätzung einer experimentellen KI-Software basierend auf Informationen im Internet und keine Anwaltliche Erstberatung eines Anwalts. Interpretieren Sie das Ergebnis daher mit Vorsicht.)"
117
  ########
118
 
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.")
127
  Kernfrage = gr.Textbox("", label="Stelle eine Frage, die ich dir beantworten soll.")
128