...
1 package runtimeapi
2
3
4
5
6
7
8
9 import (
10 "context"
11 "github.com/Azure/azure-sdk-for-go/services/cognitiveservices/v2.0/luis/runtime"
12 "github.com/gofrs/uuid"
13 )
14
15
16 type PredictionClientAPI interface {
17 Resolve(ctx context.Context, appID uuid.UUID, query string, timezoneOffset *float64, verbose *bool, staging *bool, spellCheck *bool, bingSpellCheckSubscriptionKey string, logParameter *bool) (result runtime.LuisResult, err error)
18 }
19
20 var _ PredictionClientAPI = (*runtime.PredictionClient)(nil)
21
View as plain text