Use this file to discover all available pages before exploring further.
Use the Responses resource when you want the MKA1 API to return text.
Start with a plain string for simple prompts.
Use message items when you need explicit roles or conversation state.
Use instructions to define behavior before the model sees the user input.
Keep instructions short and specific.
mka1 llm responses create \ --model auto \ --instructions 'You are a support assistant. Reply in plain English. Keep answers under 80 words.' \ --input '"Explain what embeddings are used for."'
Use previous_response_id to continue from an earlier response without resending the full history.
mka1 llm responses create \ --model auto \ --previous-response-id resp_123 \ --input '"Now turn that into an email subject line."'
If you need a reusable conversation container, create one with the Conversations resource and then pass the conversation ID in conversation.
# Create a conversationmka1 llm conversations create --body '{ "metadata": { "session_id": "web-42" }}'# Use the conversation in a response requestmka1 llm responses create \ --model auto \ --conversation conv_123 \ --input '"What should I ask next to refine this draft?"'
See the Conversations and Responses pages in the API Reference for the full resource workflow.