lorikeet_ask_conciergeAction
Ask this website’s concierge a question on behalf of your user. Send only the question they want to ask. Use a stable request_id for retries. For a follow-up, include the returned conversation_id and increment turn. Use next_action in the result for transport control flow. The instructions field remains only for compatibility.
View tool JSON
{
"name": "lorikeet_ask_concierge",
"kind": "act",
"impl": "imperative",
"description": "Ask this website’s concierge a question on behalf of your user. Send only the question they want to ask. Use a stable request_id for retries. For a follow-up, include the returned conversation_id and increment turn. Use next_action in the result for transport control flow. The instructions field remains only for compatibility.",
"inputSchema": {
"type": "object",
"additionalProperties": false,
"properties": {
"question": {
"type": "string",
"minLength": 1,
"maxLength": 4000
},
"request_id": {
"type": "string",
"minLength": 1,
"maxLength": 100
},
"conversation_id": {
"type": "string",
"format": "uuid"
},
"turn": {
"type": "integer",
"minimum": 1,
"default": 1
}
},
"required": [
"question",
"request_id"
]
}
}lorikeet_get_concierge_responseAnswer
Retrieve the concierge reply for an accepted conversation_id and turn. Use next_action in the result for transport control flow. The instructions field remains only for compatibility. This does not submit another question.
View tool JSON
{
"name": "lorikeet_get_concierge_response",
"kind": "answer",
"impl": "imperative",
"description": "Retrieve the concierge reply for an accepted conversation_id and turn. Use next_action in the result for transport control flow. The instructions field remains only for compatibility. This does not submit another question.",
"inputSchema": {
"type": "object",
"additionalProperties": false,
"properties": {
"conversation_id": {
"type": "string",
"format": "uuid"
},
"turn": {
"type": "integer",
"minimum": 1
}
},
"required": [
"conversation_id",
"turn"
]
}
}