Callbacks API
udspy.callback
Callback system for telemetry and monitoring.
This module provides a DSPy-compatible callback system for tracking LLM calls, module executions, and tool invocations. Compatible with Opik, MLflow, and other observability tools that support DSPy callbacks.
Classes
BaseCallback
Base class for callback handlers.
Subclass this and implement the desired handlers to track LLM calls, module executions, and tool invocations. Compatible with DSPy callback interface.
Example
from udspy import settings
from udspy.callback import BaseCallback
class LoggingCallback(BaseCallback):
def on_lm_start(self, call_id, instance, inputs):
print(f"LLM called with: {inputs}")
def on_lm_end(self, call_id, outputs, exception):
if exception:
print(f"LLM failed: {exception}")
else:
print(f"LLM returned: {outputs}")
def on_tool_start(self, call_id, instance, inputs):
print(f"Tool {instance.name} called with: {inputs}")
def on_tool_end(self, call_id, outputs, exception):
print(f"Tool returned: {outputs}")
# Set globally
settings.configure(callbacks=[LoggingCallback()])
Source code in src/udspy/callback.py
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 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 | |
Functions
on_lm_end(call_id, outputs, exception=None)
Called when an LLM call completes.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
call_id
|
str
|
Unique identifier for this call |
required |
outputs
|
dict[str, Any] | None
|
LLM response, or None if exception occurred |
required |
exception
|
Exception | None
|
Exception raised during execution, if any |
None
|
Source code in src/udspy/callback.py
on_lm_start(call_id, instance, inputs)
Called when an LLM call starts.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
call_id
|
str
|
Unique identifier for this call |
required |
instance
|
Any
|
The LLM client or adapter instance |
required |
inputs
|
dict[str, Any]
|
LLM input parameters (messages, model, etc.) |
required |
Source code in src/udspy/callback.py
on_module_end(call_id, outputs, exception=None)
Called when a module's forward() method completes.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
call_id
|
str
|
Unique identifier for this call |
required |
outputs
|
Any | None
|
The module's output, or None if exception occurred |
required |
exception
|
Exception | None
|
Exception raised during execution, if any |
None
|
Source code in src/udspy/callback.py
on_module_start(call_id, instance, inputs)
Called when a module's forward() method starts.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
call_id
|
str
|
Unique identifier for this call |
required |
instance
|
Any
|
The Module instance being called |
required |
inputs
|
dict[str, Any]
|
Input arguments as key-value pairs |
required |
Source code in src/udspy/callback.py
on_tool_end(call_id, outputs, exception=None)
Called when a tool invocation completes.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
call_id
|
str
|
Unique identifier for this call |
required |
outputs
|
Any | None
|
Tool output, or None if exception occurred |
required |
exception
|
Exception | None
|
Exception raised during execution, if any |
None
|
Source code in src/udspy/callback.py
on_tool_start(call_id, instance, inputs)
Called when a tool is invoked.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
call_id
|
str
|
Unique identifier for this call |
required |
instance
|
Any
|
The Tool instance being called |
required |
inputs
|
dict[str, Any]
|
Tool input arguments as key-value pairs |
required |
Source code in src/udspy/callback.py
Functions
with_callbacks(fn)
Decorator to add callback functionality to methods.
Automatically calls appropriate callback handlers before and after method execution. Handles both sync and async methods.
The decorator determines which callback handlers to call based on the instance type (Module, Tool, etc.) and method name.
Source code in src/udspy/callback.py
144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 | |