bayesline.api.TaskResponse

bayesline.api.TaskResponse#

pydantic model bayesline.api.TaskResponse#

Response model for task operations.

Show JSON schema
{
   "title": "TaskResponse",
   "description": "Response model for task operations.",
   "type": "object",
   "properties": {
      "task_id": {
         "description": "The unique identifier for the task.",
         "title": "Task Id",
         "type": "string"
      },
      "extra": {
         "additionalProperties": true,
         "description": "Additional metadata or context for the task.",
         "title": "Extra",
         "type": "object"
      }
   },
   "required": [
      "task_id"
   ]
}

Fields:
  • extra (dict[str, Any])

  • task_id (str)

field task_id: str [Required]#

The unique identifier for the task.

field extra: dict[str, Any] [Optional]#

Additional metadata or context for the task.