Fiacre commited on
Commit
a313f31
1 Parent(s): be50c06

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -52,5 +52,5 @@ def get_scope_and_change_impact_assessment(describe_your_project_idea_here):
52
  change_impact = get_change_impact_assessment(describe_your_project_idea_here)
53
  return scope, change_impact
54
 
55
- iface = gr.Interface(fn=get_scope_and_change_impact_assessment, inputs="text", outputs=[gr.outputs.Markdown(label="Project Scope"), gr.outputs.Markdown(label="Change Impact Assessment")])
56
  iface.launch()
 
52
  change_impact = get_change_impact_assessment(describe_your_project_idea_here)
53
  return scope, change_impact
54
 
55
+ iface = gr.Interface(fn=get_scope_and_change_impact_assessment, inputs="text", outputs=[gr.outputs.Textbox(label="Project Scope"), gr.outputs.Textbox(label="Change Impact Assessment")])
56
  iface.launch()