Create log
Adds console output to a task's log and answers with how far that log is durable, so the runner knows where to resend from.
POST /v1/runner/log
| Address | https://api.hanzo.ai/v1/runner/log |
| Method | POST |
| Operation | post_runner_log |
| Auth | Authorization: Bearer $HANZO_API_KEY |
Adds console output to a task's log and answers with how far that log is durable, so the runner knows where to resend from.
Request
8 fields, body application/json (required).
| Field | In | Type | Required | Description |
|---|---|---|---|---|
x-runner-uuid | header | string | — | |
x-runner-token | header | string | — | |
index | body | integer (int64) | — | Index is the position of the first line in that log, so a resent batch overlaps rather than duplicates. |
last | body | boolean | — | Last seals the log and moves it to storage. |
lines | body | runner.Line[] | — | Lines is the batch itself. |
lines[].content | body | string | — | Content is the line itself, without its terminator. |
lines[].time | body | integer (int64) | — | Time is when the line was written, in unix nanoseconds. |
task | body | integer (int64) | — | Task is whose log this is. |
Response
| Status | Body | Meaning |
|---|---|---|
200 | runner.LogOut | ok |
default | problem-details | refused |
200 body — 1 field.
| Field | In | Type | Always | Description |
|---|---|---|---|---|
ack | body | integer (int64) | — | Ack is how far the log is durable — index plus lines accepted — and where the runner resends from. |
Failure carries the platform error shape — see Errors.
Examples
hanzo runner logimport { Configuration, GitApi } from 'hanzoai';
const api = new GitApi(new Configuration({ accessToken: process.env.HANZO_API_KEY }));
const { data } = await api.postRunnerLog({ index: 0, last: false });from hanzoai.cloud import ApiClient, Configuration
from hanzoai.cloud.api import GitApi
client = ApiClient(Configuration(access_token=os.environ["HANZO_API_KEY"]))
result = GitApi(client).post_runner_log(index=0, last=False)cfg := hanzoai.NewConfiguration()
cfg.AddDefaultHeader("Authorization", "Bearer "+os.Getenv("HANZO_API_KEY"))
client := hanzoai.NewAPIClient(cfg)
resp, _, err := client.GitAPI.PostRunnerLog(context.Background()).Execute()
if err != nil {
return err
}use hanzo_client::apis::{configuration::Configuration, git_api};
let mut cfg = Configuration::new();
cfg.bearer_access_token = std::env::var("HANZO_API_KEY").ok();
let result = git_api::post_runner_log(&cfg, Default::default()).await?;import ai.hanzo.cloud.ApiClient;
import ai.hanzo.cloud.api.GitApi;
ApiClient client = new ApiClient();
client.setBearerToken(System.getenv("HANZO_API_KEY"));
var result = new GitApi(client).postRunnerLog();The method above is the one at the current release of the document. [email protected] (npm) was generated from an earlier release, where this operation carried a different id, so it spells the method differently — regenerating the clients is what makes the two agree. SDKs →
curl -X POST https://api.hanzo.ai/v1/runner/log \
-H "Authorization: Bearer $HANZO_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"index": 0,
"last": false
}'MCP reaches git through the git tool, which names its 56 operations with its own verbs — this one among them, under a name only MCP declares. describe explains any of them:
curl -X POST https://api.hanzo.ai/v1/mcp \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "describe",
"arguments": {
"op": "get_git"
}
}
}'How is this guide?