-
Notifications
You must be signed in to change notification settings - Fork 3.7k
Expand file tree
/
Copy pathstar_gist.ts
More file actions
104 lines (93 loc) · 2.41 KB
/
Copy pathstar_gist.ts
File metadata and controls
104 lines (93 loc) · 2.41 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
import type { ToolConfig } from '@/tools/types'
interface StarGistParams {
gist_id: string
apiKey: string
}
interface StarGistResponse {
success: boolean
output: {
content: string
metadata: {
starred: boolean
gist_id: string
}
}
}
export const starGistTool: ToolConfig<StarGistParams, StarGistResponse> = {
id: 'github_star_gist',
name: 'GitHub Star Gist',
description: 'Star a gist',
version: '1.0.0',
params: {
gist_id: {
type: 'string',
required: true,
visibility: 'user-or-llm',
description: 'The gist ID to star',
},
apiKey: {
type: 'string',
required: true,
visibility: 'user-only',
description: 'GitHub API token',
},
},
request: {
url: (params) => `https://api.github.com/gists/${params.gist_id?.trim()}/star`,
method: 'PUT',
headers: (params) => ({
Accept: 'application/vnd.github.v3+json',
Authorization: `Bearer ${params.apiKey}`,
'Content-Length': '0',
'X-GitHub-Api-Version': '2022-11-28',
}),
},
transformResponse: async (response, params) => {
const starred = response.status === 204
return {
success: starred,
output: {
content: starred
? `Successfully starred gist ${params?.gist_id}`
: `Failed to star gist ${params?.gist_id}`,
metadata: {
starred,
gist_id: params?.gist_id ?? '',
},
},
}
},
outputs: {
content: { type: 'string', description: 'Human-readable result' },
metadata: {
type: 'object',
description: 'Star operation metadata',
properties: {
starred: { type: 'boolean', description: 'Whether starring succeeded' },
gist_id: { type: 'string', description: 'The gist ID' },
},
},
},
}
export const starGistV2Tool: ToolConfig<StarGistParams, any> = {
id: 'github_star_gist_v2',
name: starGistTool.name,
description: starGistTool.description,
version: '2.0.0',
params: starGistTool.params,
request: starGistTool.request,
transformResponse: async (response: Response, params) => {
const starred = response.status === 204
return {
success: starred,
output: {
starred,
gist_id: params?.gist_id ?? '',
},
}
},
outputs: {
starred: { type: 'boolean', description: 'Whether starring succeeded' },
gist_id: { type: 'string', description: 'The gist ID' },
},
}