abdoh-alkhateeb commited on
Commit
573ce4d
1 Parent(s): f351557

Change output fields type back to textbox for clarity of debugging and reviewing

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -82,5 +82,5 @@ def main(query: str) -> tuple[str, str, float]:
82
  gr.Interface(
83
  fn=main,
84
  inputs=gr.Textbox(label="Query:"),
85
- outputs=[gr.Markdown(label="Generated Synthesis:"), gr.Markdown(label="Accountability:"), gr.Number(label="Cost ($):")],
86
  ).launch()
 
82
  gr.Interface(
83
  fn=main,
84
  inputs=gr.Textbox(label="Query:"),
85
+ outputs=[gr.Textbox(label="Generated Synthesis:"), gr.Textbox(label="Accountability:"), gr.Number(label="Cost ($):")],
86
  ).launch()