Fiacre commited on
Commit
13fae20
1 Parent(s): 88e4263

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -33,7 +33,7 @@ def get_response_from_llm(describe_your_project_idea_here, task, formatting):
33
  return response.choices[0].message["content"]
34
 
35
  def get_project_scope(describe_your_project_idea_here):
36
- task =f""" Your task is to help a university lecturer create a project scope table for """
37
  formatting = f"""Define what is the project objective, in scope, out of scope and assumptions. Do this in a tabular format. The table comprises six rows. The first row is a single column labeled "Project Objective". The second row is a single column stating the project objectives. The thid row contains two columns labeled "In Scope" and "Out of Scope". The fourth row contains two columns describing what is in scope and out of scope. The fifth row is a single column named "Assumptions". The sixth row is a single column describing the assumptions. Below each of these name, populate with detail content relevant to each title."""
38
  return get_response_from_llm(describe_your_project_idea_here, task, formatting)
39
 
 
33
  return response.choices[0].message["content"]
34
 
35
  def get_project_scope(describe_your_project_idea_here):
36
+ task =f""" Your task is to help a university lecturer with """
37
  formatting = f"""Define what is the project objective, in scope, out of scope and assumptions. Do this in a tabular format. The table comprises six rows. The first row is a single column labeled "Project Objective". The second row is a single column stating the project objectives. The thid row contains two columns labeled "In Scope" and "Out of Scope". The fourth row contains two columns describing what is in scope and out of scope. The fifth row is a single column named "Assumptions". The sixth row is a single column describing the assumptions. Below each of these name, populate with detail content relevant to each title."""
38
  return get_response_from_llm(describe_your_project_idea_here, task, formatting)
39