Tonic commited on
Commit
657cd12
•
1 Parent(s): e34d67f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -2
app.py CHANGED
@@ -88,8 +88,11 @@ iface = gr.Interface(
88
  title=title,
89
  description=description,
90
  examples=examples,
91
- inputs=[{"type": "text", "label": "Deuxieme partie d'un dialogue"}, {"type": "text", "label": "Premiere partie d'un dialogue"}], # Labeled inputs
92
- outputs={"type": "text", "label": "Claire LLM Dialogue"}, # Labeled output
 
 
 
93
  theme="ParityError/Anime"
94
  )
95
 
 
88
  title=title,
89
  description=description,
90
  examples=examples,
91
+ inputs=[
92
+ gr.Textbox(label="Deuxieme partie d'un dialogue"),
93
+ gr.Textbox(label="Premiere partie d'un dialogue")
94
+ ],
95
+ outputs=gr.outputs.Textbox(label="Claire LLM Dialogue"),
96
  theme="ParityError/Anime"
97
  )
98