mirror of
https://github.com/mudler/LocalAI.git
synced 2026-01-30 17:22:43 -05:00
* chore: extract reasoning to its own package Signed-off-by: Ettore Di Giacinto <mudler@localai.io> * make sure we detect thinking tokens from template Signed-off-by: Ettore Di Giacinto <mudler@localai.io> * Allow to override via config, add tests Signed-off-by: Ettore Di Giacinto <mudler@localai.io> --------- Signed-off-by: Ettore Di Giacinto <mudler@localai.io>
14 lines
208 B
Go
14 lines
208 B
Go
package reasoning_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
. "github.com/onsi/ginkgo/v2"
|
|
. "github.com/onsi/gomega"
|
|
)
|
|
|
|
func TestReasoning(t *testing.T) {
|
|
RegisterFailHandler(Fail)
|
|
RunSpecs(t, "Reasoning test suite")
|
|
}
|