-
Notifications
You must be signed in to change notification settings - Fork 91
Expand file tree
/
Copy pathgo.mod
More file actions
26 lines (20 loc) · 854 Bytes
/
go.mod
File metadata and controls
26 lines (20 loc) · 854 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
26
module github.com/charmbracelet/ai/examples
go 1.24.5
require (
github.com/charmbracelet/ai/ai v0.0.0-00010101000000-000000000000
github.com/charmbracelet/ai/anthropic v0.0.0-00010101000000-000000000000
github.com/charmbracelet/ai/openai v0.0.0-00010101000000-000000000000
)
require (
github.com/anthropics/anthropic-sdk-go v1.10.0 // indirect
github.com/go-viper/mapstructure/v2 v2.4.0 // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/openai/openai-go/v2 v2.2.1 // 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
)
replace github.com/charmbracelet/ai/ai => ../ai
replace github.com/charmbracelet/ai/anthropic => ../anthropic
replace github.com/charmbracelet/ai/openai => ../openai