Fiacre commited on
Commit
34a3dd1
1 Parent(s): 619a306

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -4
app.py CHANGED
@@ -41,9 +41,7 @@ def get_change_impact_assessment(describe_your_project_idea_here):
41
  return get_response_from_llm(describe_your_project_idea_here, task, formatting)
42
 
43
  def get_scope_and_change_impact_assessment(describe_your_project_idea_here):
44
- scope = get_project_scope(describe_your_project_idea_here)
45
- change_impact = get_change_impact_assessment(describe_your_project_idea_here)
46
- return scope, change_impact
47
 
48
- iface = gr.Interface(fn=get_scope_and_change_impact_assessment, inputs="text", outputs=['markdown','markdown'], title="Project scope and change impact assessment", description="Enter your project e.g. I want to deliver more authentica assessments and this will ideate some project scope and change impact assessment for you.")
49
  iface.launch()
 
41
  return get_response_from_llm(describe_your_project_idea_here, task, formatting)
42
 
43
  def get_scope_and_change_impact_assessment(describe_your_project_idea_here):
44
+ return get_project_scope(describe_your_project_idea_here), get_change_impact_assessment(describe_your_project_idea_here)
 
 
45
 
46
+ iface = gr.Interface(fn=get_scope_and_change_impact_assessment, inputs="text", outputs=['markdown','markdown'], title="Project scope and change impact assessment", description="Enter your project e.g. 'I want to deliver more authentic assessments' and this will ideate some project scope and change impact assessment for you.")
47
  iface.launch()