get_doc
Retrieve specified document content with pagination support by providing the file path and optional page number for partial extraction.
Instructions
指定したドキュメントの内容を取得(ページネーション対応)
Args:
path: ドキュメントのファイルパス
page: ページ番号(1から開始、Noneの場合は全文取得)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
page | No | ||
path | Yes |
Input Schema (JSON Schema)
{
"properties": {
"page": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Page"
},
"path": {
"title": "Path",
"type": "string"
}
},
"required": [
"path"
],
"title": "get_docArguments",
"type": "object"
}