This repository has been archived by the owner on Oct 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
client_factory.go
77 lines (67 loc) · 2.82 KB
/
client_factory.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
//go:build go1.18
// +build go1.18
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is regenerated.
package azopenai
import (
"github.com/Azure/azure-sdk-for-go/sdk/azcore"
"github.com/Azure/azure-sdk-for-go/sdk/azcore/arm"
"github.com/Azure/azure-sdk-for-go/sdk/azcore/policy"
)
// ClientFactory is a client factory used to create any client in this module.
// Don't use this type directly, use NewClientFactory instead.
type ClientFactory struct {
credential azcore.TokenCredential
options *arm.ClientOptions
endpoint string
apiKey string
}
// NewClientFactory creates a new instance of ClientFactory with the specified values.
// The parameter values will be propagated to any client created from this factory.
// - endpoint - the endpoint to request.
// - credential - used to authorize requests. Usually a credential from azidentity.
// - options - pass nil to accept the default values.
func NewClientFactory(endpoint string, credential azcore.TokenCredential, options *arm.ClientOptions) (*ClientFactory, error) {
_, err := arm.NewClient(moduleName+".ClientFactory", moduleVersion, credential, options)
if err != nil {
return nil, err
}
return &ClientFactory{
endpoint: endpoint,
credential: credential,
options: options.Clone(),
}, nil
}
// NewClientFactoryFromAPIKey creates a new instance of ClientFactory with the specified values.
// The parameter values will be propagated to any client created from this factory.
// - endpoint - the endpoint to request.
// - apiKey - used to authorize requests.
func NewClientFactoryFromAPIKey(endpoint string, apiKey string) (*ClientFactory, error) {
return &ClientFactory{
endpoint: endpoint,
apiKey: apiKey,
}, nil
}
func (c *ClientFactory) NewCompletionsClient() *CompletionsClient {
return createClient(c, NewCompletionsClient, NewCompletionsClientFromAPIKey)
}
func (c *ClientFactory) NewEmbeddingsClient() *EmbeddingsClient {
return createClient(c, NewEmbeddingsClient, NewEmbeddingsClientFromAPIKey)
}
func (c *ClientFactory) NewChatCompletionsClient() *ChatCompletionsClient {
return createClient(c, NewChatCompletionsClient, NewChatCompletionsClientFromAPIKey)
}
func createClient[T any](
c *ClientFactory,
newClient func(endpoint string, cred azcore.TokenCredential, options *arm.ClientOptions) (T, error),
newClientFromAPIKey func(endpoint string, apiKey string, options *policy.ClientOptions) (T, error),
) T {
if c.apiKey != "" {
subClient, _ := newClientFromAPIKey(c.endpoint, c.apiKey, &c.options.ClientOptions)
return subClient
}
subClient, _ := newClient(c.endpoint, c.credential, c.options)
return subClient
}