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
When I ran run_flow.py with the command python run_flow.py, the following error appeared.
INFO [browser_use] BrowserUse logging setup complete with level info
INFO [root] Anonymized telemetry enabled. See https://docs.browser-use.com/development/telemetry for more information.
Traceback (most recent call last):
File "/Users/yingdong/Desktop/llm/OpenManus-main/run_flow.py", line 5, in <module>
from app.flow.base import FlowType
ImportError: cannot import name 'FlowType' from 'app.flow.base' (/Users/yingdong/Desktop/llm/OpenManus-main/app/flow/base.py)
Bug Description
When I ran
run_flow.py
with the commandpython run_flow.py
, the following error appeared.Bug solved method
I replaced the following import:
from app.flow.base import FlowType
with:
from app.flow.flow_factory import FlowType
.This resolved the issue.
Environment information
pip install -r requirements.txt
Extra information
No response
The text was updated successfully, but these errors were encountered: