chore: bump Go dependencies and remove deprecated Anthropic models

- Bump go-sqlite3 from v1.14.33 to v1.14.34
- Bump ollama from v0.15.6 to v0.16.1
- Bump google.golang.org/api from v0.265.0 to v0.266.0
- Bump google.golang.org/grpc from v1.78.0 to v1.79.0
- Remove deprecated Claude 3.x model references from Anthropic client
- Remove claude-3-7-sonnet model from OpenAI-compatible provider config
- Add changelog entry for PR #1996
- Add PDFURL and URLPDF to VSCode spell-check dictionary
- incoming 1996 changelog entry
This commit is contained in:
Kayvan Sylvan
2026-02-17 20:04:36 -08:00
parent 7c0d3dfefb
commit 12f34621b9
6 changed files with 25 additions and 24 deletions

View File

@@ -36,9 +36,6 @@ func NewClient() (ret *Client) {
ret.maxTokens = 4096
ret.defaultRequiredUserMessage = "Hi"
ret.models = []string{
// The following models will be deprecated on February 19, 2026
string(anthropic.ModelClaude3_7SonnetLatest), string(anthropic.ModelClaude3_7Sonnet20250219),
string(anthropic.ModelClaude3_5HaikuLatest), string(anthropic.ModelClaude3_5Haiku20241022),
// The following are the current supported models
string(anthropic.ModelClaudeSonnet4_6),
string(anthropic.ModelClaudeOpus4_6),
@@ -55,7 +52,6 @@ func NewClient() (ret *Client) {
string(anthropic.ModelClaudeOpus4_20250514),
string(anthropic.ModelClaude4Opus20250514),
string(anthropic.ModelClaudeOpus4_1_20250805),
string(anthropic.ModelClaude_3_Haiku_20240307),
}
ret.modelBetas = map[string][]string{

View File

@@ -151,7 +151,6 @@ func (c *Client) getStaticModels(modelsKey string) ([]string, error) {
"gpt-5.2-chat-latest",
"gpt-5.2-codex",
"openai/gpt-oss-120b",
"claude-3-7-sonnet-20250219",
"claude-sonnet-4-20250514",
"claude-opus-4-20250514",
"claude-opus-4-1-20250805",