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