create_notes_bulk
Add multiple Anki flashcards at once with batch processing, handling duplicates automatically and optionally generating audio for each card.
Instructions
Create multiple notes in a single batch operation for efficiency. Handles duplicates gracefully by reporting which notes are duplicates while still creating non-duplicate notes.
IMPORTANT: The auto_audio parameter must be passed as a dictionary/object structure with fields: enabled, source_field, target_field, language, and voice. Do NOT pass it as a JSON string. Set to null (or omit) to disable automatic audio generation.
Example auto_audio object:
{
"enabled": true,
"source_field": "Hanzi",
"target_field": "Audio",
"language": "cmn-cn",
"voice": "cmn-CN-Chirp3-HD-Achernar"
}
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| deck_name | Yes | Name of the Anki deck to add notes to | |
| notes_list | Yes | List of note dictionaries, each containing 'model_name', 'fields', and optionally 'tags' | |
| auto_audio | No |