send_message
Send a message to the VRChat chatbox directly or populate it for later use. Enables AI-driven interactions in virtual reality environments.
Instructions
Send a message to the VRChat chatbox.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
message | Yes | Message to send | |
send_immediately | No | Send immediately or just populate chatbox |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"message": {
"description": "Message to send",
"type": "string"
},
"send_immediately": {
"default": true,
"description": "Send immediately or just populate chatbox",
"type": "boolean"
}
},
"required": [
"message"
],
"type": "object"
}