### GenericAgent-Claude-3.5-Sonnet This agent is [GenericAgent](https://github.com/ServiceNow/AgentLab/blob/main/src/agentlab/agents/generic_agent/generic_agent.py) from [AgentLab](https://github.com/ServiceNow/AgentLab) It uses Claude-3.5-sonnet as a backend, with the following [flags](https://github.com/ServiceNow/AgentLab/blob/main/src/agentlab/agents/generic_agent/tmlr_config.py): ```python BASE_FLAGS = GenericPromptFlags( obs=dp.ObsFlags( use_html=False, use_ax_tree=True, use_focused_element=True, use_error_logs=True, use_history=True, use_past_error_logs=False, use_action_history=True, use_think_history=True, # gpt-4o config except for this line use_diff=False, html_type="pruned_html", use_screenshot=False, use_som=False, extract_visible_tag=True, extract_clickable_tag=True, extract_coords="False", filter_visible_elements_only=False, ), action=dp.ActionFlags( multi_actions=False, action_set="bid", long_description=False, individual_examples=False, ), use_plan=False, use_criticise=False, use_thinking=True, use_memory=False, use_concrete_example=True, use_abstract_example=True, use_hints=True, enable_chat=False, max_prompt_tokens=40_000, be_cautious=True, extra_instructions=None, ) ```