Skip to content

Commit

Permalink
feat(anthropic-client): add most intelligent model CLAUDE_3_5_Sonnet
Browse files Browse the repository at this point in the history
 - Added the most intelligent model CLAUDE_3_5_Sonnet with details and tests.
  • Loading branch information
hanrw committed Jun 21, 2024
1 parent aab64ca commit e8ce67f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ value class Model(val value: String) {
*/
val CLAUDE_3_HAIKU = Model("claude-3-haiku-20240307")

val availableModels = listOf(CLAUDE_3_OPUS, CLAUDE_3_Sonnet, CLAUDE_3_HAIKU)
val availableModels =
listOf(CLAUDE_3_OPUS, CLAUDE_3_Sonnet, CLAUDE_3_HAIKU, CLAUDE_3_5_Sonnet)
}
}
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ kover {
verify {
rule {
bound {
minValue = 82
minValue = 86
}
}
}
Expand Down

0 comments on commit e8ce67f

Please sign in to comment.