-
Notifications
You must be signed in to change notification settings - Fork 364
Description
Both the cli and the simple_cua_loop throw an Import Exception:
(.venv) ➜ openai-cua-sample-app git:(main) python cli.py --computer local-playwright
Traceback (most recent call last):
File "/home/devien/code/openai-cua-sample-app/cli.py", line 2, in
from agent.agent import Agent
File "/home/devien/code/openai-cua-sample-app/agent/init.py", line 1, in
from .agent import Agent
File "/home/devien/code/openai-cua-sample-app/agent/agent.py", line 1, in
from computers import Computer
File "/home/devien/code/openai-cua-sample-app/computers/init.py", line 4, in
from .config import computers_config
ModuleNotFoundError: No module named 'computers.config'
(.venv) ➜ openai-cua-sample-app git:(main) python simple_cua_loop.py
Traceback (most recent call last):
File "/home/devien/code/openai-cua-sample-app/simple_cua_loop.py", line 1, in
from computers import Computer
File "/home/devien/code/openai-cua-sample-app/computers/init.py", line 4, in
from .config import computers_config
ModuleNotFoundError: No module named 'computers.config'
(.venv) ➜ openai-cua-sample-app git:(main)
The only change made to the cloned repo is the filled out .env file.
requirements installation was successfull.