Skip to content

Commit

Permalink
update & fix model versions
Browse files Browse the repository at this point in the history
  • Loading branch information
dleviminzi committed Dec 23, 2023
1 parent b6bb26f commit 65c1ca2
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions anthropic_models.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,10 @@ package anthrogo
type AnthropicModel string

const (
// ModelClaude2 is the latest major version of Claude 2.0
ModelClaude2 AnthropicModel = "claude-2"

// ModelClaudeInstant1 is the latest major version of Claude Instant 1
ModelClaudeInstant1 AnthropicModel = "claude-instant-1"
ModelClaude2 AnthropicModel = "claude-2"
ModelClaude2Dot1 AnthropicModel = "claude-2.1"

ModelClaudeInstant1 AnthropicModel = "claude-instant-1"
ModelClaudeInstant1Dot1 AnthropicModel = "claude-instant-1.1"
ModelClaudeInstant1Dot2 AnthropicModel = "claude-instant-1.1"
ModelClaudeInstant1Dot2 AnthropicModel = "claude-instant-1.2"
)

0 comments on commit 65c1ca2

Please sign in to comment.