kaikaidai commited on
Commit
651020c
·
1 Parent(s): ffb1e6e

Fix Agno workflow import

Browse files
Files changed (2) hide show
  1. requirements.txt +1 -1
  2. src/workflows_v2.py +2 -1
requirements.txt CHANGED
@@ -1,5 +1,5 @@
1
  # Core Framework
2
- agno>=1.7.5
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 # Single function replaces all steps (Workflows 2.0 pattern)
 
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