debisoft commited on
Commit
8b9b4c5
·
1 Parent(s): 54092ea
Files changed (1) hide show
  1. app.py +1 -7
app.py CHANGED
@@ -31,13 +31,7 @@ Give a score for the product.
31
  Format your response as a JSON object with \
32
  'solution', 'problem', 'features', 'target_customer', 'fg_will_use', 'reason_to_use', 'fg_will_pay', 'reason_to_pay', 'score' as the keys.
33
  """
34
- messages = [{'role':'system',
35
- 'content':"You are " + customer_persona + "."},
36
- {'role':'system',
37
- 'content': sys_setup},
38
- {'role':'user',
39
- 'content':pitch},
40
- ]
41
  response = get_completion_from_messages(messages, temperature=1)
42
  return json.dumps(response)
43
 
 
31
  Format your response as a JSON object with \
32
  'solution', 'problem', 'features', 'target_customer', 'fg_will_use', 'reason_to_use', 'fg_will_pay', 'reason_to_pay', 'score' as the keys.
33
  """
34
+ messages = [{'role':'system', 'content':"You are " + customer_persona + "."}, {'role':'system', 'content': sys_setup}, {'role':'user','content':pitch}]
 
 
 
 
 
 
35
  response = get_completion_from_messages(messages, temperature=1)
36
  return json.dumps(response)
37