-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtool.go
483 lines (413 loc) · 16 KB
/
tool.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
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
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
package oxp
import (
"context"
"net/http"
"reflect"
"github.com/OpenExecProtocol/oxp-go/internal/apijson"
"github.com/OpenExecProtocol/oxp-go/internal/param"
"github.com/OpenExecProtocol/oxp-go/internal/requestconfig"
"github.com/OpenExecProtocol/oxp-go/option"
"github.com/OpenExecProtocol/oxp-go/shared"
"github.com/tidwall/gjson"
)
// ToolService contains methods and other services that help with interacting with
// the oxp 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 [NewToolService] method instead.
type ToolService struct {
Options []option.RequestOption
}
// NewToolService 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 NewToolService(opts ...option.RequestOption) (r *ToolService) {
r = &ToolService{}
r.Options = opts
return
}
// Returns a list of tool definitions.
func (r *ToolService) List(ctx context.Context, query ToolListParams, opts ...option.RequestOption) (res *ToolListResponse, err error) {
opts = append(r.Options[:], opts...)
path := "tools"
err = requestconfig.ExecuteNewRequest(ctx, http.MethodGet, path, query, &res, opts...)
return
}
// Calls a tool with the given parameters.
func (r *ToolService) Call(ctx context.Context, body ToolCallParams, opts ...option.RequestOption) (res *ToolCallResponse, err error) {
opts = append(r.Options[:], opts...)
path := "tools/call"
err = requestconfig.ExecuteNewRequest(ctx, http.MethodPost, path, body, &res, opts...)
return
}
type ToolListResponse struct {
Items []ToolListResponseItem `json:"items,required"`
Schema string `json:"$schema" format:"uri"`
JSON toolListResponseJSON `json:"-"`
}
// toolListResponseJSON contains the JSON metadata for the struct
// [ToolListResponse]
type toolListResponseJSON struct {
Items apijson.Field
Schema apijson.Field
raw string
ExtraFields map[string]apijson.Field
}
func (r *ToolListResponse) UnmarshalJSON(data []byte) (err error) {
return apijson.UnmarshalRoot(data, r)
}
func (r toolListResponseJSON) RawJSON() string {
return r.raw
}
type ToolListResponseItem struct {
// A tool's unique identifier in the format 'Toolkit.Tool[@version]', where
// @version is optional.
ID string `json:"id,required"`
// A plain language explanation of when and how the tool should be used.
Description string `json:"description,required"`
// The tool's name. Only allows alphanumeric characters, underscores, and dashes.
Name string `json:"name,required"`
// A tool's semantic version in the format 'x.y.z', where x, y, and z are integers.
Version string `json:"version,required"`
// JSON Schema describing the input parameters for the tool. Supports standard JSON
// Schema validation but excludes $ref and definitions/schemas for simplicity.
InputSchema map[string]interface{} `json:"input_schema"`
// JSON Schema describing the output parameters for the tool. Supports standard
// JSON Schema validation but excludes $ref and definitions/schemas for simplicity.
OutputSchema map[string]interface{} `json:"output_schema,nullable"`
Requirements ToolListResponseItemsRequirements `json:"requirements"`
JSON toolListResponseItemJSON `json:"-"`
}
// toolListResponseItemJSON contains the JSON metadata for the struct
// [ToolListResponseItem]
type toolListResponseItemJSON struct {
ID apijson.Field
Description apijson.Field
Name apijson.Field
Version apijson.Field
InputSchema apijson.Field
OutputSchema apijson.Field
Requirements apijson.Field
raw string
ExtraFields map[string]apijson.Field
}
func (r *ToolListResponseItem) UnmarshalJSON(data []byte) (err error) {
return apijson.UnmarshalRoot(data, r)
}
func (r toolListResponseItemJSON) RawJSON() string {
return r.raw
}
type ToolListResponseItemsRequirements struct {
Authorization []ToolListResponseItemsRequirementsAuthorization `json:"authorization"`
Secrets []ToolListResponseItemsRequirementsSecret `json:"secrets"`
// Whether the tool requires a user ID.
UserID bool `json:"user_id"`
ExtraFields map[string]interface{} `json:"-,extras"`
JSON toolListResponseItemsRequirementsJSON `json:"-"`
}
// toolListResponseItemsRequirementsJSON contains the JSON metadata for the struct
// [ToolListResponseItemsRequirements]
type toolListResponseItemsRequirementsJSON struct {
Authorization apijson.Field
Secrets apijson.Field
UserID apijson.Field
raw string
ExtraFields map[string]apijson.Field
}
func (r *ToolListResponseItemsRequirements) UnmarshalJSON(data []byte) (err error) {
return apijson.UnmarshalRoot(data, r)
}
func (r toolListResponseItemsRequirementsJSON) RawJSON() string {
return r.raw
}
type ToolListResponseItemsRequirementsAuthorization struct {
// A provider's unique identifier, allowing the tool to specify a specific
// authorization provider.
ID string `json:"id"`
// OAuth 2.0-specific authorization details.
Oauth2 ToolListResponseItemsRequirementsAuthorizationOauth2 `json:"oauth2"`
JSON toolListResponseItemsRequirementsAuthorizationJSON `json:"-"`
}
// toolListResponseItemsRequirementsAuthorizationJSON contains the JSON metadata
// for the struct [ToolListResponseItemsRequirementsAuthorization]
type toolListResponseItemsRequirementsAuthorizationJSON struct {
ID apijson.Field
Oauth2 apijson.Field
raw string
ExtraFields map[string]apijson.Field
}
func (r *ToolListResponseItemsRequirementsAuthorization) UnmarshalJSON(data []byte) (err error) {
return apijson.UnmarshalRoot(data, r)
}
func (r toolListResponseItemsRequirementsAuthorizationJSON) RawJSON() string {
return r.raw
}
// OAuth 2.0-specific authorization details.
type ToolListResponseItemsRequirementsAuthorizationOauth2 struct {
Scopes []string `json:"scopes"`
ExtraFields map[string]interface{} `json:"-,extras"`
JSON toolListResponseItemsRequirementsAuthorizationOauth2JSON `json:"-"`
}
// toolListResponseItemsRequirementsAuthorizationOauth2JSON contains the JSON
// metadata for the struct [ToolListResponseItemsRequirementsAuthorizationOauth2]
type toolListResponseItemsRequirementsAuthorizationOauth2JSON struct {
Scopes apijson.Field
raw string
ExtraFields map[string]apijson.Field
}
func (r *ToolListResponseItemsRequirementsAuthorizationOauth2) UnmarshalJSON(data []byte) (err error) {
return apijson.UnmarshalRoot(data, r)
}
func (r toolListResponseItemsRequirementsAuthorizationOauth2JSON) RawJSON() string {
return r.raw
}
type ToolListResponseItemsRequirementsSecret struct {
// The secret's unique identifier.
ID string `json:"id,required"`
ExtraFields map[string]interface{} `json:"-,extras"`
JSON toolListResponseItemsRequirementsSecretJSON `json:"-"`
}
// toolListResponseItemsRequirementsSecretJSON contains the JSON metadata for the
// struct [ToolListResponseItemsRequirementsSecret]
type toolListResponseItemsRequirementsSecretJSON struct {
ID apijson.Field
raw string
ExtraFields map[string]apijson.Field
}
func (r *ToolListResponseItemsRequirementsSecret) UnmarshalJSON(data []byte) (err error) {
return apijson.UnmarshalRoot(data, r)
}
func (r toolListResponseItemsRequirementsSecretJSON) RawJSON() string {
return r.raw
}
type ToolCallResponse struct {
Result ToolCallResponseResult `json:"result,required"`
Schema string `json:"$schema" format:"uri"`
JSON toolCallResponseJSON `json:"-"`
}
// toolCallResponseJSON contains the JSON metadata for the struct
// [ToolCallResponse]
type toolCallResponseJSON struct {
Result apijson.Field
Schema apijson.Field
raw string
ExtraFields map[string]apijson.Field
}
func (r *ToolCallResponse) UnmarshalJSON(data []byte) (err error) {
return apijson.UnmarshalRoot(data, r)
}
func (r toolCallResponseJSON) RawJSON() string {
return r.raw
}
type ToolCallResponseResult struct {
// The unique identifier (e.g. UUID) for this tool call. If an ID is not provided
// by the client, the server will generate one.
CallID string `json:"call_id"`
// The runtime duration of the tool call, in milliseconds
Duration float64 `json:"duration"`
// This field can have the runtime type of [ToolCallResponseResultObjectError].
Error interface{} `json:"error"`
Success ToolCallResponseResultSuccess `json:"success"`
// This field can have the runtime type of
// [ToolCallResponseResultObjectValueUnion].
Value interface{} `json:"value"`
JSON toolCallResponseResultJSON `json:"-"`
union ToolCallResponseResultUnion
}
// toolCallResponseResultJSON contains the JSON metadata for the struct
// [ToolCallResponseResult]
type toolCallResponseResultJSON struct {
CallID apijson.Field
Duration apijson.Field
Error apijson.Field
Success apijson.Field
Value apijson.Field
raw string
ExtraFields map[string]apijson.Field
}
func (r toolCallResponseResultJSON) RawJSON() string {
return r.raw
}
func (r *ToolCallResponseResult) UnmarshalJSON(data []byte) (err error) {
*r = ToolCallResponseResult{}
err = apijson.UnmarshalRoot(data, &r.union)
if err != nil {
return err
}
return apijson.Port(r.union, &r)
}
// AsUnion returns a [ToolCallResponseResultUnion] interface which you can cast to
// the specific types for more type safety.
//
// Possible runtime types of the union are [ToolCallResponseResultObject],
// [ToolCallResponseResultObject].
func (r ToolCallResponseResult) AsUnion() ToolCallResponseResultUnion {
return r.union
}
// Union satisfied by [ToolCallResponseResultObject] or
// [ToolCallResponseResultObject].
type ToolCallResponseResultUnion interface {
implementsToolCallResponseResult()
}
func init() {
apijson.RegisterUnion(
reflect.TypeOf((*ToolCallResponseResultUnion)(nil)).Elem(),
"",
apijson.UnionVariant{
TypeFilter: gjson.JSON,
Type: reflect.TypeOf(ToolCallResponseResultObject{}),
},
apijson.UnionVariant{
TypeFilter: gjson.JSON,
Type: reflect.TypeOf(ToolCallResponseResultObject{}),
},
)
}
type ToolCallResponseResultObject struct {
// The unique identifier (e.g. UUID) for this tool call. If an ID is not provided
// by the client, the server will generate one.
CallID string `json:"call_id"`
// The runtime duration of the tool call, in milliseconds
Duration float64 `json:"duration"`
Success ToolCallResponseResultObjectSuccess `json:"success"`
// The value returned from the tool.
Value ToolCallResponseResultObjectValueUnion `json:"value,nullable"`
JSON toolCallResponseResultObjectJSON `json:"-"`
}
// toolCallResponseResultObjectJSON contains the JSON metadata for the struct
// [ToolCallResponseResultObject]
type toolCallResponseResultObjectJSON struct {
CallID apijson.Field
Duration apijson.Field
Success apijson.Field
Value apijson.Field
raw string
ExtraFields map[string]apijson.Field
}
func (r *ToolCallResponseResultObject) UnmarshalJSON(data []byte) (err error) {
return apijson.UnmarshalRoot(data, r)
}
func (r toolCallResponseResultObjectJSON) RawJSON() string {
return r.raw
}
func (r ToolCallResponseResultObject) implementsToolCallResponseResult() {}
type ToolCallResponseResultObjectSuccess bool
const (
ToolCallResponseResultObjectSuccessTrue ToolCallResponseResultObjectSuccess = true
)
func (r ToolCallResponseResultObjectSuccess) IsKnown() bool {
switch r {
case ToolCallResponseResultObjectSuccessTrue:
return true
}
return false
}
// The value returned from the tool.
//
// Union satisfied by [ToolCallResponseResultObjectValueMap],
// [ToolCallResponseResultObjectValueArray], [shared.UnionString],
// [shared.UnionFloat] or [shared.UnionBool].
type ToolCallResponseResultObjectValueUnion interface {
ImplementsToolCallResponseResultObjectValueUnion()
}
func init() {
apijson.RegisterUnion(
reflect.TypeOf((*ToolCallResponseResultObjectValueUnion)(nil)).Elem(),
"",
apijson.UnionVariant{
TypeFilter: gjson.JSON,
Type: reflect.TypeOf(ToolCallResponseResultObjectValueArray{}),
},
apijson.UnionVariant{
TypeFilter: gjson.String,
Type: reflect.TypeOf(shared.UnionString("")),
},
apijson.UnionVariant{
TypeFilter: gjson.Number,
Type: reflect.TypeOf(shared.UnionFloat(0)),
},
apijson.UnionVariant{
TypeFilter: gjson.True,
Type: reflect.TypeOf(shared.UnionBool(false)),
},
apijson.UnionVariant{
TypeFilter: gjson.False,
Type: reflect.TypeOf(shared.UnionBool(false)),
},
)
}
type ToolCallResponseResultObjectValueMap map[string]interface{}
func (r ToolCallResponseResultObjectValueMap) ImplementsToolCallResponseResultObjectValueUnion() {}
type ToolCallResponseResultObjectValueArray []interface{}
func (r ToolCallResponseResultObjectValueArray) ImplementsToolCallResponseResultObjectValueUnion() {}
type ToolCallResponseResultSuccess bool
const (
ToolCallResponseResultSuccessTrue ToolCallResponseResultSuccess = true
ToolCallResponseResultSuccessFalse ToolCallResponseResultSuccess = false
)
func (r ToolCallResponseResultSuccess) IsKnown() bool {
switch r {
case ToolCallResponseResultSuccessTrue, ToolCallResponseResultSuccessFalse:
return true
}
return false
}
type ToolListParams struct {
}
type ToolCallParams struct {
Request param.Field[ToolCallParamsRequest] `json:"request,required"`
Schema param.Field[string] `json:"$schema" format:"uri"`
}
func (r ToolCallParams) MarshalJSON() (data []byte, err error) {
return apijson.MarshalRoot(r)
}
type ToolCallParamsRequest struct {
// A tool's unique identifier in the format 'Toolkit.Tool[@version]', where
// @version is optional.
ToolID param.Field[string] `json:"tool_id,required"`
// A unique identifier (e.g. UUID) for this tool call. Used as an idempotency key.
// If omitted, the server will generate an ID.
CallID param.Field[string] `json:"call_id"`
Context param.Field[ToolCallParamsRequestContext] `json:"context"`
// The input parameters for the tool call.
Input param.Field[map[string]interface{}] `json:"input"`
// An optional trace identifier for the tool call.
TraceID param.Field[string] `json:"trace_id"`
}
func (r ToolCallParamsRequest) MarshalJSON() (data []byte, err error) {
return apijson.MarshalRoot(r)
}
type ToolCallParamsRequestContext struct {
// The authorization information for the tool call.
Authorization param.Field[[]ToolCallParamsRequestContextAuthorization] `json:"authorization"`
// The secrets for the tool call.
Secrets param.Field[[]ToolCallParamsRequestContextSecret] `json:"secrets"`
// A unique ID that identifies the user, if required by the tool.
UserID param.Field[string] `json:"user_id"`
ExtraFields map[string]interface{} `json:"-,extras"`
}
func (r ToolCallParamsRequestContext) MarshalJSON() (data []byte, err error) {
return apijson.MarshalRoot(r)
}
type ToolCallParamsRequestContextAuthorization struct {
// The unique identifier for the authorization method or authorization provider.
ID param.Field[string] `json:"id,required"`
// The token for the tool call.
Token param.Field[string] `json:"token,required"`
ExtraFields map[string]interface{} `json:"-,extras"`
}
func (r ToolCallParamsRequestContextAuthorization) MarshalJSON() (data []byte, err error) {
return apijson.MarshalRoot(r)
}
type ToolCallParamsRequestContextSecret struct {
// The secret's unique identifier.
ID param.Field[string] `json:"id,required"`
// The secret's value.
Value param.Field[string] `json:"value,required"`
ExtraFields map[string]interface{} `json:"-,extras"`
}
func (r ToolCallParamsRequestContextSecret) MarshalJSON() (data []byte, err error) {
return apijson.MarshalRoot(r)
}