Files
httprunner/uixt/ai/ai_test.go
2025-03-05 11:04:02 +08:00

12 lines
191 B
Go

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