karenina.adapters.claude_agent_sdk.llm¶
llm
¶
Claude Agent SDK LLM adapter implementing the LLMPort interface.
This module provides the ClaudeSDKLLMAdapter class that implements the LLMPort interface using the Claude Agent SDK's query() function for simple LLM calls.
IMPORTANT: Uses query() NOT ClaudeSDKClient since no hooks/tools are needed for simple LLM invocation. For agent loops with MCP/hooks, use ClaudeSDKAgentAdapter.
Key differences from LangChain: - Claude SDK uses string prompts, not message arrays - System prompts go in ClaudeAgentOptions.system_prompt - Structured output returned in ResultMessage.structured_output (already dict, not JSON) - SDK handles retries autonomously via max_turns (no manual retry logic needed)
Classes¶
ClaudeSDKLLMAdapter
¶
LLM adapter using Claude Agent SDK's query() function.
This adapter implements the LLMPort Protocol for simple LLM invocation without agent loops or tool calling. Uses the SDK's query() function which is simpler than ClaudeSDKClient.
The adapter handles: - Message conversion from unified Message to prompt string - System prompt extraction to ClaudeAgentOptions.system_prompt - Usage metadata extraction from ResultMessage - Sync/async invocation with proper event loop handling - Structured output via with_structured_output()
Note: The SDK handles retries autonomously via max_turns, so no manual retry logic is needed in this adapter.
Example
from karenina.schemas.config import ModelConfig config = ModelConfig( ... id="claude-sonnet", ... model_name="claude-sonnet-4-20250514", ... model_provider="anthropic", ... interface="claude_agent_sdk" ... ) adapter = ClaudeSDKLLMAdapter(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_agent_sdk/llm.py
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 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 | |
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_turns: int | None = None,
) -> None
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
model_config
¶ |
ModelConfig
|
Configuration specifying model, provider, and interface. |
required |
_structured_schema
¶ |
type[BaseModel] | None
|
Internal - schema for structured output mode. |
None
|
_max_turns
¶ |
int | None
|
Internal - max turns for SDK (handles retries autonomously). |
None
|
Source code in src/karenina/adapters/claude_agent_sdk/llm.py
aclose
async
¶
Close underlying resources.
The Claude SDK adapter uses query() which doesn't hold persistent connections, so this is a no-op. Provided for interface consistency with other adapters that do require cleanup.
Source code in src/karenina/adapters/claude_agent_sdk/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. |
Raises:
| Type | Description |
|---|---|
PortError
|
If the invocation fails. |
Source code in src/karenina/adapters/claude_agent_sdk/llm.py
invoke
¶
invoke(messages: list[Message]) -> LLMResponse
Invoke the LLM synchronously.
This is a convenience wrapper around ainvoke() for sync code. Uses the shared async portal if available, otherwise falls back to asyncio.run() with proper event loop handling.
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. |
Raises:
| Type | Description |
|---|---|
PortError
|
If the invocation fails. |
Source code in src/karenina/adapters/claude_agent_sdk/llm.py
with_structured_output
¶
with_structured_output(
schema: type[BaseModel],
*,
max_turns: int | None = None,
max_retries: int | None = None,
) -> ClaudeSDKLLMAdapter
Return a new adapter configured for structured output.
The returned adapter uses SDK's output_format option to constrain the LLM's output to match the provided JSON schema.
The SDK handles retries autonomously via max_turns - no manual retry logic is needed.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
schema
¶ |
type[BaseModel]
|
A Pydantic model class defining the output structure. |
required |
max_turns
¶ |
int | None
|
Maximum turns for SDK (handles retries autonomously). Default is 2 (minimum needed for structured output). |
None
|
max_retries
¶ |
int | None
|
Ignored for API compatibility with LangChain adapter. The SDK handles retries autonomously via max_turns. |
None
|
Returns:
| Type | Description |
|---|---|
ClaudeSDKLLMAdapter
|
A new ClaudeSDKLLMAdapter instance configured for structured output. |
ClaudeSDKLLMAdapter
|
The returned adapter guarantees that response.raw will be an instance |
ClaudeSDKLLMAdapter
|
of the provided schema. |
Example
class Answer(BaseModel): ... value: str ... confidence: float structured = adapter.with_structured_output(Answer) response = await structured.ainvoke(messages) assert isinstance(response.raw, Answer)