You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
File core/cli/main.py, line 38, in run_project
success = await orca.run()
File core/agents/orchestrator.py, line 78, in run
response = await agent.run()
File core/agents/developer.py, line 88, in run
return await self.breakdown_current_task()
File core/agents/developer.py, line 199, in breakdown_current_task
return await self.get_relevant_files()
File core/agents/mixins.py, line 113, in get_relevant_files
read_files = [file for file in self.current_state.files if file.path in getattr(action, "read_files", [])]
File core/agents/mixins.py, line 113, in
read_files = [file for file in self.current_state.files if file.path in getattr(action, "read_files", [])]
TypeError: argument of type 'NoneType' is not iterable
The text was updated successfully, but these errors were encountered:
Version
Command-line (Python) version
Operating System
Windows 11
What happened?
Stopping Pythagora due to error:
File
core/cli/main.py
, line 38, in run_projectsuccess = await orca.run()
File
core/agents/orchestrator.py
, line 78, in runresponse = await agent.run()
File
core/agents/developer.py
, line 88, in runreturn await self.breakdown_current_task()
File
core/agents/developer.py
, line 199, in breakdown_current_taskreturn await self.get_relevant_files()
File
core/agents/mixins.py
, line 113, in get_relevant_filesread_files = [file for file in self.current_state.files if file.path in getattr(action, "read_files", [])]
File
core/agents/mixins.py
, line 113, inread_files = [file for file in self.current_state.files if file.path in getattr(action, "read_files", [])]
TypeError: argument of type 'NoneType' is not iterable
The text was updated successfully, but these errors were encountered: