We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e6df42 commit 1a3ab94Copy full SHA for 1a3ab94
1 file changed
vertexai/agent_engines/_agent_engines.py
@@ -221,6 +221,7 @@ def __init__(
221
to the system path in the sequence being specified here, and
222
only be appended if it is not already in the system path.
223
"""
224
+ self.agent_framework = None
225
self._tmpl_attrs = {
226
"module_name": module_name,
227
"agent_name": agent_name,
@@ -271,6 +272,7 @@ def set_up(self) -> None:
271
272
f"Agent {agent_name} not found in module "
273
f"{self._tmpl_attrs.get('module_name')}"
274
) from e
275
+ self.agent_framework = _get_agent_framework(agent)
276
self._tmpl_attrs["agent"] = agent
277
if hasattr(agent, "set_up"):
278
agent.set_up()
0 commit comments