create_slide_file
Save generated Markdown slides as .md files using this tool. Input filename and content to create or overwrite presentation-ready files in a specified directory.
Instructions
生成済みのMarkdownスライドを.mdファイルとして保存します。モデルがMarkdownを出力した直後に続けて実行してください(同名があれば上書き)。
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | The markdown content for the slides | |
filename | Yes | Name of the markdown file to create (without extension) | |
output_dir | No | Directory path where the file should be created (default: current directory) | . |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "The markdown content for the slides",
"type": "string"
},
"filename": {
"description": "Name of the markdown file to create (without extension)",
"type": "string"
},
"output_dir": {
"default": ".",
"description": "Directory path where the file should be created (default: current directory)",
"type": "string"
}
},
"required": [
"filename",
"content"
],
"type": "object"
}