Sessions
Send a prompt
POST
Queue a prompt for a session
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
curl --request POST \
--url https://litellm-rust.onrender.com/session/{session_id}/prompt_async \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"model": {
"modelID": "claude-opus-4-5"
},
"parts": [
{
"type": "text",
"text": "Summarize the repo README."
}
]
}
'curl --request POST \
--url https://litellm-rust.onrender.com/session/{session_id}/prompt_async \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"model": {
"modelID": "claude-opus-4-5"
},
"parts": [
{
"type": "text",
"text": "Summarize the repo README."
}
]
}
'