kimi_send
Send a message or command to a running Kimi session to steer its turn, queue a follow-up, or abort execution. Returns immediately; the reaction arrives in the pending reply.
Instructions
Deliver a message into a kimi turn that is executing right now. The default transport 'acp' keeps the turn reachable; 'print' runs cannot be reached, and a session that already finished takes kimi_reply, not kimi_send. Returns immediately; kimi's reaction appears in the answer of the kimi/kimi_reply call still waiting on that turn. kimi_running lists reachable sessions.
Note: the adapter reports the first result envelope; a follow_up queued behind the current turn is delivered but its answer is not awaited by the original call.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| command | No | 'abort' (default) cancels the current turn via ACP session/cancel; 'steer' cancels and immediately submits the message as a new user turn; 'follow_up' queues the message without interrupting. | |
| message | No | Text to deliver. Required for 'steer' and 'follow_up', ignored by 'abort'. | |
| session | Yes | Session id of the running turn (see kimi_running). |