Steer the running turn
curl --request POST \
--url https://api.arg.ai/api/agent/queue/{chatId}/{queueId}/steer \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.arg.ai/api/agent/queue/{chatId}/{queueId}/steer"
headers = {"Authorization": "Bearer <token>"}
response = requests.post(url, headers=headers)
print(response.text)const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.arg.ai/api/agent/queue/{chatId}/{queueId}/steer', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{}{
"detail": "<string>"
}Agent
Steer the running turn
Promote a queued message into the turn already running, delivered at the next step boundary. Returns 409 when the current turn cannot be steered - leave the message queued in that case.
POST
/
api
/
agent
/
queue
/
{chatId}
/
{queueId}
/
steer
Steer the running turn
curl --request POST \
--url https://api.arg.ai/api/agent/queue/{chatId}/{queueId}/steer \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.arg.ai/api/agent/queue/{chatId}/{queueId}/steer"
headers = {"Authorization": "Bearer <token>"}
response = requests.post(url, headers=headers)
print(response.text)const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.arg.ai/api/agent/queue/{chatId}/{queueId}/steer', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{}{
"detail": "<string>"
}