mirror of
https://github.com/httprunner/httprunner.git
synced 2026-05-21 16:23:16 +08:00
14 lines
192 B
Go
14 lines
192 B
Go
package ai
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestOption(t *testing.T) {
|
|
options := NewAIService(
|
|
WithCVService(CVServiceTypeOpenCV),
|
|
WithLLMService(LLMServiceTypeUITARS),
|
|
)
|
|
t.Log(options)
|
|
}
|