File tree Expand file tree Collapse file tree 3 files changed +10
-64
lines changed Expand file tree Collapse file tree 3 files changed +10
-64
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -48,8 +48,13 @@ class EventActions(BaseModel):
48
48
"""The agent is escalating to a higher level agent."""
49
49
50
50
requested_auth_configs : dict [str , AuthConfig ] = Field (default_factory = dict )
51
- """Will only be set by a tool response indicating tool request euc.
52
- dict key is the function call id since one function call response (from model)
53
- could correspond to multiple function calls.
54
- dict value is the required auth config.
51
+ """Authentication configurations requested by tool responses.
52
+
53
+ This field will only be set by a tool response event indicating tool request
54
+ auth credential.
55
+ - Keys: The function call id. Since one function response event could contain
56
+ multiple function responses that correspond to multiple function calls. Each
57
+ function call could request different auth configs. This id is used to
58
+ identify the function call.
59
+ - Values: The requested auth config.
55
60
"""
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ def adk_to_mcp_tool_type(tool: BaseTool) -> mcp_types.Tool:
22
22
"""Convert a Tool in ADK into MCP tool type.
23
23
24
24
This function transforms an ADK tool definition into its equivalent
25
- MCP (Model Context Protocol) representation .
25
+ representation in the MCP (Model Control Plane) system .
26
26
27
27
Args:
28
28
tool: The ADK tool to convert. It should be an instance of a class derived
You can’t perform that action at this time.
0 commit comments