debisoft commited on
Commit
396fcf1
·
1 Parent(s): 8f5936f
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -17,7 +17,7 @@ def get_completion(prompt, model="gpt-3.5-turbo"):
17
  )
18
  return response.choices[0].message["content"]
19
 
20
- def greet(company, solution, customer, problem, features):
21
  pitch = f"""My company, {company} is developing {solution} to help {target_customer} {problem} with {features}"""
22
  return json.dumps(pitch)
23
 
 
17
  )
18
  return response.choices[0].message["content"]
19
 
20
+ def greet(company, solution, target_customer, problem, features):
21
  pitch = f"""My company, {company} is developing {solution} to help {target_customer} {problem} with {features}"""
22
  return json.dumps(pitch)
23