...
1
2
3
4
5
6
7
8
9
10 package runtime
11
12 import original "github.com/Azure/azure-sdk-for-go/services/cognitiveservices/v3.0/luis/runtime"
13
14 type BaseClient = original.BaseClient
15 type DynamicList = original.DynamicList
16 type Error = original.Error
17 type ErrorBody = original.ErrorBody
18 type ExternalEntity = original.ExternalEntity
19 type Intent = original.Intent
20 type Prediction = original.Prediction
21 type PredictionClient = original.PredictionClient
22 type PredictionRequest = original.PredictionRequest
23 type PredictionRequestOptions = original.PredictionRequestOptions
24 type PredictionResponse = original.PredictionResponse
25 type RequestList = original.RequestList
26 type Sentiment = original.Sentiment
27
28 func New(endpoint string) BaseClient {
29 return original.New(endpoint)
30 }
31 func NewPredictionClient(endpoint string) PredictionClient {
32 return original.NewPredictionClient(endpoint)
33 }
34 func NewWithoutDefaults(endpoint string) BaseClient {
35 return original.NewWithoutDefaults(endpoint)
36 }
37 func UserAgent() string {
38 return original.UserAgent() + " profiles/latest"
39 }
40 func Version() string {
41 return original.Version()
42 }
43
View as plain text