44
44
callback_context: MUST be named 'callback_context' (enforced).
45
45
46
46
Returns:
47
- The content to return to the user. When set, the agent run will skipped and
47
+ The content to return to the user. When set, the agent run will be skipped and
48
48
the provided content will be returned to user.
49
49
"""
50
50
55
55
callback_context: MUST be named 'callback_context' (enforced).
56
56
57
57
Returns:
58
- The content to return to the user. When set, the agent run will skipped and
59
- the provided content will be appended to event history as agent response.
58
+ The content to return to the user. When set, the provided content will be
59
+ appended to event history as agent response.
60
60
"""
61
61
62
62
@@ -101,8 +101,8 @@ class BaseAgent(BaseModel):
101
101
callback_context: MUST be named 'callback_context' (enforced).
102
102
103
103
Returns:
104
- The content to return to the user. When set, the agent run will skipped and
105
- the provided content will be returned to user.
104
+ The content to return to the user. When set, the agent run will be skipped
105
+ and the provided content will be returned to user.
106
106
"""
107
107
after_agent_callback : Optional [AfterAgentCallback ] = None
108
108
"""Callback signature that is invoked after the agent run.
@@ -111,8 +111,8 @@ class BaseAgent(BaseModel):
111
111
callback_context: MUST be named 'callback_context' (enforced).
112
112
113
113
Returns:
114
- The content to return to the user. When set, the agent run will skipped and
115
- the provided content will be appended to event history as agent response.
114
+ The content to return to the user. When set, the provided content will be
115
+ appended to event history as agent response.
116
116
"""
117
117
118
118
@final
0 commit comments