refactor: select model type by env LLM_MODEL_USE

This commit is contained in:
lilong.129
2025-04-29 23:14:12 +08:00
parent 3ffa5d96d2
commit cc9a527274
5 changed files with 19 additions and 20 deletions
+1 -1
View File
@@ -10,7 +10,7 @@ import (
)
func createAsserter(t *testing.T) *Asserter {
asserter, err := NewAsserter(context.Background(), LLMServiceTypeUITARS)
asserter, err := NewAsserter(context.Background())
require.NoError(t, err)
return asserter
}