mqscript_turing_chat
Enables automated conversations with TURING robot using API key and user context for integration with mobile automation scripts.
Instructions
Chat with TURING robot
Input Schema
Name | Required | Description | Default |
---|---|---|---|
apiKey | Yes | TURING API key | |
message | Yes | Message to send | |
resultVariable | No | Variable name to store response | turingResponse |
userId | Yes | User ID for conversation context |
Input Schema (JSON Schema)
{
"properties": {
"apiKey": {
"description": "TURING API key",
"type": "string"
},
"message": {
"description": "Message to send",
"type": "string"
},
"resultVariable": {
"default": "turingResponse",
"description": "Variable name to store response",
"type": "string"
},
"userId": {
"description": "User ID for conversation context",
"type": "string"
}
},
"required": [
"apiKey",
"userId",
"message"
],
"type": "object"
}