Files
httprunner/pkg/ai/ai_test.go
2025-02-08 14:46:24 +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)
}