Utilities Module¶
Handler factory functions for different streaming transports.
WebSocket Handlers¶
Create StreamHandlers that send events over WebSocket/SSE.
This creates handlers that serialize all streaming events to JSON and send them via the provided async send function.
Parameters:
-
send(Callable[[dict[str, Any]], Awaitable[None]]) –Async function to send JSON data (e.g., ws.send_json).
Returns:
-
StreamHandlers–StreamHandlers configured for WebSocket streaming.
Example
Source code in src/bond/utils.py
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 | |
SSE Handlers¶
Create StreamHandlers for Server-Sent Events (SSE).
Similar to WebSocket handlers but uses SSE event format.
Parameters:
-
send(Callable[[str, dict[str, Any]], Awaitable[None]]) –Async function to send SSE event (event_type, data).
Returns:
-
StreamHandlers–StreamHandlers configured for SSE streaming.
Example
Source code in src/bond/utils.py
Print Handlers¶
Create StreamHandlers that print to console.
Useful for CLI applications and debugging.
Parameters:
-
show_thinking(bool, default:False) –Whether to print thinking/reasoning content.
-
show_tool_args(bool, default:False) –Whether to print tool argument deltas.
Returns:
-
StreamHandlers–StreamHandlers configured for console output.