openai/openai-go
Publicmirrored from https://github.com/openai/openai-goAvailable
examples/go.mod
19lines · modecode
| 1 | module github.com/openai/openai-go/examples |
| 2 | |
| 3 | replace github.com/openai/openai-go => ../ |
| 4 | |
| 5 | go 1.22.4 |
| 6 | |
| 7 | require ( |
| 8 | github.com/ebitengine/oto/v3 v3.2.0 |
| 9 | github.com/openai/openai-go v0.0.0-00010101000000-000000000000 |
| 10 | ) |
| 11 | |
| 12 | require ( |
| 13 | github.com/ebitengine/purego v0.7.0 // indirect |
| 14 | github.com/tidwall/gjson v1.14.4 // indirect |
| 15 | github.com/tidwall/match v1.1.1 // indirect |
| 16 | github.com/tidwall/pretty v1.2.1 // indirect |
| 17 | github.com/tidwall/sjson v1.2.5 // indirect |
| 18 | golang.org/x/sys v0.22.0 // indirect |
| 19 | ) |
| 20 | |