Skip to content

Commit df6dc67

Browse files
committed
revisions
1 parent d3b66ad commit df6dc67

File tree

4 files changed

+688
-1041
lines changed

4 files changed

+688
-1041
lines changed

pyproject.toml

Lines changed: 21 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,9 @@ all = [
118118
source = "vcs"
119119

120120
[tool.hatch.envs.hatch-static-analysis]
121-
features = ["anthropic", "litellm", "llamaapi", "ollama", "openai", "otel", "mistral", "writer", "a2a", "sagemaker", "gemini"]
121+
features = [
122+
"a2a", "anthropic", "gemini", "litellm", "llamaapi", "mistral", "ollama", "openai", "otel", "sagemaker", "writer",
123+
]
122124
dependencies = [
123125
"mypy>=1.15.0,<2.0.0",
124126
"ruff>=0.11.6,<0.12.0",
@@ -141,7 +143,9 @@ lint-fix = [
141143
]
142144

143145
[tool.hatch.envs.hatch-test]
144-
features = ["anthropic", "litellm", "llamaapi", "ollama", "openai", "otel", "mistral", "writer", "a2a", "sagemaker", "gemini"]
146+
features = [
147+
"a2a", "anthropic", "gemini", "litellm", "llamaapi", "mistral", "ollama", "openai", "otel", "sagemaker", "writer",
148+
]
145149
extra-dependencies = [
146150
"moto>=5.1.0,<6.0.0",
147151
"pytest>=8.0.0,<9.0.0",
@@ -157,7 +161,21 @@ extra-args = [
157161

158162
[tool.hatch.envs.dev]
159163
dev-mode = true
160-
features = ["dev", "docs", "anthropic", "litellm", "llamaapi", "ollama", "otel", "mistral", "writer", "a2a", "sagemaker", "gemini"]
164+
features = [
165+
"a2a",
166+
"anthropic",
167+
"dev",
168+
"docs",
169+
"gemini",
170+
"litellm",
171+
"llamaapi",
172+
"mistral",
173+
"ollama",
174+
"openai",
175+
"otel",
176+
"sagemaker",
177+
"writer",
178+
]
161179

162180
[[tool.hatch.envs.hatch-test.matrix]]
163181
python = ["3.13", "3.12", "3.11", "3.10"]

src/strands/models/bedrock.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@
4747

4848
DEFAULT_READ_TIMEOUT = 120
4949

50+
5051
class BedrockModel(Model):
5152
"""AWS Bedrock model provider implementation.
5253

0 commit comments

Comments
 (0)