Skip to content
Get started

Delete Extraction Agent

extraction.extraction_agents.delete(strextraction_agent_id) -> object
DELETE/api/v1/extraction/extraction-agents/{extraction_agent_id}

Delete Extraction Agent

ParametersExpand Collapse
extraction_agent_id: str
ReturnsExpand Collapse
object

Delete Extraction Agent

import os
from llama_cloud import LlamaCloud

client = LlamaCloud(
    api_key=os.environ.get("LLAMA_CLOUD_API_KEY"),  # This is the default and can be omitted
)
extraction_agent = client.extraction.extraction_agents.delete(
    "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
)
print(extraction_agent)
{}
Returns Examples
{}