Structs§
- Agent
Message Delta Notification - Envelope
- Skills
Changed Notification - Turn
Cancelled Notification - Turn
Completed Notification - Turn
Failed Notification - Turn
Interrupted Notification
Enums§
Functions§
- extract_
agent_ message_ delta - Parse one
item/agentMessage/deltanotification into a typed payload. Allocation: clones thread/turn/item ids and delta String. Complexity: O(n), n = delta size. - extract_
command_ exec_ output_ delta - Parse one
command/exec/outputDeltanotification into a typed payload. Allocation: one params clone for serde deserialization. Complexity: O(n), n = delta payload size. - extract_
skills_ changed_ notification - Detect the zero-payload
skills/changedinvalidation notification. Allocation: none. Complexity: O(1). - extract_
turn_ cancelled - Parse one
turn/cancellednotification into a typed payload. Allocation: clones ids. Complexity: O(1). - extract_
turn_ completed - Parse one
turn/completednotification into a typed payload. Allocation: clones ids and optional text. Complexity: O(n), n = text size. - extract_
turn_ failed - Parse one
turn/failednotification into a typed payload. Allocation: clones ids and optional error message. Complexity: O(n), n = message size. - extract_
turn_ interrupted - Parse one
turn/interruptednotification into a typed payload. Allocation: clones ids. Complexity: O(1).