-
Notifications
You must be signed in to change notification settings - Fork 151
Expand file tree
/
Copy pathbetaskill.go
More file actions
362 lines (338 loc) · 12.8 KB
/
betaskill.go
File metadata and controls
362 lines (338 loc) · 12.8 KB
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
package anthropic
import (
"bytes"
"context"
"errors"
"fmt"
"io"
"mime/multipart"
"net/http"
"net/url"
"slices"
"github.com/anthropics/anthropic-sdk-go/internal/apiform"
"github.com/anthropics/anthropic-sdk-go/internal/apijson"
"github.com/anthropics/anthropic-sdk-go/internal/apiquery"
"github.com/anthropics/anthropic-sdk-go/internal/requestconfig"
"github.com/anthropics/anthropic-sdk-go/option"
"github.com/anthropics/anthropic-sdk-go/packages/pagination"
"github.com/anthropics/anthropic-sdk-go/packages/param"
"github.com/anthropics/anthropic-sdk-go/packages/respjson"
)
// BetaSkillService contains methods and other services that help with interacting
// with the anthropic API.
//
// Note, unlike clients, this service does not read variables from the environment
// automatically. You should not instantiate this service directly, and instead use
// the [NewBetaSkillService] method instead.
type BetaSkillService struct {
Options []option.RequestOption
Versions BetaSkillVersionService
}
// NewBetaSkillService generates a new service that applies the given options to
// each request. These options are applied after the parent client's options (if
// there is one), and before any request-specific options.
func NewBetaSkillService(opts ...option.RequestOption) (r BetaSkillService) {
r = BetaSkillService{}
r.Options = opts
r.Versions = NewBetaSkillVersionService(opts...)
return
}
// Create Skill
func (r *BetaSkillService) New(ctx context.Context, params BetaSkillNewParams, opts ...option.RequestOption) (res *BetaSkillNewResponse, err error) {
for _, v := range params.Betas {
opts = append(opts, option.WithHeaderAdd("anthropic-beta", fmt.Sprintf("%v", v)))
}
opts = slices.Concat(r.Options, opts)
opts = append([]option.RequestOption{option.WithHeader("anthropic-beta", "skills-2025-10-02")}, opts...)
path := "v1/skills?beta=true"
err = requestconfig.ExecuteNewRequest(ctx, http.MethodPost, path, params, &res, opts...)
return res, err
}
// Get Skill
func (r *BetaSkillService) Get(ctx context.Context, skillID string, query BetaSkillGetParams, opts ...option.RequestOption) (res *BetaSkillGetResponse, err error) {
for _, v := range query.Betas {
opts = append(opts, option.WithHeaderAdd("anthropic-beta", fmt.Sprintf("%v", v)))
}
opts = slices.Concat(r.Options, opts)
opts = append([]option.RequestOption{option.WithHeader("anthropic-beta", "skills-2025-10-02")}, opts...)
if skillID == "" {
err = errors.New("missing required skill_id parameter")
return nil, err
}
path := fmt.Sprintf("v1/skills/%s?beta=true", skillID)
err = requestconfig.ExecuteNewRequest(ctx, http.MethodGet, path, nil, &res, opts...)
return res, err
}
// List Skills
func (r *BetaSkillService) List(ctx context.Context, params BetaSkillListParams, opts ...option.RequestOption) (res *pagination.PageCursor[BetaSkillListResponse], err error) {
var raw *http.Response
for _, v := range params.Betas {
opts = append(opts, option.WithHeaderAdd("anthropic-beta", fmt.Sprintf("%v", v)))
}
opts = slices.Concat(r.Options, opts)
opts = append([]option.RequestOption{option.WithHeader("anthropic-beta", "skills-2025-10-02"), option.WithResponseInto(&raw)}, opts...)
path := "v1/skills?beta=true"
cfg, err := requestconfig.NewRequestConfig(ctx, http.MethodGet, path, params, &res, opts...)
if err != nil {
return nil, err
}
err = cfg.Execute()
if err != nil {
return nil, err
}
res.SetPageConfig(cfg, raw)
return res, nil
}
// List Skills
func (r *BetaSkillService) ListAutoPaging(ctx context.Context, params BetaSkillListParams, opts ...option.RequestOption) *pagination.PageCursorAutoPager[BetaSkillListResponse] {
return pagination.NewPageCursorAutoPager(r.List(ctx, params, opts...))
}
// Delete Skill
func (r *BetaSkillService) Delete(ctx context.Context, skillID string, body BetaSkillDeleteParams, opts ...option.RequestOption) (res *BetaSkillDeleteResponse, err error) {
for _, v := range body.Betas {
opts = append(opts, option.WithHeaderAdd("anthropic-beta", fmt.Sprintf("%v", v)))
}
opts = slices.Concat(r.Options, opts)
opts = append([]option.RequestOption{option.WithHeader("anthropic-beta", "skills-2025-10-02")}, opts...)
if skillID == "" {
err = errors.New("missing required skill_id parameter")
return nil, err
}
path := fmt.Sprintf("v1/skills/%s?beta=true", skillID)
err = requestconfig.ExecuteNewRequest(ctx, http.MethodDelete, path, nil, &res, opts...)
return res, err
}
type BetaSkillNewResponse struct {
// Unique identifier for the skill.
//
// The format and length of IDs may change over time.
ID string `json:"id" api:"required"`
// ISO 8601 timestamp of when the skill was created.
CreatedAt string `json:"created_at" api:"required"`
// Display title for the skill.
//
// This is a human-readable label that is not included in the prompt sent to the
// model.
DisplayTitle string `json:"display_title" api:"required"`
// The latest version identifier for the skill.
//
// This represents the most recent version of the skill that has been created.
LatestVersion string `json:"latest_version" api:"required"`
// Source of the skill.
//
// This may be one of the following values:
//
// - `"custom"`: the skill was created by a user
// - `"anthropic"`: the skill was created by Anthropic
Source string `json:"source" api:"required"`
// Object type.
//
// For Skills, this is always `"skill"`.
Type string `json:"type" api:"required"`
// ISO 8601 timestamp of when the skill was last updated.
UpdatedAt string `json:"updated_at" api:"required"`
// JSON contains metadata for fields, check presence with [respjson.Field.Valid].
JSON struct {
ID respjson.Field
CreatedAt respjson.Field
DisplayTitle respjson.Field
LatestVersion respjson.Field
Source respjson.Field
Type respjson.Field
UpdatedAt respjson.Field
ExtraFields map[string]respjson.Field
raw string
} `json:"-"`
}
// Returns the unmodified JSON received from the API
func (r BetaSkillNewResponse) RawJSON() string { return r.JSON.raw }
func (r *BetaSkillNewResponse) UnmarshalJSON(data []byte) error {
return apijson.UnmarshalRoot(data, r)
}
type BetaSkillGetResponse struct {
// Unique identifier for the skill.
//
// The format and length of IDs may change over time.
ID string `json:"id" api:"required"`
// ISO 8601 timestamp of when the skill was created.
CreatedAt string `json:"created_at" api:"required"`
// Display title for the skill.
//
// This is a human-readable label that is not included in the prompt sent to the
// model.
DisplayTitle string `json:"display_title" api:"required"`
// The latest version identifier for the skill.
//
// This represents the most recent version of the skill that has been created.
LatestVersion string `json:"latest_version" api:"required"`
// Source of the skill.
//
// This may be one of the following values:
//
// - `"custom"`: the skill was created by a user
// - `"anthropic"`: the skill was created by Anthropic
Source string `json:"source" api:"required"`
// Object type.
//
// For Skills, this is always `"skill"`.
Type string `json:"type" api:"required"`
// ISO 8601 timestamp of when the skill was last updated.
UpdatedAt string `json:"updated_at" api:"required"`
// JSON contains metadata for fields, check presence with [respjson.Field.Valid].
JSON struct {
ID respjson.Field
CreatedAt respjson.Field
DisplayTitle respjson.Field
LatestVersion respjson.Field
Source respjson.Field
Type respjson.Field
UpdatedAt respjson.Field
ExtraFields map[string]respjson.Field
raw string
} `json:"-"`
}
// Returns the unmodified JSON received from the API
func (r BetaSkillGetResponse) RawJSON() string { return r.JSON.raw }
func (r *BetaSkillGetResponse) UnmarshalJSON(data []byte) error {
return apijson.UnmarshalRoot(data, r)
}
type BetaSkillListResponse struct {
// Unique identifier for the skill.
//
// The format and length of IDs may change over time.
ID string `json:"id" api:"required"`
// ISO 8601 timestamp of when the skill was created.
CreatedAt string `json:"created_at" api:"required"`
// Display title for the skill.
//
// This is a human-readable label that is not included in the prompt sent to the
// model.
DisplayTitle string `json:"display_title" api:"required"`
// The latest version identifier for the skill.
//
// This represents the most recent version of the skill that has been created.
LatestVersion string `json:"latest_version" api:"required"`
// Source of the skill.
//
// This may be one of the following values:
//
// - `"custom"`: the skill was created by a user
// - `"anthropic"`: the skill was created by Anthropic
Source string `json:"source" api:"required"`
// Object type.
//
// For Skills, this is always `"skill"`.
Type string `json:"type" api:"required"`
// ISO 8601 timestamp of when the skill was last updated.
UpdatedAt string `json:"updated_at" api:"required"`
// JSON contains metadata for fields, check presence with [respjson.Field.Valid].
JSON struct {
ID respjson.Field
CreatedAt respjson.Field
DisplayTitle respjson.Field
LatestVersion respjson.Field
Source respjson.Field
Type respjson.Field
UpdatedAt respjson.Field
ExtraFields map[string]respjson.Field
raw string
} `json:"-"`
}
// Returns the unmodified JSON received from the API
func (r BetaSkillListResponse) RawJSON() string { return r.JSON.raw }
func (r *BetaSkillListResponse) UnmarshalJSON(data []byte) error {
return apijson.UnmarshalRoot(data, r)
}
type BetaSkillDeleteResponse struct {
// Unique identifier for the skill.
//
// The format and length of IDs may change over time.
ID string `json:"id" api:"required"`
// Deleted object type.
//
// For Skills, this is always `"skill_deleted"`.
Type string `json:"type" api:"required"`
// JSON contains metadata for fields, check presence with [respjson.Field.Valid].
JSON struct {
ID respjson.Field
Type respjson.Field
ExtraFields map[string]respjson.Field
raw string
} `json:"-"`
}
// Returns the unmodified JSON received from the API
func (r BetaSkillDeleteResponse) RawJSON() string { return r.JSON.raw }
func (r *BetaSkillDeleteResponse) UnmarshalJSON(data []byte) error {
return apijson.UnmarshalRoot(data, r)
}
type BetaSkillNewParams struct {
// Display title for the skill.
//
// This is a human-readable label that is not included in the prompt sent to the
// model.
DisplayTitle param.Opt[string] `json:"display_title,omitzero"`
// Files to upload for the skill.
//
// All files must be in the same top-level directory and must include a SKILL.md
// file at the root of that directory.
Files []io.Reader `json:"files,omitzero" format:"binary"`
// Optional header to specify the beta version(s) you want to use.
Betas []AnthropicBeta `header:"anthropic-beta,omitzero" json:"-"`
paramObj
}
func (r BetaSkillNewParams) MarshalMultipart() (data []byte, contentType string, err error) {
buf := bytes.NewBuffer(nil)
writer := multipart.NewWriter(buf)
err = apiform.MarshalRoot(r, writer)
if err == nil {
err = apiform.WriteExtras(writer, r.ExtraFields())
}
if err != nil {
writer.Close()
return nil, "", err
}
err = writer.Close()
if err != nil {
return nil, "", err
}
return buf.Bytes(), writer.FormDataContentType(), nil
}
type BetaSkillGetParams struct {
// Optional header to specify the beta version(s) you want to use.
Betas []AnthropicBeta `header:"anthropic-beta,omitzero" json:"-"`
paramObj
}
type BetaSkillListParams struct {
// Pagination token for fetching a specific page of results.
//
// Pass the value from a previous response's `next_page` field to get the next page
// of results.
Page param.Opt[string] `query:"page,omitzero" json:"-"`
// Filter skills by source.
//
// If provided, only skills from the specified source will be returned:
//
// - `"custom"`: only return user-created skills
// - `"anthropic"`: only return Anthropic-created skills
Source param.Opt[string] `query:"source,omitzero" json:"-"`
// Number of results to return per page.
//
// Maximum value is 100. Defaults to 20.
Limit param.Opt[int64] `query:"limit,omitzero" json:"-"`
// Optional header to specify the beta version(s) you want to use.
Betas []AnthropicBeta `header:"anthropic-beta,omitzero" json:"-"`
paramObj
}
// URLQuery serializes [BetaSkillListParams]'s query parameters as `url.Values`.
func (r BetaSkillListParams) URLQuery() (v url.Values, err error) {
return apiquery.MarshalWithSettings(r, apiquery.QuerySettings{
ArrayFormat: apiquery.ArrayQueryFormatComma,
NestedFormat: apiquery.NestedQueryFormatBrackets,
})
}
type BetaSkillDeleteParams struct {
// Optional header to specify the beta version(s) you want to use.
Betas []AnthropicBeta `header:"anthropic-beta,omitzero" json:"-"`
paramObj
}