Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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['
|
| 151 |
).send()
|
| 152 |
|
| 153 |
-
user_proposal = res['
|
| 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)
|