Difference between revisions of "Bot Playground/AI/Conversation.chat"
From SmartBots Developers Docs
Line 12: | Line 12: | ||
{{API Variable|message|yes}} chat message to the bot | {{API Variable|message|yes}} chat message to the bot | ||
{{API Variable|options|optional}} configuration directives for the AI engine. Example: | {{API Variable|options|optional}} configuration directives for the AI engine. Example: | ||
− | < | + | <syntaxhighlight lang="javascript"> |
{ | { | ||
// Main configuration instructions for the AI: role, behavior, response rules etc. | // Main configuration instructions for the AI: role, behavior, response rules etc. | ||
Line 20: | Line 20: | ||
maxResponseTokens?: number; | maxResponseTokens?: number; | ||
} | } | ||
− | </ | + | </syntaxhighlight> |
{{API Variable Group|Output}} | {{API Variable Group|Output}} |
Revision as of 16:22, 10 October 2023
Sends a chat message request to bot AI within a conversation with a specific resident.
Conversation.chat(message[, options])
Reference
This command accepts the following parameters:
Variable | Required | Description
| |
---|---|---|---|
Input: | |||
message | yes | chat message to the bot | |
options | optional | configuration directives for the AI engine. Example:
{
// Main configuration instructions for the AI: role, behavior, response rules etc.
instructions?: string;
// Maximum number of tokens to generate in response
maxResponseTokens?: number;
}
| |
Output: | |||
same value as Bot.AI.chat(...) | This command returns the same value as Bot.AI.chat(...) |