-
Notifications
You must be signed in to change notification settings - Fork 91
Expand file tree
/
Copy pathgo.mod
More file actions
25 lines (22 loc) · 740 Bytes
/
go.mod
File metadata and controls
25 lines (22 loc) · 740 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
module github.com/charmbracelet/ai
go 1.24.5
require (
github.com/anthropics/anthropic-sdk-go v1.10.0
github.com/charmbracelet/x/json v0.2.0
github.com/go-viper/mapstructure/v2 v2.4.0
github.com/google/uuid v1.6.0
github.com/joho/godotenv v1.5.1
github.com/openai/openai-go/v2 v2.3.0
github.com/stretchr/testify v1.11.1
gopkg.in/dnaeon/go-vcr.v4 v4.0.5
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/goccy/go-yaml v1.18.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/tidwall/gjson v1.18.0 // indirect
github.com/tidwall/match v1.1.1 // indirect
github.com/tidwall/pretty v1.2.1 // indirect
github.com/tidwall/sjson v1.2.5 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)