-
Notifications
You must be signed in to change notification settings - Fork 0
/
models.go
63 lines (57 loc) · 2.05 KB
/
models.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
package gigachat
import (
"context"
"errors"
"net/http"
"net/url"
"github.com/solsw/errorhelper"
"github.com/solsw/httphelper/rest"
"github.com/solsw/sber/common"
)
// Output model object.
type Model struct {
// https://developers.sber.ru/docs/ru/gigachat/api/reference/rest/get-models#responses
Id string `json:"id"`
Object string `json:"object"`
OwnedBy string `json:"owned_by"`
}
// Output models object.
type ModelsOut struct {
// https://developers.sber.ru/docs/ru/gigachat/api/reference/rest/get-models#responses
Object string `json:"object"`
Data []Model `json:"data"`
}
// Models [возвращает] массив объектов с данными доступных моделей.
//
// [возвращает]: https://developers.sber.ru/docs/ru/gigachat/api/reference/rest/get-models
func Models(ctx context.Context, accessToken string) (*ModelsOut, error) {
if accessToken == "" {
return nil, errorhelper.CallerError(errors.New("no accessToken"))
}
u, err := url.JoinPath(baseApiUrl, "models")
if err != nil {
return nil, errorhelper.CallerError(err)
}
h := make(http.Header)
h.Set("Authorization", "Bearer "+accessToken)
out, err := rest.BodyJson[ModelsOut, common.OutError](
ctx, http.DefaultClient, http.MethodGet, u, h, nil, rest.IsNotStatusOK)
return out, errorhelper.CallerError(err)
}
// ModelsModel [возвращает] объект с описанием указанной модели.
//
// [возвращает]: https://developers.sber.ru/docs/ru/gigachat/api/reference/rest/get-model
func ModelsModel(ctx context.Context, accessToken string, model string) (*Model, error) {
if accessToken == "" {
return nil, errorhelper.CallerError(errors.New("no accessToken"))
}
u, err := url.JoinPath(baseApiUrl, "models", model)
if err != nil {
return nil, errorhelper.CallerError(err)
}
h := make(http.Header)
h.Set("Authorization", "Bearer "+accessToken)
out, err := rest.BodyJson[Model, common.OutError](
ctx, http.DefaultClient, http.MethodGet, u, h, nil, rest.IsNotStatusOK)
return out, errorhelper.CallerError(err)
}