mirror of
https://github.com/VectifyAI/PageIndex.git
synced 2026-04-24 23:56:21 +02:00
by default add node summary
This commit is contained in:
parent
d799a0cf67
commit
33ec9aca6e
3 changed files with 3 additions and 3 deletions
|
|
@ -132,7 +132,7 @@ You can customize the processing with additional optional arguments:
|
|||
--max-pages-per-node Max pages per node (default: 10)
|
||||
--max-tokens-per-node Max tokens per node (default: 20000)
|
||||
--if-add-node-id Add node ID (yes/no, default: yes)
|
||||
--if-add-node-summary Add node summary (yes/no, default: no)
|
||||
--if-add-node-summary Add node summary (yes/no, default: yes)
|
||||
--if-add-doc-description Add doc description (yes/no, default: yes)
|
||||
```
|
||||
</details>
|
||||
|
|
|
|||
|
|
@ -3,6 +3,6 @@ toc_check_page_num: 20
|
|||
max_page_num_each_node: 10
|
||||
max_token_num_each_node: 20000
|
||||
if_add_node_id: "yes"
|
||||
if_add_node_summary: "no"
|
||||
if_add_node_summary: "yes"
|
||||
if_add_doc_description: "no"
|
||||
if_add_node_text: "no"
|
||||
|
|
@ -21,7 +21,7 @@ if __name__ == "__main__":
|
|||
|
||||
parser.add_argument('--if-add-node-id', type=str, default='yes',
|
||||
help='Whether to add node id to the node')
|
||||
parser.add_argument('--if-add-node-summary', type=str, default='no',
|
||||
parser.add_argument('--if-add-node-summary', type=str, default='yes',
|
||||
help='Whether to add summary to the node')
|
||||
parser.add_argument('--if-add-doc-description', type=str, default='no',
|
||||
help='Whether to add doc description to the doc')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue