Fiacre commited on
Commit
247d006
1 Parent(s): a313f31

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -31,7 +31,7 @@ def get_project_scope(describe_your_project_idea_here):
31
  temperature=0,
32
  )
33
  project_scope = response.choices[0].message["content"]
34
- return project_scope
35
 
36
  def get_change_impact_assessment(describe_your_project_idea_here):
37
  task =f""" Your task is to help a university lecturer create a change impact assessment for """
@@ -45,7 +45,7 @@ def get_change_impact_assessment(describe_your_project_idea_here):
45
  temperature=0,
46
  )
47
  project_scope = response.choices[0].message["content"]
48
- return project_scope
49
 
50
  def get_scope_and_change_impact_assessment(describe_your_project_idea_here):
51
  scope = get_project_scope(describe_your_project_idea_here)
 
31
  temperature=0,
32
  )
33
  project_scope = response.choices[0].message["content"]
34
+ return Markdown(project_scope)
35
 
36
  def get_change_impact_assessment(describe_your_project_idea_here):
37
  task =f""" Your task is to help a university lecturer create a change impact assessment for """
 
45
  temperature=0,
46
  )
47
  project_scope = response.choices[0].message["content"]
48
+ return Markdown(project_scope)
49
 
50
  def get_scope_and_change_impact_assessment(describe_your_project_idea_here):
51
  scope = get_project_scope(describe_your_project_idea_here)