Skip to content

Commit

Permalink
the latest haiku model included (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
morisil authored Nov 9, 2024
1 parent 31c4927 commit 7fc2a7a
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions src/commonMain/kotlin/Models.kt
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,28 @@ enum class Model(
)
),

CLAUDE_3_5_HAIKU(
id = "claude-3-5-haiku-latest",
contextWindow = 200000,
maxOutput = 8182,
messageBatchesApi = true,
cost = Cost(
inputTokens = 1.0,
outputTokens = 5.0
)
),

CLAUDE_3_5_HAIKU_20241022(
id = "claude-3-5-haiku-20241022",
contextWindow = 200000,
maxOutput = 8182,
messageBatchesApi = true,
cost = Cost(
inputTokens = 1.0,
outputTokens = 5.0
)
),

CLAUDE_3_5_SONNET_20240620(
id = "claude-3-5-sonnet-20240620",
contextWindow = 200000,
Expand Down

0 comments on commit 7fc2a7a

Please sign in to comment.