Say
Easily speak to your carter character
// Assuming you have already created a Carter object called carter
const options = {
uuid: "A UNIQUE USER ID" // Optional
scene: "level-1" // Optional
}
// Send a message to your Carter agent
const interaction = await carter.say("Hello", 'your-player-id', speak=True) // Only the message is mandatory
if (interaction.ok) {
const replyMessage = interaction.outputText
}Interactions
Last updated