wop commited on
Commit
d1d7e61
1 Parent(s): 57c103a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -1
app.py CHANGED
@@ -32,5 +32,10 @@ iface = gr.Interface(
32
  gr.Textbox("Context"),
33
  gr.Button("get_context", get_context_func),
34
  gr.Button("ask_ai")
35
- ])
 
 
 
 
 
36
  iface.launch()
 
32
  gr.Textbox("Context"),
33
  gr.Button("get_context", get_context_func),
34
  gr.Button("ask_ai")
35
+ ],
36
+ outputs=[
37
+ gr.Textbox("answer_output"),
38
+ gr.Textbox("context_output"),
39
+ ]
40
+ )
41
  iface.launch()