-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathgpt_config.py
264 lines (264 loc) · 8.21 KB
/
gpt_config.py
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
clock = [
{
# 関数の名称
"name": "clock",
# 関数の機能説明
"description": "useful for when you need to know what time it is."
}
]
googlesearch = [
{
# 関数の名称
"name": "get_googlesearch",
# 関数の機能説明
"description": "",
# 関数のパラメータ
"parameters": {
"type": "object",
# 各引数
"properties": {
"words": {
"type": "string",
# 引数の説明
"description": "検索ワード"
}
}
}
}
]
customsearch = [
{
# 関数の名称
"name": "get_customsearch1",
# 関数の機能説明
"description": "",
# 関数のパラメータ
"parameters": {
"type": "object",
# 各引数
"properties": {
"words": {
"type": "string",
# 引数の説明
"description": "検索ワード"
}
}
}
}
]
generateimage = [
{
# 関数の名称
"name": "generate_image",
# 関数の機能説明
"description": "If you specify a long sentence, you can generate an image that matches the sentence.",
# 関数のパラメータ
"parameters": {
"type": "object",
# 各引数
"properties": {
"prompt": {
"type": "string",
# 引数の説明
"description": "画像生成の文章"
}
}
}
}
]
wikipedia = [
{
# 関数の名称
"name": "search_wikipedia",
# 関数の機能説明
"description": "useful for when you need to Read dictionary page by specifying the word. ",
# 関数のパラメータ
"parameters": {
"type": "object",
# 各引数
"properties": {
"prompt": {
"type": "string",
# 引数の説明
"description": "検索ワード"
}
}
}
}
]
scraping = [
{
# 関数の名称
"name": "scraping",
# 関数の機能説明
"description": "useful for when you need to read a web page by specifying the URL.",
# 関数のパラメータ
"parameters": {
"type": "object",
# 各引数
"properties": {
"link": {
"type": "string",
# 引数の説明
"description": "読みたいページのURL"
}
}
}
}
]
googlecalendar = [
{
# 関数の名称
"name": "get_calendar",
# 関数の機能説明
"description": "You can retrieve upcoming schedules and the event ID of the schedule."
},
{
# 関数の名称
"name": "add_calendar",
# 関数の機能説明
"description": "You can add schedules.",
"parameters": {
"type": "object",
# 各引数
"properties": {
"summary": {
"type": "string",
# 引数の説明
"description": "スケジュールのサマリー(必須)"
},
"start_time": {
"type": "string",
# 引数の説明
"description": "スケジュールの開始時間をRFC3339フォーマットの日本時間で指定(必須)"
},
"end_time": {
"type": "string",
# 引数の説明
"description": "スケジュールの終了時間をRFC3339フォーマットの日本時間で指定(必須)"
},
"description": {
"type": "string",
# 引数の説明
"description": "スケジュールした内容の詳細な説明(必須)"
},
"location": {
"type": "string",
# 引数の説明
"description": "スケジュールの内容を実施する場所(必須)"
}
}
}
},
{
# 関数の名称
"name": "update_calendar",
# 関数の機能説明
"description": "You can update schedules by the event ID of the schedule.",
"parameters": {
"type": "object",
# 各引数
"properties": {
"event_id": {
"type": "string",
# 引数の説明
"description": "スケジュールのイベントID(必須)"
},
"summary": {
"type": "string",
# 引数の説明
"description": "更新後のスケジュールのサマリー(必須)"
},
"start_time": {
"type": "string",
# 引数の説明
"description": "更新後のスケジュールの開始時間をRFC3339フォーマットの日本時間で指定(必須)"
},
"end_time": {
"type": "string",
# 引数の説明
"description": "更新後のスケジュールの終了時間をRFC3339フォーマットの日本時間で指定(必須)"
},
"description": {
"type": "string",
# 引数の説明
"description": "更新後のスケジュールした内容の詳細な説明(必須)"
},
"location": {
"type": "string",
# 引数の説明
"description": "更新後のスケジュールの内容を実施する場所(必須)"
}
}
}
},
{
# 関数の名称
"name": "delete_calendar",
# 関数の機能説明
"description": "You can delete schedules by the event ID of the schedule.",
"parameters": {
"type": "object",
# 各引数
"properties": {
"event_id": {
"type": "string",
# 引数の説明
"description": "削除対象のスケジュールのイベントID(必須)"
}
}
}
}
]
googlemail = [
{
# 関数の名称
"name": "get_gmail_list",
# 関数の機能説明
"description": "You can get Gmail latest list."
},
{
# 関数の名称
"name": "get_gmail_content",
# 関数の機能説明
"description": "You can read Gmail content by a search query.",
"parameters": {
"type": "object",
# 各引数
"properties": {
"search_query": {
"type": "string",
# 引数の説明
"description": "検索文字列(必須)"
}
}
}
},
{
# 関数の名称
"name": "send_gmail_content",
# 関数の機能説明
"description": "You send Gmail content by a email and a subject and a content.",
"parameters": {
"type": "object",
# 各引数
"properties": {
"to_email": {
"type": "string",
# 引数の説明
"description": "送信先メールアドレス(必須)"
},
"subject": {
"type": "string",
# 引数の説明
"description": "作成するメールの題名(必須)"
},
"body": {
"type": "string",
# 引数の説明
"description": "作成するメールの内容(必須)"
}
}
}
}
]