cmagganas commited on
Commit
02f9db6
·
verified ·
1 Parent(s): 699a413

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -147,10 +147,10 @@ async def start():
147
  if res:
148
  await wel_msg.remove()
149
  await cl.Message(
150
- content=f"User Proposal: {res['output']}.\n\nStarting...",
151
  ).send()
152
 
153
- user_proposal = res['output']
154
 
155
  prd_sys1 = format_template(PRD_PROMPT_TEMPLATE, user_proposal=user_proposal) # system message to create PRD
156
  prd_response = llm_call(user_prompt=user_proposal, system_prompt=prd_sys1)
 
147
  if res:
148
  await wel_msg.remove()
149
  await cl.Message(
150
+ content=f"User Proposal: {res['content']}.\n\nStarting...",
151
  ).send()
152
 
153
+ user_proposal = res['content']
154
 
155
  prd_sys1 = format_template(PRD_PROMPT_TEMPLATE, user_proposal=user_proposal) # system message to create PRD
156
  prd_response = llm_call(user_prompt=user_proposal, system_prompt=prd_sys1)