package e2e_test import ( "os" "testing" . "github.com/onsi/ginkgo/v2" . "github.com/onsi/gomega" ) func TestE2E(t *testing.T) { RegisterFailHandler(Fail) RunSpecs(t, "E2E test suite") } var testModel = os.Getenv("LOCALAGENT_MODEL") var apiURL = os.Getenv("LOCALAI_API_URL") var localagentURL = os.Getenv("LOCALAGENT_API_URL") func init() { if testModel == "" { testModel = "hermes-2-pro-mistral" } if apiURL == "" { apiURL = "http://192.168.68.113:8080" } }