Skip to content

Commit 3233c08

Browse files
author
Jack Butler
committed
Merge branch 'feat/haiku' into 'main'
Feat/haiku See merge request genaiic-reusable-assets/utilities/genai-reflection-for-bedrock!34
2 parents 0c8bb1e + cd167ae commit 3233c08

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "bee_hive"
3-
version = "0.7.7"
3+
version = "0.7.8"
44
description = "Library for enabling inference-time-compute augmentations in Bedrock"
55
authors = [
66
{name = "Jack Butler", email = "[email protected]"},

src/bhive/cost.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,10 @@ class TokenPrices(pydantic.BaseModel):
6767
input_per_1000=0.003,
6868
output_per_1000=0.015,
6969
),
70+
"anthropic.claude-haiku-4-5-20251001-v1:0": TokenPrices(
71+
input_per_1000=0.001,
72+
output_per_1000=0.005,
73+
),
7074
"anthropic.claude-sonnet-4-5-20250929-v1:0": TokenPrices(
7175
input_per_1000=0.003,
7276
output_per_1000=0.015,

0 commit comments

Comments
 (0)