-
Notifications
You must be signed in to change notification settings - Fork 134
Expand file tree
/
Copy pathbetaskillversion.go
More file actions
373 lines (349 loc) · 13.7 KB
/
betaskillversion.go
File metadata and controls
373 lines (349 loc) · 13.7 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
363
364
365
366
367
368
369
370
371
372
373
// 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"
)
// BetaSkillVersionService 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 [NewBetaSkillVersionService] method instead.
type BetaSkillVersionService struct {
Options []option.RequestOption
}
// NewBetaSkillVersionService 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 NewBetaSkillVersionService(opts ...option.RequestOption) (r BetaSkillVersionService) {
r = BetaSkillVersionService{}
r.Options = opts
return
}
// Create Skill Version
func (r *BetaSkillVersionService) New(ctx context.Context, skillID string, params BetaSkillVersionNewParams, opts ...option.RequestOption) (res *BetaSkillVersionNewResponse, 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...)
if skillID == "" {
err = errors.New("missing required skill_id parameter")
return nil, err
}
path := fmt.Sprintf("v1/skills/%s/versions?beta=true", skillID)
err = requestconfig.ExecuteNewRequest(ctx, http.MethodPost, path, params, &res, opts...)
return res, err
}
// Get Skill Version
func (r *BetaSkillVersionService) Get(ctx context.Context, version string, params BetaSkillVersionGetParams, opts ...option.RequestOption) (res *BetaSkillVersionGetResponse, 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...)
if params.SkillID == "" {
err = errors.New("missing required skill_id parameter")
return nil, err
}
if version == "" {
err = errors.New("missing required version parameter")
return nil, err
}
path := fmt.Sprintf("v1/skills/%s/versions/%s?beta=true", params.SkillID, version)
err = requestconfig.ExecuteNewRequest(ctx, http.MethodGet, path, nil, &res, opts...)
return res, err
}
// List Skill Versions
func (r *BetaSkillVersionService) List(ctx context.Context, skillID string, params BetaSkillVersionListParams, opts ...option.RequestOption) (res *pagination.PageCursor[BetaSkillVersionListResponse], 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...)
if skillID == "" {
err = errors.New("missing required skill_id parameter")
return nil, err
}
path := fmt.Sprintf("v1/skills/%s/versions?beta=true", skillID)
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 Skill Versions
func (r *BetaSkillVersionService) ListAutoPaging(ctx context.Context, skillID string, params BetaSkillVersionListParams, opts ...option.RequestOption) *pagination.PageCursorAutoPager[BetaSkillVersionListResponse] {
return pagination.NewPageCursorAutoPager(r.List(ctx, skillID, params, opts...))
}
// Delete Skill Version
func (r *BetaSkillVersionService) Delete(ctx context.Context, version string, params BetaSkillVersionDeleteParams, opts ...option.RequestOption) (res *BetaSkillVersionDeleteResponse, 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...)
if params.SkillID == "" {
err = errors.New("missing required skill_id parameter")
return nil, err
}
if version == "" {
err = errors.New("missing required version parameter")
return nil, err
}
path := fmt.Sprintf("v1/skills/%s/versions/%s?beta=true", params.SkillID, version)
err = requestconfig.ExecuteNewRequest(ctx, http.MethodDelete, path, nil, &res, opts...)
return res, err
}
type BetaSkillVersionNewResponse struct {
// Unique identifier for the skill version.
//
// The format and length of IDs may change over time.
ID string `json:"id" api:"required"`
// ISO 8601 timestamp of when the skill version was created.
CreatedAt string `json:"created_at" api:"required"`
// Description of the skill version.
//
// This is extracted from the SKILL.md file in the skill upload.
Description string `json:"description" api:"required"`
// Directory name of the skill version.
//
// This is the top-level directory name that was extracted from the uploaded files.
Directory string `json:"directory" api:"required"`
// Human-readable name of the skill version.
//
// This is extracted from the SKILL.md file in the skill upload.
Name string `json:"name" api:"required"`
// Identifier for the skill that this version belongs to.
SkillID string `json:"skill_id" api:"required"`
// Object type.
//
// For Skill Versions, this is always `"skill_version"`.
Type string `json:"type" api:"required"`
// Version identifier for the skill.
//
// Each version is identified by a Unix epoch timestamp (e.g., "1759178010641129").
Version string `json:"version" api:"required"`
// JSON contains metadata for fields, check presence with [respjson.Field.Valid].
JSON struct {
ID respjson.Field
CreatedAt respjson.Field
Description respjson.Field
Directory respjson.Field
Name respjson.Field
SkillID respjson.Field
Type respjson.Field
Version respjson.Field
ExtraFields map[string]respjson.Field
raw string
} `json:"-"`
}
// Returns the unmodified JSON received from the API
func (r BetaSkillVersionNewResponse) RawJSON() string { return r.JSON.raw }
func (r *BetaSkillVersionNewResponse) UnmarshalJSON(data []byte) error {
return apijson.UnmarshalRoot(data, r)
}
type BetaSkillVersionGetResponse struct {
// Unique identifier for the skill version.
//
// The format and length of IDs may change over time.
ID string `json:"id" api:"required"`
// ISO 8601 timestamp of when the skill version was created.
CreatedAt string `json:"created_at" api:"required"`
// Description of the skill version.
//
// This is extracted from the SKILL.md file in the skill upload.
Description string `json:"description" api:"required"`
// Directory name of the skill version.
//
// This is the top-level directory name that was extracted from the uploaded files.
Directory string `json:"directory" api:"required"`
// Human-readable name of the skill version.
//
// This is extracted from the SKILL.md file in the skill upload.
Name string `json:"name" api:"required"`
// Identifier for the skill that this version belongs to.
SkillID string `json:"skill_id" api:"required"`
// Object type.
//
// For Skill Versions, this is always `"skill_version"`.
Type string `json:"type" api:"required"`
// Version identifier for the skill.
//
// Each version is identified by a Unix epoch timestamp (e.g., "1759178010641129").
Version string `json:"version" api:"required"`
// JSON contains metadata for fields, check presence with [respjson.Field.Valid].
JSON struct {
ID respjson.Field
CreatedAt respjson.Field
Description respjson.Field
Directory respjson.Field
Name respjson.Field
SkillID respjson.Field
Type respjson.Field
Version respjson.Field
ExtraFields map[string]respjson.Field
raw string
} `json:"-"`
}
// Returns the unmodified JSON received from the API
func (r BetaSkillVersionGetResponse) RawJSON() string { return r.JSON.raw }
func (r *BetaSkillVersionGetResponse) UnmarshalJSON(data []byte) error {
return apijson.UnmarshalRoot(data, r)
}
type BetaSkillVersionListResponse struct {
// Unique identifier for the skill version.
//
// The format and length of IDs may change over time.
ID string `json:"id" api:"required"`
// ISO 8601 timestamp of when the skill version was created.
CreatedAt string `json:"created_at" api:"required"`
// Description of the skill version.
//
// This is extracted from the SKILL.md file in the skill upload.
Description string `json:"description" api:"required"`
// Directory name of the skill version.
//
// This is the top-level directory name that was extracted from the uploaded files.
Directory string `json:"directory" api:"required"`
// Human-readable name of the skill version.
//
// This is extracted from the SKILL.md file in the skill upload.
Name string `json:"name" api:"required"`
// Identifier for the skill that this version belongs to.
SkillID string `json:"skill_id" api:"required"`
// Object type.
//
// For Skill Versions, this is always `"skill_version"`.
Type string `json:"type" api:"required"`
// Version identifier for the skill.
//
// Each version is identified by a Unix epoch timestamp (e.g., "1759178010641129").
Version string `json:"version" api:"required"`
// JSON contains metadata for fields, check presence with [respjson.Field.Valid].
JSON struct {
ID respjson.Field
CreatedAt respjson.Field
Description respjson.Field
Directory respjson.Field
Name respjson.Field
SkillID respjson.Field
Type respjson.Field
Version respjson.Field
ExtraFields map[string]respjson.Field
raw string
} `json:"-"`
}
// Returns the unmodified JSON received from the API
func (r BetaSkillVersionListResponse) RawJSON() string { return r.JSON.raw }
func (r *BetaSkillVersionListResponse) UnmarshalJSON(data []byte) error {
return apijson.UnmarshalRoot(data, r)
}
type BetaSkillVersionDeleteResponse struct {
// Version identifier for the skill.
//
// Each version is identified by a Unix epoch timestamp (e.g., "1759178010641129").
ID string `json:"id" api:"required"`
// Deleted object type.
//
// For Skill Versions, this is always `"skill_version_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 BetaSkillVersionDeleteResponse) RawJSON() string { return r.JSON.raw }
func (r *BetaSkillVersionDeleteResponse) UnmarshalJSON(data []byte) error {
return apijson.UnmarshalRoot(data, r)
}
type BetaSkillVersionNewParams struct {
// 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 BetaSkillVersionNewParams) 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 BetaSkillVersionGetParams struct {
// Unique identifier for the skill.
//
// The format and length of IDs may change over time.
SkillID string `path:"skill_id" api:"required" json:"-"`
// Optional header to specify the beta version(s) you want to use.
Betas []AnthropicBeta `header:"anthropic-beta,omitzero" json:"-"`
paramObj
}
type BetaSkillVersionListParams struct {
// Number of items to return per page.
//
// Defaults to `20`. Ranges from `1` to `1000`.
Limit param.Opt[int64] `query:"limit,omitzero" json:"-"`
// Optionally set to the `next_page` token from the previous response.
Page param.Opt[string] `query:"page,omitzero" json:"-"`
// Optional header to specify the beta version(s) you want to use.
Betas []AnthropicBeta `header:"anthropic-beta,omitzero" json:"-"`
paramObj
}
// URLQuery serializes [BetaSkillVersionListParams]'s query parameters as
// `url.Values`.
func (r BetaSkillVersionListParams) URLQuery() (v url.Values, err error) {
return apiquery.MarshalWithSettings(r, apiquery.QuerySettings{
ArrayFormat: apiquery.ArrayQueryFormatComma,
NestedFormat: apiquery.NestedQueryFormatBrackets,
})
}
type BetaSkillVersionDeleteParams struct {
// Unique identifier for the skill.
//
// The format and length of IDs may change over time.
SkillID string `path:"skill_id" api:"required" json:"-"`
// Optional header to specify the beta version(s) you want to use.
Betas []AnthropicBeta `header:"anthropic-beta,omitzero" json:"-"`
paramObj
}