-
Notifications
You must be signed in to change notification settings - Fork 111
Expand file tree
/
Copy pathgeneric_agent.py
More file actions
220 lines (184 loc) · 7.51 KB
/
generic_agent.py
File metadata and controls
220 lines (184 loc) · 7.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
"""
GenericAgent implementation for AgentLab
This module defines a `GenericAgent` class and its associated arguments for use in the AgentLab framework. \
The `GenericAgent` class is designed to interact with a chat-based model to determine actions based on \
observations. It includes methods for preprocessing observations, generating actions, and managing internal \
state such as plans, memories, and thoughts. The `GenericAgentArgs` class provides configuration options for \
the agent, including model arguments and flags for various behaviors.
"""
from copy import deepcopy
from dataclasses import asdict, dataclass
from functools import partial
from warnings import warn
import bgym
from bgym import Benchmark
from browsergym.experiments.agent import Agent, AgentInfo
from agentlab.agents import dynamic_prompting as dp
from agentlab.agents.agent_args import AgentArgs
from agentlab.llm.chat_api import BaseModelArgs
from agentlab.llm.llm_utils import Discussion, ParseError, SystemMessage, retry
from agentlab.llm.tracking import cost_tracker_decorator
from .generic_agent_prompt import GenericPromptFlags, MainPrompt
from pathlib import Path
@dataclass
class GenericAgentArgs(AgentArgs):
chat_model_args: BaseModelArgs = None
flags: GenericPromptFlags = None
max_retry: int = 4
privaleged_actions_path :Path = None
def __post_init__(self):
try: # some attributes might be temporarily args.CrossProd for hyperparameter generation
self.agent_name = f"GenericAgent-{self.chat_model_args.model_name}".replace("/", "_")
except AttributeError:
pass
def set_benchmark(self, benchmark: Benchmark, demo_mode):
"""Override Some flags based on the benchmark."""
if benchmark.name.startswith("miniwob"):
self.flags.obs.use_html = True
self.flags.obs.use_tabs = benchmark.is_multi_tab
self.flags.action.action_set = deepcopy(benchmark.high_level_action_set_args)
# for backward compatibility with old traces
if self.flags.action.multi_actions is not None:
self.flags.action.action_set.multiaction = self.flags.action.multi_actions
if self.flags.action.is_strict is not None:
self.flags.action.action_set.strict = self.flags.action.is_strict
# verify if we can remove this
if demo_mode:
self.flags.action.action_set.demo_mode = "all_blue"
def set_reproducibility_mode(self):
self.chat_model_args.temperature = 0
def prepare(self):
return self.chat_model_args.prepare_server()
def close(self):
return self.chat_model_args.close_server()
def make_agent(self):
return GenericAgent(
chat_model_args=self.chat_model_args, flags=self.flags, max_retry=self.max_retry,privaleged_actions_path=self.privaleged_actions_path
)
class GenericAgent(Agent):
def __init__(
self,
chat_model_args: BaseModelArgs,
flags: GenericPromptFlags,
max_retry: int = 4,
privaleged_actions_path: Path = None,
):
self.privaleged_actions_path = privaleged_actions_path
self.chat_llm = chat_model_args.make_model()
self.chat_model_args = chat_model_args
self.max_retry = max_retry
self.flags = flags
self.action_set = self.flags.action.action_set.make_action_set()
self._obs_preprocessor = dp.make_obs_preprocessor(flags.obs)
self._check_flag_constancy()
self.reset(seed=None)
def obs_preprocessor(self, obs: dict) -> dict:
return self._obs_preprocessor(obs)
@cost_tracker_decorator
def get_action(self, obs):
self.obs_history.append(obs)
main_prompt = MainPrompt(
action_set=self.action_set,
obs_history=self.obs_history,
actions=self.actions,
memories=self.memories,
thoughts=self.thoughts,
previous_plan=self.plan,
step=self.plan_step,
flags=self.flags,
)
max_prompt_tokens, max_trunc_itr = self._get_maxes()
system_prompt = SystemMessage(dp.SystemPrompt().prompt)
human_prompt = dp.fit_tokens(
shrinkable=main_prompt,
max_prompt_tokens=max_prompt_tokens,
model_name=self.chat_model_args.model_name,
max_iterations=max_trunc_itr,
additional_prompts=system_prompt,
)
try:
# TODO, we would need to further shrink the prompt if the retry
# cause it to be too long
chat_messages = Discussion([system_prompt, human_prompt])
ans_dict = retry(
self.chat_llm,
chat_messages,
n_retry=self.max_retry,
parser=main_prompt._parse_answer,
)
ans_dict["busted_retry"] = 0
# inferring the number of retries, TODO: make this less hacky
ans_dict["n_retry"] = (len(chat_messages) - 3) / 2
except ParseError as e:
ans_dict = dict(
action=None,
n_retry=self.max_retry + 1,
busted_retry=1,
)
stats = self.chat_llm.get_stats()
stats["n_retry"] = ans_dict["n_retry"]
stats["busted_retry"] = ans_dict["busted_retry"]
self.plan = ans_dict.get("plan", self.plan)
self.plan_step = ans_dict.get("step", self.plan_step)
self.actions.append(ans_dict["action"])
self.memories.append(ans_dict.get("memory", None))
self.thoughts.append(ans_dict.get("think", None))
agent_info = AgentInfo(
think=ans_dict.get("think", None),
chat_messages=chat_messages,
stats=stats,
extra_info={"chat_model_args": asdict(self.chat_model_args)},
)
return ans_dict["action"], agent_info
def reset(self, seed=None):
self.seed = seed
self.plan = "No plan yet"
self.plan_step = -1
self.memories = []
self.thoughts = []
self.actions = []
self.obs_history = []
def _check_flag_constancy(self):
flags = self.flags
if flags.obs.use_som:
if not flags.obs.use_screenshot:
warn(
"""
Warning: use_som=True requires use_screenshot=True. Disabling use_som."""
)
flags.obs.use_som = False
if flags.obs.use_screenshot:
if not self.chat_model_args.vision_support:
warn(
"""
Warning: use_screenshot is set to True, but the chat model \
does not support vision. Disabling use_screenshot."""
)
flags.obs.use_screenshot = False
return flags
def _get_maxes(self):
maxes = (
self.flags.max_prompt_tokens,
self.chat_model_args.max_total_tokens,
self.chat_model_args.max_input_tokens,
)
maxes = [m for m in maxes if m is not None]
max_prompt_tokens = min(maxes) if maxes else None
max_trunc_itr = (
self.flags.max_trunc_itr
if self.flags.max_trunc_itr
else 20 # dangerous to change the default value here?
)
return max_prompt_tokens, max_trunc_itr
def set_task(self, task: str):
"""
Set the task for the agent. This method can be used to change the task
during an episode.
Parameters:
-----------
task: str
The new task for the agent.
"""
self.task = task
def set_goal(self, goal):
self.goal = goal