Files
httprunner/pkg/uixt/ai/ai_test.go
lilong.129 3038fb7430 fix: errors
2025-02-09 10:51:03 +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)
}