go.mod

 1module github.com/charmbracelet/ai
 2
 3go 1.24.5
 4
 5require (
 6	github.com/anthropics/anthropic-sdk-go v1.10.0
 7	github.com/charmbracelet/x/json v0.2.0
 8	github.com/go-viper/mapstructure/v2 v2.4.0
 9	github.com/google/uuid v1.6.0
10	github.com/joho/godotenv v1.5.1
11	github.com/openai/openai-go/v2 v2.3.0
12	github.com/stretchr/testify v1.11.1
13	gopkg.in/dnaeon/go-vcr.v4 v4.0.5
14)
15
16require (
17	github.com/davecgh/go-spew v1.1.1 // indirect
18	github.com/goccy/go-yaml v1.18.0 // indirect
19	github.com/pmezard/go-difflib v1.0.0 // indirect
20	github.com/tidwall/gjson v1.18.0 // indirect
21	github.com/tidwall/match v1.1.1 // indirect
22	github.com/tidwall/pretty v1.2.1 // indirect
23	github.com/tidwall/sjson v1.2.5 // indirect
24	gopkg.in/yaml.v3 v3.0.1 // indirect
25)