Spaces:
Running
Running
Fix Agno workflow import
Browse files- requirements.txt +1 -1
- src/workflows_v2.py +2 -1
requirements.txt
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
# Core Framework
|
| 2 |
-
agno>=1.
|
| 3 |
streamlit>=1.47.0
|
| 4 |
fastapi>=0.104.0
|
| 5 |
|
|
|
|
| 1 |
# Core Framework
|
| 2 |
+
agno>=1.8.2
|
| 3 |
streamlit>=1.47.0
|
| 4 |
fastapi>=0.104.0
|
| 5 |
|
src/workflows_v2.py
CHANGED
|
@@ -443,7 +443,8 @@ async def startup_validation_execution(
|
|
| 443 |
startup_validation_workflow = Workflow(
|
| 444 |
name="Startup Idea Validator",
|
| 445 |
description="Comprehensive startup idea validation with market research and competitive analysis",
|
| 446 |
-
steps=startup_validation_execution
|
|
|
|
| 447 |
)
|
| 448 |
|
| 449 |
|
|
|
|
| 443 |
startup_validation_workflow = Workflow(
|
| 444 |
name="Startup Idea Validator",
|
| 445 |
description="Comprehensive startup idea validation with market research and competitive analysis",
|
| 446 |
+
steps=startup_validation_execution,
|
| 447 |
+
workflow_session_state={}, # Initialize empty workflow session state
|
| 448 |
)
|
| 449 |
|
| 450 |
|