Golang bindings initial working version(#534)

* WIP

* Fix includes

* Try to fix linking issues

* Refinements

* allow to load MPT and llama models too

* cleanup, add example, add README
This commit is contained in:
Ettore Di Giacinto
2023-05-15 18:45:56 +02:00
committed by GitHub
parent 2433902460
commit 3f63cc6b47
11 changed files with 801 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
package gpt4all_test
import (
"testing"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
)
func TestGPT(t *testing.T) {
RegisterFailHandler(Fail)
RunSpecs(t, "go-gpt4all-j test suite")
}