send_message
Send a private message to another Lichess player by specifying their username and message text, facilitating direct communication within the platform.
Instructions
Send a private message to another player
Input Schema
Name | Required | Description | Default |
---|---|---|---|
text | Yes | Message text | |
username | Yes | Username of the recipient |
Input Schema (JSON Schema)
{
"properties": {
"text": {
"description": "Message text",
"type": "string"
},
"username": {
"description": "Username of the recipient",
"type": "string"
}
},
"required": [
"username",
"text"
],
"type": "object"
}