Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -25,7 +25,8 @@ class ProjectScopingTool(Tool):
|
|
25 |
},
|
26 |
"budget_min": {
|
27 |
"type": "number",
|
28 |
-
"description": "The minimum budget allocated for the project."
|
|
|
29 |
},
|
30 |
"budget_max": {
|
31 |
"type": "number",
|
@@ -218,5 +219,5 @@ with gr.Blocks() as demo:
|
|
218 |
outputs=[project_output, arch_output, cost_output, deploy_output, meeting_output])
|
219 |
|
220 |
# Launch the Gradio App
|
221 |
-
|
222 |
-
agent.run("Ask user what they want to do")
|
|
|
25 |
},
|
26 |
"budget_min": {
|
27 |
"type": "number",
|
28 |
+
"description": "The minimum budget allocated for the project."
|
29 |
+
,
|
30 |
},
|
31 |
"budget_max": {
|
32 |
"type": "number",
|
|
|
219 |
outputs=[project_output, arch_output, cost_output, deploy_output, meeting_output])
|
220 |
|
221 |
# Launch the Gradio App
|
222 |
+
demo(agent).launch()
|
223 |
+
#agent.run("Ask user what they want to do")
|