add_user_note
Enables users to add private notes about specific players on the Lichess platform, facilitating personalized tracking and reference for future interactions.
Instructions
Add a private note about a user
Input Schema
Name | Required | Description | Default |
---|---|---|---|
text | Yes | The contents of the note | |
username | Yes | Username of the player |
Input Schema (JSON Schema)
{
"properties": {
"text": {
"description": "The contents of the note",
"type": "string"
},
"username": {
"description": "Username of the player",
"type": "string"
}
},
"required": [
"username",
"text"
],
"type": "object"
}