Update index.html
Browse files- index.html +23 -7
index.html
CHANGED
@@ -358,17 +358,17 @@ CHAT_TOOLS = [
|
|
358 |
"type": "function",
|
359 |
"function": {
|
360 |
"name": "search_pages",
|
361 |
-
"description": "
|
362 |
"parameters": {
|
363 |
"type": "object",
|
364 |
"properties": {
|
365 |
"keywords": {
|
366 |
"type": "string",
|
367 |
-
"description":
|
368 |
},
|
369 |
"page_limit": {
|
370 |
"type": "number",
|
371 |
-
"description": "
|
372 |
"minimum": 1
|
373 |
}
|
374 |
}
|
@@ -381,7 +381,7 @@ CHAT_TOOLS = [
|
|
381 |
"type": "function",
|
382 |
"function": {
|
383 |
"name": "load_pages",
|
384 |
-
"description": "
|
385 |
"parameters": {
|
386 |
"type": "object",
|
387 |
"properties": {
|
@@ -390,8 +390,8 @@ CHAT_TOOLS = [
|
|
390 |
"items": {
|
391 |
"type": "number"
|
392 |
},
|
393 |
-
"
|
394 |
-
"
|
395 |
}
|
396 |
}
|
397 |
},
|
@@ -691,7 +691,23 @@ def main():
|
|
691 |
"""
|
692 |
|
693 |
# 抽出結果''',
|
694 |
-
"QA (RAG)": '''次の質問に回答するために役立つページを検索して、その検索結果を使って回答して下さい。
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
695 |
|
696 |
# 制約条件
|
697 |
* 検索クエリの生成方法: 質問文の3つの言い換え(paraphrase)をカンマ区切りで連結した文字列
|
|
|
358 |
"type": "function",
|
359 |
"function": {
|
360 |
"name": "search_pages",
|
361 |
+
"description": "Searches for pages containing the given keywords.",
|
362 |
"parameters": {
|
363 |
"type": "object",
|
364 |
"properties": {
|
365 |
"keywords": {
|
366 |
"type": "string",
|
367 |
+
"description": 'Search keywords separated by spaces. For example, "Artificial General Intelligence 自律エージェント".'
|
368 |
},
|
369 |
"page_limit": {
|
370 |
"type": "number",
|
371 |
+
"description": "Maximum number of search results to return. For example, 3.",
|
372 |
"minimum": 1
|
373 |
}
|
374 |
}
|
|
|
381 |
"type": "function",
|
382 |
"function": {
|
383 |
"name": "load_pages",
|
384 |
+
"description": "Loads pages specified by their page numbers.",
|
385 |
"parameters": {
|
386 |
"type": "object",
|
387 |
"properties": {
|
|
|
390 |
"items": {
|
391 |
"type": "number"
|
392 |
},
|
393 |
+
"description": "List of page numbers to be load",
|
394 |
+
"minItems": 1
|
395 |
}
|
396 |
}
|
397 |
},
|
|
|
691 |
"""
|
692 |
|
693 |
# 抽出結果''',
|
694 |
+
"QA (日本語文書RAG)": '''次の質問に回答するために役立つページを検索して、その検索結果を使って回答して下さい。
|
695 |
+
|
696 |
+
# 制約条件
|
697 |
+
* 検索クエリの生成方法: 質問文の3つの言い換え(paraphrase)をカンマ区切りで連結した文字列
|
698 |
+
* 検索クエリの言語: 日本語
|
699 |
+
* 検索するページ数: 3
|
700 |
+
* 回答方法:
|
701 |
+
- 検索結果の情報のみを用いて回答すること。
|
702 |
+
- 回答に利用した文章のあるページ番号を最後に出力すること。形式: "参考ページ番号: 71, 59, 47"
|
703 |
+
- 回答に役立つ情報が検索結果内にない場合は「検索結果には回答に役立つ情報がありませんでした。」と回答すること。
|
704 |
+
* 回答の言語: 日本語
|
705 |
+
|
706 |
+
# 質問
|
707 |
+
どのような方法で、提案された手法が有効であると評価しましたか?
|
708 |
+
|
709 |
+
# 回答''',
|
710 |
+
"QA (英語文書RAG)": '''次の質問に回答するために役立つページを検索して、その検索結果を使って回答して下さい。
|
711 |
|
712 |
# 制約条件
|
713 |
* 検索クエリの生成方法: 質問文の3つの言い換え(paraphrase)をカンマ区切りで連結した文字列
|