dev.cocore.inference.status

cocore.dev

Documentation

Poll for the outcome of a submitted job. Returns `pending` until a matching receipt is indexed, `received` once the receipt lands, and `settled` once a settlement also lands. Receipt and settlement are returned as indexed records when present.

main query

Poll for the outcome of a submitted job. Returns `pending` until a matching receipt is indexed, `received` once the receipt lands, and `settled` once a settlement also lands. Receipt and settlement are returned as indexed records when present.

Parameters

jobUri string at-uri Required

The job record URI returned by `dev.cocore.inference.submit`.

Output

Encodingapplication/json
status string Required

No description available.

Errors

AuthRequired The caller is not authenticated.
InvalidRequest The `jobUri` parameter is missing.
Try It

Requests are sent directly from your browser. Some servers may block requests due to CORS.

Base URL for XRPC calls (e.g., https://api.bsky.social)
Parameters
The job record URI returned by `dev.cocore.inference.submit`.
View raw schema
{
  "type": "query",
  "errors": [
    {
      "name": "AuthRequired",
      "description": "The caller is not authenticated."
    },
    {
      "name": "InvalidRequest",
      "description": "The `jobUri` parameter is missing."
    }
  ],
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "status"
      ],
      "properties": {
        "status": {
          "enum": [
            "pending",
            "received",
            "settled"
          ],
          "type": "string"
        },
        "receipt": {
          "ref": "dev.cocore.defs#indexedRecord",
          "type": "ref"
        },
        "settlement": {
          "ref": "dev.cocore.defs#indexedRecord",
          "type": "ref"
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "required": [
      "jobUri"
    ],
    "properties": {
      "jobUri": {
        "type": "string",
        "format": "at-uri",
        "description": "The job record URI returned by `dev.cocore.inference.submit`."
      }
    }
  },
  "description": "Poll for the outcome of a submitted job. Returns `pending` until a matching receipt is indexed, `received` once the receipt lands, and `settled` once a settlement also lands. Receipt and settlement are returned as indexed records when present."
}

Lexicon Garden

@