messages
Class info¶
Classes¶
Name | Children | Inherits |
---|---|---|
AgentResponse llmling_agent.messaging.messages Result from an agent's execution. |
||
ChatMessage llmling_agent.messaging.messages Common message format for all UI types. |
||
TeamResponse llmling_agent.messaging.messages Results from a team execution. |
||
TokenCost llmling_agent.messaging.messages Combined token and cost tracking. |
||
TokenUsage llmling_agent.messaging.messages Token usage statistics from model responses. |
||
ToolCallInfo llmling_agent.models.tools Information about an executed tool call. |
🛈 DocStrings¶
Message and token usage models.
AgentResponse
dataclass
¶
Result from an agent's execution.
Source code in src/llmling_agent/messaging/messages.py
282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 |
|
message
instance-attribute
¶
message: ChatMessage[TResult] | None
The actual message with content and metadata
ChatMessage
dataclass
¶
Common message format for all UI types.
Generically typed with: ChatMessage[Type of Content] The type can either be str or a BaseModel subclass.
Source code in src/llmling_agent/messaging/messages.py
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 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 |
|
associated_messages
class-attribute
instance-attribute
¶
associated_messages: list[ChatMessage[Any]] = field(default_factory=list)
List of messages which were generated during the the creation of this messsage.
content
instance-attribute
¶
content: TContent
Message content, typed as TContent (either str or BaseModel).
conversation_id
class-attribute
instance-attribute
¶
conversation_id: str | None = None
ID of the conversation this message belongs to.
cost_info
class-attribute
instance-attribute
¶
cost_info: TokenCost | None = None
Token usage and costs for this specific message if available.
forwarded_from
class-attribute
instance-attribute
¶
List of agent names (the chain) that forwarded this message to the sender.
message_id
class-attribute
instance-attribute
¶
Unique identifier for this message.
metadata
class-attribute
instance-attribute
¶
Additional metadata about the message.
model
class-attribute
instance-attribute
¶
model: str | None = None
Name of the model that generated this message.
name
class-attribute
instance-attribute
¶
name: str | None = None
Display name for the message sender in UI.
provider_extra
class-attribute
instance-attribute
¶
Provider specific metadata / extra information.
response_time
class-attribute
instance-attribute
¶
response_time: float | None = None
Time it took the LLM to respond.
timestamp
class-attribute
instance-attribute
¶
When this message was created.
tool_calls
class-attribute
instance-attribute
¶
tool_calls: list[ToolCallInfo] = field(default_factory=list)
List of tool calls made during message generation.
_get_content_str
¶
_get_content_str() -> str
Get string representation of content.
Source code in src/llmling_agent/messaging/messages.py
218 219 220 221 222 223 224 225 226 227 |
|
format
¶
format(
style: FormatStyle = "simple",
*,
template: str | None = None,
variables: dict[str, Any] | None = None,
show_metadata: bool = False,
show_costs: bool = False,
) -> str
Format message with configurable style.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
style
|
FormatStyle
|
Predefined style or "custom" for custom template |
'simple'
|
template
|
str | None
|
Custom Jinja template (required if style="custom") |
None
|
variables
|
dict[str, Any] | None
|
Additional variables for template rendering |
None
|
show_metadata
|
bool
|
Whether to include metadata |
False
|
show_costs
|
bool
|
Whether to include cost information |
False
|
Raises:
Type | Description |
---|---|
ValueError
|
If style is "custom" but no template provided or if style is invalid |
Source code in src/llmling_agent/messaging/messages.py
234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 |
|
forwarded
¶
forwarded(previous_message: ChatMessage[Any]) -> Self
Create new message showing it was forwarded from another message.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
previous_message
|
ChatMessage[Any]
|
The message that led to this one's creation |
required |
Returns:
Type | Description |
---|---|
Self
|
New message with updated chain showing the path through previous message |
Source code in src/llmling_agent/messaging/messages.py
202 203 204 205 206 207 208 209 210 211 212 |
|
to_text_message
¶
to_text_message() -> ChatMessage[str]
Convert this message to a text-only version.
Source code in src/llmling_agent/messaging/messages.py
214 215 216 |
|
TeamResponse
¶
Bases: list[AgentResponse[Any]]
Results from a team execution.
Source code in src/llmling_agent/messaging/messages.py
309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 |
|
by_agent
¶
by_agent(name: str) -> AgentResponse[TMessageContent] | None
Get response from specific agent.
Source code in src/llmling_agent/messaging/messages.py
338 339 340 |
|
format_durations
¶
format_durations() -> str
Format execution times.
Source code in src/llmling_agent/messaging/messages.py
342 343 344 345 |
|
to_chat_message
¶
to_chat_message() -> ChatMessage[str]
Convert team response to a single chat message.
Source code in src/llmling_agent/messaging/messages.py
348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 |
|
TokenCost
dataclass
¶
Combined token and cost tracking.
Source code in src/llmling_agent/messaging/messages.py
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 142 143 144 145 146 147 148 149 |
|
from_usage
async
classmethod
¶
Create result from usage data.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
usage
|
Usage | None
|
Token counts from model response |
required |
model
|
str
|
Name of the model used |
required |
prompt
|
str
|
The prompt text sent to model |
required |
completion
|
str
|
The completion text received |
required |
Returns:
Type | Description |
---|---|
TokenCost | None
|
TokenCost if usage data available, None otherwise |
Source code in src/llmling_agent/messaging/messages.py
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 142 143 144 145 146 147 148 149 |
|
TokenUsage
¶
Bases: TypedDict
Token usage statistics from model responses.
Source code in src/llmling_agent/messaging/messages.py
85 86 87 88 89 90 91 92 93 |
|