changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "items": {
+ "description": "The returned items, in the endpoint's documented order.",
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "backend": {
+ "description": "The compute backend this Agent runs on.",
+ "type": "string"
+ },
+ "config": {
+ "description": "Arbitrary JSON owned by the producing engine."
+ },
+ "created_at": {
+ "description": "When the Agent was created.",
+ "type": "string"
+ },
+ "deleting": {
+ "description": "True while this Agent's disk is still being erased; offer no action on it besides retrying the deletion itself.",
+ "type": "boolean"
+ },
+ "deleting_since": {
+ "description": "When the deletion was first requested; present only while deleting is true.",
+ "type": [
+ "null",
+ "string"
+ ]
+ },
+ "effective_model": {
+ "description": "The model a run on this Agent will actually use. plori-auto means the hosted router chooses per turn.",
+ "type": "string"
+ },
+ "id": {
+ "description": "The Agent's unique identifier; pass it to other tools as agent_id.",
+ "type": "string"
+ },
+ "last_run_at": {
+ "description": "When this Agent last started a run; absent when it has never run.",
+ "type": [
+ "null",
+ "string"
+ ]
+ },
+ "model": {
+ "description": "The model slug this Agent is configured to use. Empty means no explicit choice, which is not the same as no model — read effective_model for what a run will actually use.",
+ "type": "string"
+ },
+ "moving": {
+ "description": "True while this Agent's files are being copied to a new disk; check storage_notice rather than a separate route for the outcome.",
+ "type": "boolean"
+ },
+ "name": {
+ "description": "The Agent's name, chosen by its owner and unique within the account.",
+ "type": "string"
+ },
+ "queued_at": {
+ "description": "When a still-warming attach was accepted; present only while it is queued for node capacity.",
+ "type": [
+ "null",
+ "string"
+ ]
+ },
+ "status": {
+ "description": "The live warm-session state: warming, ready, or sleeping; empty when no session is active.",
+ "type": "string"
+ },
+ "storage_notice": {
+ "description": "The one sentence, if any, telling the owner about a storage move that stopped; show it verbatim, not paraphrased.",
+ "type": "string"
+ },
+ "url": {
+ "description": "This Agent's page in the plori web app.",
+ "type": "string"
+ },
+ "user_id": {
+ "description": "The identifier of the account that owns this Agent.",
+ "type": "string"
+ }
+ },
+ "required": [
+ "id",
+ "user_id",
+ "name",
+ "backend",
+ "model",
+ "effective_model",
+ "config",
+ "created_at"
+ ],
+ "type": "object"
+ },
+ "type": [
+ "null",
+ "array"
+ ]
+ }
+ },
+ "required": [
+ "items"
+ ],
+ "type": "object"
+}