Api Assistant Task Continue
curl --request POST \
--url http://localhost:8080/api/assistant/tasks/{task_id}/continueimport requests
url = "http://localhost:8080/api/assistant/tasks/{task_id}/continue"
response = requests.post(url)
print(response.text)const options = {method: 'POST'};
fetch('http://localhost:8080/api/assistant/tasks/{task_id}/continue', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_PORT => "8080",
CURLOPT_URL => "http://localhost:8080/api/assistant/tasks/{task_id}/continue",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "http://localhost:8080/api/assistant/tasks/{task_id}/continue"
req, _ := http.NewRequest("POST", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("http://localhost:8080/api/assistant/tasks/{task_id}/continue")
.asString();require 'uri'
require 'net/http'
url = URI("http://localhost:8080/api/assistant/tasks/{task_id}/continue")
http = Net::HTTP.new(url.host, url.port)
request = Net::HTTP::Post.new(url)
response = http.request(request)
puts response.read_body{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"ctx": {},
"input": "<unknown>"
}
]
}Assistant
Api Assistant Task Continue
Step-limit HITL. A task paused at its step ceiling (status awaiting_continue) is either
CONTINUED — resumed via the normal resume path (resume_from_task_id, NOT a follow-up), which gets
the full unclamped budget so it finishes uninterrupted instead of re-hitting the same cap — or
STOPPED, which finalizes it cleanly (no failure).
POST
/
api
/
assistant
/
tasks
/
{task_id}
/
continue
Api Assistant Task Continue
curl --request POST \
--url http://localhost:8080/api/assistant/tasks/{task_id}/continueimport requests
url = "http://localhost:8080/api/assistant/tasks/{task_id}/continue"
response = requests.post(url)
print(response.text)const options = {method: 'POST'};
fetch('http://localhost:8080/api/assistant/tasks/{task_id}/continue', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_PORT => "8080",
CURLOPT_URL => "http://localhost:8080/api/assistant/tasks/{task_id}/continue",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "http://localhost:8080/api/assistant/tasks/{task_id}/continue"
req, _ := http.NewRequest("POST", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("http://localhost:8080/api/assistant/tasks/{task_id}/continue")
.asString();require 'uri'
require 'net/http'
url = URI("http://localhost:8080/api/assistant/tasks/{task_id}/continue")
http = Net::HTTP.new(url.host, url.port)
request = Net::HTTP::Post.new(url)
response = http.request(request)
puts response.read_body{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"ctx": {},
"input": "<unknown>"
}
]
}Path Parameters
Response
Successful Response
⌘I