submit_reviews
Submit multiple card reviews to Anki with ratings ('wrong', 'hard', 'good', 'easy'). Streamlines the review process by processing a list of card IDs and their respective ratings efficiently.
Instructions
Submit multiple card reviews to Anki using ratings ('wrong', 'hard', 'good', 'easy').
Args:
reviews: List of review dictionaries, each with:
- card_id (int): The ID of the card reviewed.
- rating (str): 'wrong', 'hard', 'good', or 'easy'.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
reviews | Yes |
Input Schema (JSON Schema)
{
"properties": {
"reviews": {
"items": {
"additionalProperties": {
"anyOf": [
{
"type": "integer"
},
{
"enum": [
"wrong",
"hard",
"good",
"easy"
],
"type": "string"
}
]
},
"propertyNames": {
"enum": [
"card_id",
"rating"
]
},
"type": "object"
},
"title": "Reviews",
"type": "array"
}
},
"required": [
"reviews"
],
"title": "submit_reviewsArguments",
"type": "object"
}