-
Notifications
You must be signed in to change notification settings - Fork 3.7k
Expand file tree
/
Copy pathunstar_gist.ts
More file actions
103 lines (92 loc) · 2.45 KB
/
Copy pathunstar_gist.ts
File metadata and controls
103 lines (92 loc) · 2.45 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
import type { ToolConfig } from '@/tools/types'
interface UnstarGistParams {
gist_id: string
apiKey: string
}
interface UnstarGistResponse {
success: boolean
output: {
content: string
metadata: {
unstarred: boolean
gist_id: string
}
}
}
export const unstarGistTool: ToolConfig<UnstarGistParams, UnstarGistResponse> = {
id: 'github_unstar_gist',
name: 'GitHub Unstar Gist',
description: 'Unstar a gist',
version: '1.0.0',
params: {
gist_id: {
type: 'string',
required: true,
visibility: 'user-or-llm',
description: 'The gist ID to unstar',
},
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: 'DELETE',
headers: (params) => ({
Accept: 'application/vnd.github.v3+json',
Authorization: `Bearer ${params.apiKey}`,
'X-GitHub-Api-Version': '2022-11-28',
}),
},
transformResponse: async (response, params) => {
const unstarred = response.status === 204
return {
success: unstarred,
output: {
content: unstarred
? `Successfully unstarred gist ${params?.gist_id}`
: `Failed to unstar gist ${params?.gist_id}`,
metadata: {
unstarred,
gist_id: params?.gist_id ?? '',
},
},
}
},
outputs: {
content: { type: 'string', description: 'Human-readable result' },
metadata: {
type: 'object',
description: 'Unstar operation metadata',
properties: {
unstarred: { type: 'boolean', description: 'Whether unstarring succeeded' },
gist_id: { type: 'string', description: 'The gist ID' },
},
},
},
}
export const unstarGistV2Tool: ToolConfig<UnstarGistParams, any> = {
id: 'github_unstar_gist_v2',
name: unstarGistTool.name,
description: unstarGistTool.description,
version: '2.0.0',
params: unstarGistTool.params,
request: unstarGistTool.request,
transformResponse: async (response: Response, params) => {
const unstarred = response.status === 204
return {
success: unstarred,
output: {
unstarred,
gist_id: params?.gist_id ?? '',
},
}
},
outputs: {
unstarred: { type: 'boolean', description: 'Whether unstarring succeeded' },
gist_id: { type: 'string', description: 'The gist ID' },
},
}