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