update_lesson_success
Track and update lesson success rates in the Knowledge Graph Memory Server to improve solution accuracy and enhance learning from past interactions.
Instructions
Update the success rate of a lesson after applying its solution
Input Schema
Name | Required | Description | Default |
---|---|---|---|
lessonName | Yes | Name of the lesson to update | |
success | Yes | Whether the solution was successful |
Input Schema (JSON Schema)
{
"properties": {
"lessonName": {
"description": "Name of the lesson to update",
"type": "string"
},
"success": {
"description": "Whether the solution was successful",
"type": "boolean"
}
},
"required": [
"lessonName",
"success"
],
"type": "object"
}