-
Notifications
You must be signed in to change notification settings - Fork 3
/
functions_config.py
68 lines (68 loc) · 2.72 KB
/
functions_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
tools = [
{
"type": "function",
"function": {
# 関数の名称
"name": "scraping",
# 関数の機能説明
"description": "URL を指定すると リンクを除くWeb ページの文章が読めます",
# 関数のパラメータ
"parameters": {
"type": "object",
# 各引数
"properties": {
"link": {
"type": "string",
# 引数の説明
"description": "読みたいページのURL"
}
},
"required": ["link"]
}
}
},
{
"type": "function",
"function": {
# 関数の名称
"name": "scrape_links_and_text",
# 関数の機能説明
"description": "URLを指定すると対象ページ内のURLの一覧を取得できます。",
# 関数のパラメータ
"parameters": {
"type": "object",
# 各引数
"properties": {
"link": {
"type": "string",
# 引数の説明
"description": "読みたいページのURL"
}
},
"required": ["link"]
}
}
},
{
"type": "function",
"function": {
# 関数の名称
"name": "generate_image",
# 関数の機能説明
"description": "長い文で描画したいイメージを日本語で具体的に指定すると文章に合った画像が生成できます。描画する人物や物の名前や特徴、ポーズの表情や種類、背景の具体的な要素、全体の色使い、物語のコンテキストや特定のアクセサリー、持ち物など複数の要素を必ず指定してください。",
# 関数のパラメータ
"parameters": {
"type": "object",
# 各引数
"properties": {
"prompt": {
"type": "string",
# 引数の説明
"description": "描画する人物や物の名前や特徴、ポーズの表情や種類、背景の具体的な要素、全体の色使い、物語のコンテキストや特定のアクセサリー、持ち物など複数の要素を含んだ画像生成の元となる文章。"
}
},
"required": ["prompt"]
}
}
}
]