get_next_chapter
Retrieve the next chapter in a knowledge file by specifying the current chapter title or index. Provides chapter title, content, summary, and total chapter count.
Instructions
Get the next chapter after the current one. Specify either current_chapter_title OR current_index (not both). Returns: {success: bool, title?: str, content?: str, summary?: str, index?: int, total_chapters: int, has_next: bool}
Input Schema
Name | Required | Description | Default |
---|---|---|---|
current_chapter_title | No | Title of the current chapter (use this OR current_index) | |
current_index | No | Zero-based index of current chapter (use this OR current_chapter_title) | |
filename | Yes | Knowledge file name (must include .md extension) | |
project_id | Yes | The project identifier |