You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
f"There is no action defined for action '{action.name}' on agent '{self._agent_id}' "
231
240
f"({self._conversation_id}), but it was invoked by the model with: {action.arguments}. "
232
-
f"Did you forget to call receive() or handle()?"
241
+
f"Did you forget to call {self.receive.__name__}() or {self.handle.__name__}()? You can also handle unexpected action invocations using the {self.on_unhandled_action.__name__} event."
233
242
)
234
243
235
244
# If we have nothing to tell the server (no action responses), we're done
0 commit comments