forked from openai/openai-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
25 lines (21 loc) · 772 Bytes
/
go.mod
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/openai/openai-go/examples
replace github.com/openai/openai-go => ../
go 1.22.4
require (
github.com/ebitengine/oto/v3 v3.2.0
github.com/invopop/jsonschema v0.12.0
github.com/openai/openai-go v0.0.0-00010101000000-000000000000
)
require (
github.com/bahlo/generic-list-go v0.2.0 // indirect
github.com/buger/jsonparser v1.1.1 // indirect
github.com/ebitengine/purego v0.7.0 // indirect
github.com/mailru/easyjson v0.7.7 // indirect
github.com/tidwall/gjson v1.14.4 // 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
github.com/wk8/go-ordered-map/v2 v2.1.8 // indirect
golang.org/x/sys v0.22.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)