Open Elements- opened 1 month ago
I'm struggling to get OpenACI & AgentS in their current state to work without heavy modifications (tested across 4 environments now).
I'm getting an error from the OpenACI Ubuntu grounding agent about a missing obs param, see the signature here:
obs
#ubuntu Grounding.py @ OpenACI class GroundingAgent: def __init__(self, obs, top_app=None): self.input_tree = obs['accessibility_tree'] self.screenshot = obs['screenshot']
I noticed, in the MacOS Grounding agent (which appears to be interchangeable, that param doesn't exist:
#macos Grounding.py @ OpenACI class GroundingAgent: def __init__(self, top_app=None, top_app_only=True, ocr=True): self.active_apps = set() self.top_app = top_app
Is this discrepancy intentional? Trying to figure out how to get it running on Linux but dont want to go making a ton of changes if I just have this setup wrong.
Hi, we just refactored the codebase and fixed some bugs. can you try the new release?
I'm struggling to get OpenACI & AgentS in their current state to work without heavy modifications (tested across 4 environments now).
I'm getting an error from the OpenACI Ubuntu grounding agent about a missing
obs
param, see the signature here:I noticed, in the MacOS Grounding agent (which appears to be interchangeable, that param doesn't exist:
Is this discrepancy intentional? Trying to figure out how to get it running on Linux but dont want to go making a ton of changes if I just have this setup wrong.