llamaindex · Schema

UpdateExtractionAgentRequest

Request body for updating an existing extraction agent.

Properties

Name Type Description
name string Updated name for the extraction agent.
data_schema object Updated JSON Schema for data extraction.
description string Updated description of the extraction agent.
View JSON Schema on GitHub

JSON Schema

llamaindex-updateextractionagentrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpdateExtractionAgentRequest",
  "title": "UpdateExtractionAgentRequest",
  "type": "object",
  "description": "Request body for updating an existing extraction agent.",
  "properties": {
    "name": {
      "type": "string",
      "description": "Updated name for the extraction agent."
    },
    "data_schema": {
      "type": "object",
      "additionalProperties": true,
      "description": "Updated JSON Schema for data extraction."
    },
    "description": {
      "type": "string",
      "description": "Updated description of the extraction agent."
    }
  }
}