karenina.adapters.claude_tool.llm¶
llm
¶
Claude Tool LLM adapter implementing the LLMPort interface.
This module provides the ClaudeToolLLMAdapter class that uses the Anthropic Python SDK directly (client.messages.create) for simple LLM invocations without agent loops.
Key features: - Uses Anthropic's native Python SDK for efficient API calls - Supports structured output via client.beta.messages.parse() with Pydantic - Implements prompt caching for efficiency - Uses SDK's built-in retry logic for transient errors
Classes¶
ClaudeToolLLMAdapter
¶
LLM adapter using Anthropic Python SDK for simple invocations.
This adapter implements the LLMPort Protocol using client.messages.create() for stateless LLM calls without agent loops.
The adapter handles: - Message conversion from unified Message to Anthropic SDK format - Usage metadata extraction from SDK responses - Structured output via client.beta.messages.parse() with Pydantic - Prompt caching for efficiency
Note: Transient error retries are handled by the Anthropic SDK (default: 2 retries with exponential backoff for connection errors, timeouts, rate limits, and 5xx errors).
Example
from karenina.schemas.config import ModelConfig config = ModelConfig( ... id="claude-haiku", ... model_name="claude-haiku-4-5", ... model_provider="anthropic", ... interface="claude_tool" ... ) adapter = ClaudeToolLLMAdapter(config) response = await adapter.ainvoke([Message.user("Hello!")]) print(response.content) 'Hello! How can I help you today?'
With structured output¶
class Answer(BaseModel): ... value: str structured = adapter.with_structured_output(Answer) response = await structured.ainvoke([Message.user("What is 2+2?")])
Source code in src/karenina/adapters/claude_tool/llm.py
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 142 143 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 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 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 307 308 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 | |
Attributes¶
capabilities
property
¶
capabilities: PortCapabilities
Declare what prompt features this adapter supports.
Returns:
| Type | Description |
|---|---|
PortCapabilities
|
PortCapabilities with system prompt support and structured output support. |
Functions¶
__init__
¶
__init__(
model_config: ModelConfig,
*,
_structured_schema: type[BaseModel] | None = None,
_max_retries: int = 0,
) -> None
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
model_config
¶ |
ModelConfig
|
Configuration specifying model and parameters. |
required |
_structured_schema
¶ |
type[BaseModel] | None
|
Internal - schema for structured output mode. |
None
|
_max_retries
¶ |
int
|
Internal - max validation retries with error feedback. |
0
|
Source code in src/karenina/adapters/claude_tool/llm.py
aclose
async
¶
Close underlying HTTP client resources.
This method should be called when the adapter is no longer needed to properly close httpx connection pools and prevent resource leaks. Safe to call multiple times.
Source code in src/karenina/adapters/claude_tool/llm.py
ainvoke
async
¶
ainvoke(messages: list[Message]) -> LLMResponse
Invoke the LLM asynchronously.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
messages
¶ |
list[Message]
|
List of unified Message objects. |
required |
Returns:
| Type | Description |
|---|---|
LLMResponse
|
LLMResponse with content, usage metadata, and raw response. |
LLMResponse
|
When using structured output (via with_structured_output()), the |
LLMResponse
|
raw field contains the parsed Pydantic model instance. |
Raises:
| Type | Description |
|---|---|
PortError
|
If the invocation fails. |
Source code in src/karenina/adapters/claude_tool/llm.py
invoke
¶
invoke(messages: list[Message]) -> LLMResponse
Invoke the LLM synchronously.
This is a convenience wrapper around ainvoke() for sync code.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
messages
¶ |
list[Message]
|
List of unified Message objects. |
required |
Returns:
| Type | Description |
|---|---|
LLMResponse
|
LLMResponse with content, usage metadata, and raw response. |
Source code in src/karenina/adapters/claude_tool/llm.py
with_structured_output
¶
with_structured_output(
schema: type[BaseModel],
*,
max_retries: int | None = None,
) -> ClaudeToolLLMAdapter
Return a new adapter configured for structured output.
Uses Anthropic's beta.messages.parse() for native structured output with Pydantic models.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
schema
¶ |
type[BaseModel]
|
A Pydantic model class defining the output structure. |
required |
max_retries
¶ |
int | None
|
Maximum retry attempts on validation failure. Default is 3 retries. |
None
|
Returns:
| Type | Description |
|---|---|
ClaudeToolLLMAdapter
|
A new ClaudeToolLLMAdapter configured for structured output. |