mirror of
https://github.com/nomic-ai/gpt4all
synced 2024-11-02 09:40:42 +00:00
3f63cc6b47
* WIP * Fix includes * Try to fix linking issues * Refinements * allow to load MPT and llama models too * cleanup, add example, add README
21 lines
587 B
Modula-2
21 lines
587 B
Modula-2
module github.com/nomic-ai/gpt4all/gpt4all-bindings/golang
|
|
|
|
go 1.19
|
|
|
|
require (
|
|
github.com/onsi/ginkgo/v2 v2.9.4
|
|
github.com/onsi/gomega v1.27.6
|
|
)
|
|
|
|
require (
|
|
github.com/go-logr/logr v1.2.4 // indirect
|
|
github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 // indirect
|
|
github.com/google/go-cmp v0.5.9 // indirect
|
|
github.com/google/pprof v0.0.0-20210407192527-94a9f03dee38 // indirect
|
|
golang.org/x/net v0.9.0 // indirect
|
|
golang.org/x/sys v0.7.0 // indirect
|
|
golang.org/x/text v0.9.0 // indirect
|
|
golang.org/x/tools v0.8.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|