forked from strands-agents/sdk-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodel.py
More file actions
304 lines (237 loc) · 10.3 KB
/
model.py
File metadata and controls
304 lines (237 loc) · 10.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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
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
"""Abstract base class for Agent model providers."""
import abc
import json
import logging
import math
from collections.abc import AsyncGenerator, AsyncIterable, Callable
from dataclasses import dataclass
from typing import TYPE_CHECKING, Any, Literal, TypedDict, TypeVar
from pydantic import BaseModel
from ..hooks.events import AfterInvocationEvent
from ..plugins.plugin import Plugin
from ..types.content import ContentBlock, Messages, SystemContentBlock
from ..types.streaming import StreamEvent
from ..types.tools import ToolChoice, ToolSpec
if TYPE_CHECKING:
from ..agent.agent import Agent
logger = logging.getLogger(__name__)
T = TypeVar("T", bound=BaseModel)
def _heuristic_estimate_text(text: str) -> int:
"""Estimate token count from text using characters / 4 heuristic."""
return math.ceil(len(text) / 4)
def _heuristic_estimate_json(obj: Any) -> int:
"""Estimate token count from a JSON-serializable object using characters / 2 heuristic."""
try:
return math.ceil(len(json.dumps(obj)) / 2)
except (TypeError, ValueError):
return 0
def _count_content_block_tokens(
block: ContentBlock, count_text: Callable[[str], int], count_json: Callable[[Any], int]
) -> int:
"""Count tokens for a single content block.
Args:
block: The content block to count tokens for.
count_text: Function that returns token count for a text string.
count_json: Function that returns token count for a JSON-serializable object.
"""
total = 0
if "text" in block:
total += count_text(block["text"])
if "toolUse" in block:
tool_use = block["toolUse"]
total += count_text(tool_use.get("name", ""))
total += count_json(tool_use.get("input", {}))
if "toolResult" in block:
tool_result = block["toolResult"]
for item in tool_result.get("content", []):
if "text" in item:
total += count_text(item["text"])
if "reasoningContent" in block:
reasoning = block["reasoningContent"]
if "reasoningText" in reasoning:
reasoning_text = reasoning["reasoningText"]
if "text" in reasoning_text:
total += count_text(reasoning_text["text"])
if "guardContent" in block:
guard = block["guardContent"]
if "text" in guard and "text" in guard["text"]:
total += count_text(guard["text"]["text"])
if "citationsContent" in block:
citations = block["citationsContent"]
if "content" in citations:
for citation_item in citations["content"]:
if "text" in citation_item:
total += count_text(citation_item["text"])
return total
def _estimate_tokens_with_heuristic(
messages: Messages,
tool_specs: list[ToolSpec] | None = None,
system_prompt: str | None = None,
system_prompt_content: list[SystemContentBlock] | None = None,
) -> int:
"""Estimate tokens using character-based heuristics (text: chars/4, JSON: chars/2).
Dependency-free fallback when tiktoken is not installed.
"""
total = 0
if system_prompt_content:
for block in system_prompt_content:
if "text" in block:
total += _heuristic_estimate_text(block["text"])
elif system_prompt:
total += _heuristic_estimate_text(system_prompt)
for message in messages:
for block in message["content"]:
total += _count_content_block_tokens(block, _heuristic_estimate_text, _heuristic_estimate_json)
if tool_specs:
for spec in tool_specs:
total += _heuristic_estimate_json(spec)
return total
class BaseModelConfig(TypedDict, total=False):
"""Base configuration shared by all model providers.
Attributes:
context_window_limit: Maximum context window size in tokens for the model.
This value represents the total token capacity shared between input and output.
"""
context_window_limit: int | None
@dataclass
class CacheConfig:
"""Configuration for prompt caching.
Attributes:
strategy: Caching strategy to use.
- "auto": Automatically detect model support and inject cachePoint to maximize cache coverage
- "anthropic": Inject cachePoint in Anthropic-compatible format without model support check
"""
strategy: Literal["auto", "anthropic"] = "auto"
class Model(abc.ABC):
"""Abstract base class for Agent model providers.
This class defines the interface for all model implementations in the Strands Agents SDK. It provides a
standardized way to configure and process requests for different AI model providers.
"""
@property
def stateful(self) -> bool:
"""Whether the model manages conversation state server-side.
Returns:
False by default. Model providers that support server-side state should override this.
"""
return False
@property
def context_window_limit(self) -> int | None:
"""Maximum context window size in tokens, or None if not configured."""
config = self.get_config()
return (
config.get("context_window_limit")
if isinstance(config, dict)
else getattr(config, "context_window_limit", None)
)
@abc.abstractmethod
# pragma: no cover
def update_config(self, **model_config: Any) -> None:
"""Update the model configuration with the provided arguments.
Args:
**model_config: Configuration overrides.
"""
pass
@abc.abstractmethod
# pragma: no cover
def get_config(self) -> Any:
"""Return the model configuration.
Returns:
The model's configuration.
"""
pass
@abc.abstractmethod
# pragma: no cover
def structured_output(
self, output_model: type[T], prompt: Messages, system_prompt: str | None = None, **kwargs: Any
) -> AsyncGenerator[dict[str, T | Any], None]:
"""Get structured output from the model.
Args:
output_model: The output model to use for the agent.
prompt: The prompt messages to use for the agent.
system_prompt: System prompt to provide context to the model.
**kwargs: Additional keyword arguments for future extensibility.
Yields:
Model events with the last being the structured output.
Raises:
ValidationException: The response format from the model does not match the output_model
"""
pass
@abc.abstractmethod
# pragma: no cover
def stream(
self,
messages: Messages,
tool_specs: list[ToolSpec] | None = None,
system_prompt: str | None = None,
*,
tool_choice: ToolChoice | None = None,
system_prompt_content: list[SystemContentBlock] | None = None,
invocation_state: dict[str, Any] | None = None,
**kwargs: Any,
) -> AsyncIterable[StreamEvent]:
"""Stream conversation with the model.
This method handles the full lifecycle of conversing with the model:
1. Format the messages, tool specs, and configuration into a streaming request
2. Send the request to the model
3. Yield the formatted message chunks
Args:
messages: List of message objects to be processed by the model.
tool_specs: List of tool specifications to make available to the model.
system_prompt: System prompt to provide context to the model.
tool_choice: Selection strategy for tool invocation.
system_prompt_content: System prompt content blocks for advanced features like caching.
invocation_state: Caller-provided state/context that was passed to the agent when it was invoked.
**kwargs: Additional keyword arguments for future extensibility.
Yields:
Formatted message chunks from the model.
Raises:
ModelThrottledException: When the model service is throttling requests from the client.
"""
pass
async def count_tokens(
self,
messages: Messages,
tool_specs: list[ToolSpec] | None = None,
system_prompt: str | None = None,
system_prompt_content: list[SystemContentBlock] | None = None,
) -> int:
"""Estimate token count for the given input before sending to the model.
Used for proactive context management (e.g., triggering compression at a threshold).
Uses tiktoken's cl100k_base encoding when available, otherwise falls back to a
heuristic (characters / 4 for text, characters / 2 for JSON). Accuracy varies by
model provider. Not intended for billing or precise quota calculations.
Subclasses may override this method to provide model-specific token counting
using native APIs for improved accuracy.
Args:
messages: List of message objects to estimate tokens for.
tool_specs: List of tool specifications to include in the estimate.
system_prompt: Plain string system prompt. Ignored if system_prompt_content is provided.
system_prompt_content: Structured system prompt content blocks. Takes priority over system_prompt.
Returns:
Estimated total input tokens.
"""
return _estimate_tokens_with_heuristic(messages, tool_specs, system_prompt, system_prompt_content)
class _ModelPlugin(Plugin):
"""Plugin that manages model-related lifecycle hooks."""
@property
def name(self) -> str:
"""A stable string identifier for this plugin."""
return "strands:model"
@staticmethod
def _on_after_invocation(event: AfterInvocationEvent) -> None:
"""Handle post-invocation model management tasks.
Performs the following:
- Clears messages when the model is managing conversation state server-side.
"""
if event.agent.model.stateful:
event.agent.messages.clear()
logger.debug(
"response_id=<%s> | cleared messages for server-managed conversation",
event.agent._model_state.get("response_id"),
)
def init_agent(self, agent: "Agent") -> None:
"""Register model lifecycle hooks with the agent.
Args:
agent: The agent instance to register hooks with.
"""
agent.add_hook(self._on_after_invocation, AfterInvocationEvent)