-
Notifications
You must be signed in to change notification settings - Fork 826
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
AttributeError: 'AppAgentProcessor' object has no attribute 'update_step'. Did you mean: 'update_cost'? #129
Comments
Hi @HamzaAsiff , thanks for reporting this issue. We have fixed it in our dev version: https://github.com/microsoft/UFO/tree/vyokky/dev |
Hello, thanks for the quick response. I have tried the dev version and it fixed that particular issue so will be closing this issue.
Currently on Windows 11 using Anaconda Virtual Env with python 3.10.15 |
@HamzaAsiff What is the error trace it throws you encounter? |
This is the error traceback when I asked it to analyze and explain the an image. I got the same issue when sending an email which somehow worked the second time with no changes in prompt: Please enter your request to be completed🛸: |
We now fix this error at the same branch, please pull the latest code. For issue 2 and 3, we are working on it. Thanks your report :) |
I pulled the latest code and tried it. The errors are resolved now for the queries I tried before. |
I have encountered the same problem of looping over the same action. Wish to be solved. Thanks! |
@Zhang-Henry Please try the branch https://github.com/microsoft/UFO/tree/vyokky/dev |
I tried setting up and running the UFO first time with a basic task of sending an email to a gmail address with a simple question.
UFO does everything as expected until the last step when it asks the user for permission to send the email. That's where I received the error. Full traceback is pasted below:
[Input Required:] UFO🛸 will apply click_input(button='left', double=False) on the [Send] item. Please confirm whether to proceed or not. Please input Y or N.
Y
Traceback (most recent call last):
File "C:\Users\anaconda3\envs\ufo\lib\runpy.py", line 196, in _run_module_as_main
return _run_code(code, main_globals, None,
File "C:\Users\anaconda3\envs\ufo\lib\runpy.py", line 86, in run_code
exec(code, run_globals)
File "C:\Users\code\UFO\ufo_main.py", line 7, in
ufo.main()
File "C:\Users\code\UFO\ufo\ufo.py", line 56, in main
clients.run_all()
File "C:\Users\code\UFO\ufo\module\client.py", line 28, in run_all
session.run()
File "C:\Users\code\UFO\ufo\module\sessions\session.py", line 103, in run
super().run()
File "C:\Users\code\UFO\ufo\module\basic.py", line 355, in run
round.run()
File "C:\Users\code\UFO\ufo\module\basic.py", line 104, in run
self.agent.handle(self.context)
File "C:\Users\code\UFO\ufo\agents\agent\basic.py", line 224, in handle
self.state.handle(self, context)
File "C:\Users\code\UFO\ufo\agents\states\app_agent_state.py", line 315, in handle
agent.process_resume()
File "C:\Users\code\UFO\ufo\agents\agent\basic.py", line 237, in process_resume
self.processor.resume()
File "C:\Users\code\UFO\ufo\agents\processors\basic.py", line 152, in resume
self.update_step()
AttributeError: 'AppAgentProcessor' object has no attribute 'update_step'. Did you mean: 'update_cost'?
Currently on Windows 11 using Anaconda Virtual Env with python 3.10.15
Also tried python 3.13 but same error.
Any assistance would be appreciated, thanks
The text was updated successfully, but these errors were encountered: