Files
httprunner/uixt/ai/ai_test.go
2025-03-19 22:28:42 +08:00

14 lines
192 B
Go

package ai
import (
"testing"
)
func TestOption(t *testing.T) {
options := NewAIService(
WithCVService(CVServiceTypeOpenCV),
WithLLMService(LLMServiceTypeUITARS),
)
t.Log(options)
}