Skip to main content

AgentParse

Join our Discord Subscribe on YouTube Connect on LinkedIn Follow on X.com

AgentParse is a high-performance parsing library designed to map various structured data formats (such as Pydantic models, JSON, YAML, and CSV) into agent-understandable blocks. By leveraging AgentParse, engineers can ensure seamless data ingestion for LLM agents, enabling fast and accurate processing of real-world data.

With a focus on enterprise-grade scalability and flexibility, AgentParse provides the tools necessary to build robust systems that support a wide array of business applications. From financial reports to IoT sensor data, AgentParse can handle it all with ease.

Why AgentParse?

In an era where multi-agent systems are increasingly driving enterprise operations, parsing diverse and complex data formats quickly and accurately is critical. Traditional parsing methods can be rigid, error-prone, and often incompatible with large-scale LLM agents.

AgentParse is built with agent engineers and enterprise users in mind, providing a solution that:

  • Adapts to various input formats with minimal configuration
  • Transforms structured data into formats optimized for LLM agents
  • Scales across thousands of agents and high-throughput applications
  • Ensures compliance and data integrity across pipelines

Whether you're building swarms of agents for financial modeling, customer support automation, or real-time decision-making systems, AgentParse helps ensure your agents always have access to clean, reliable, and well-structured data.

Key Features

🔄 Multi-Format Parsing

AgentParse supports multiple data formats out of the box, allowing agent systems to ingest data from various sources:

  • JSON: A widely-used format for APIs and web applications.
  • YAML: A human-readable data format often used in configuration files.
  • CSV: Structured tabular data, common in financial and operational datasets.
  • Pydantic Models: Direct parsing of Python's Pydantic models, ensuring type validation and data structure conformity.

🚀 Seamless Agent Integration

Easily transform incoming data into agent-ready blocks. Agents can immediately interpret and act on parsed data without needing additional transformations or manual configuration.

📊 Enterprise-Grade Scalability

Built with high-performance enterprises in mind, AgentParse is capable of handling:

  • High-throughput environments where data ingestion and parsing must occur in real time.
  • Distributed architectures, where agents deployed across multiple servers can leverage the same data parsing pipeline.

🛡️ Data Validation & Error Handling

AgentParse provides built-in mechanisms for data validation and error handling, ensuring that your data is consistent and error-free before it reaches your agents. For example, it automatically validates data against Pydantic models and ensures that no invalid data is passed to agents.

🛠️ Customizable Pipelines

Integrate AgentParse into your existing pipelines, customize transformations, and add post-processing steps. Easily adapt the library to fit the specific requirements of your use case.


Installation

To install AgentParse, simply run:

pip install -U agentparse

Make sure you are using Python 3.7 or above.


Getting Started

1. Parse a JSON Object

Here’s how to parse a simple JSON object into an agent-understandable block:

from agentparse import AgentParser

data = """
{
    "name": "John Doe",
    "age": 30,
    "role": "Engineer"
}
"""

parser = AgentParser()
agent_block = parser.parse_json(data)
print(agent_block)

Output:

AgentBlock(data={'name': 'John Doe', 'age': 30, 'role': 'Engineer'})

2. Parse a YAML Configuration

from agentparse import AgentParser

yaml_data = """
name: John Doe
age: 30
role: Engineer
"""

parser = AgentParser()
agent_block = parser.parse_yaml(yaml_data)
print(agent_block)

Output:

AgentBlock(data={'name': 'John Doe', 'age': 30, 'role': 'Engineer'})

3. Parse a CSV File

from agentparse import AgentParser

csv_data = """
name,age,role
John Doe,30,Engineer
Jane Doe,25,Analyst
"""

parser = AgentParser()
agent_block = parser.parse_csv(csv_data)
print(agent_block)

Output:

AgentBlock(data=[{'name': 'John Doe', 'age': 30, 'role': 'Engineer'}, {'name': 'Jane Doe', 'age': 25, 'role': 'Analyst'}])

4. Parse a Pydantic Model

AgentParse allows you to parse Pydantic models directly into agent-understandable blocks:

from pydantic import BaseModel
from agentparse import AgentParser

class User(BaseModel):
    name: str
    age: int
    role: str

user = User(name="John Doe", age=30, role="Engineer")

parser = AgentParser()
agent_block = parser.parse_pydantic(user)
print(agent_block)

Output:

AgentBlock(data={'name': 'John Doe', 'age': 30, 'role': 'Engineer'})

Advanced Usage

Custom Data Processing

If your agent requires custom data transformations, AgentParse allows you to extend its capabilities by adding custom processing steps.

from agentparse import AgentParser, AgentBlock

def custom_transform(data):
    # Custom logic to modify the parsed data
    data['role'] = data['role'].upper()
    return AgentBlock(data)

parser = AgentParser()
parser.add_custom_step(custom_transform)

# Parsing a JSON object
data = '{"name": "John Doe", "age": 30, "role": "Engineer"}'
agent_block = parser.parse_json(data)
print(agent_block)

This flexibility allows enterprise engineers to tailor the parsing process to their specific needs.

Batch Processing for High-Throughput Systems

AgentParse supports batch processing, enabling efficient parsing of large datasets across distributed systems:

from agentparse import AgentParser

data_batch = [
    '{"name": "John Doe", "age": 30, "role": "Engineer"}',
    '{"name": "Jane Doe", "age": 25, "role": "Analyst"}'
]

parser = AgentParser()
agent_blocks = parser.batch_parse_json(data_batch)
print(agent_blocks)

This is ideal for applications where real-time agent systems need to process thousands or millions of data entries simultaneously.


Integration with Multi-Agent Systems

AgentParse integrates seamlessly with agent orchestration frameworks such as Swarms, enabling multi-agent systems to process parsed data collaboratively. The parsed agent blocks can be distributed across multiple agents to handle complex workflows, such as financial analysis, marketing automation, or IoT data processing.

Example: Using with Swarms Framework

from agentparse import AgentParser
from swarms import Swarm

# Initialize parser and swarm
parser = AgentParser()
swarm = Swarm()

# Parse a CSV file and distribute data to agents
csv_data = "name,age,role\nJohn Doe,30,Engineer\nJane Doe,25,Analyst"
agent_block = parser.parse_csv(csv_data)
swarm.distribute(agent_block.data)

This example shows how easily AgentParse can be combined with multi-agent frameworks to create scalable, real-time systems that understand and act on data from multiple formats.


Enterprise Use-Cases

1. Financial Data Parsing

Agents can use AgentParse to ingest CSV reports from accounting systems and transform them into actionable insights. For example, CSV data containing revenue projections can be parsed and passed to forecasting agents, enabling more accurate financial predictions.

2. Customer Support Automation

Integrate AgentParse with customer support LLM agents to process JSON or YAML configurations from CRM systems. Parsed data can be used to dynamically generate customer responses or action workflows.

3. IoT Data Processing

AgentParse can help process large volumes of sensor data from industrial IoT devices, transforming CSV or JSON telemetry data into blocks that agents can analyze for predictive maintenance or operational efficiency improvements.


Roadmap

Upcoming Features:

  • Streaming Data Parsing: Real-time parsing from streaming sources like Kafka or WebSockets.
  • Enhanced Data Validation: More extensive validation mechanisms for large-scale enterprise applications.
  • New Formats: Support for additional data formats like Avro, Parquet, and XML.

Contributing

We welcome contributions to improve AgentParse! To contribute:

  1. Fork the repository.
  2. Create a new branch (git checkout -b feature/your-feature-name).
  3. Make your changes and add tests.
  4. Commit your changes (git commit -m "Add new feature")
  5. Push your branch (git push origin feature/your-feature-name)
  6. Create a pull request on GitHub.

For detailed contribution guidelines, please refer to CONTRIBUTING.md.


License

AgentParse is licensed under the MIT License.

Release files for agentparse 0.0.3

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for agentparse 0.0.3
File Size Uploaded
agentparse-0.0.3.tar.gz 16.7 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for agentparse 0.0.3
File Interpreter ABI Platform
agentparse-0.0.3-py3-none-any.whl Python 3 none any Details

Total release size: 33.6 kB

Release files / agentparse-0.0.3.tar.gz

Download URL agentparse-0.0.3.tar.gz
Size 16.7 kB
Tags Source
SHA-256 checksum
How to use checksums
a2268c19dce87ee42ac56d63c06c1e217381c935b4125f30be0317b3017429cb
BLAKE2b-256 checksum
How to use checksums
35259c40357cab39f989bbfeaabdf06798396e99192f40c8b0c39969b4e2c0a4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via poetry/1.8.3 CPython/3.12.6 Darwin/23.3.0

Release files / agentparse-0.0.3-py3-none-any.whl

Download URL agentparse-0.0.3-py3-none-any.whl
Size 16.9 kB
Tags Python 3
SHA-256 checksum
How to use checksums
c483f39ccfbbb2d82cb7ebdf75a1d50dab4e2582bacc46557e105ae82213bdc9
BLAKE2b-256 checksum
How to use checksums
74168f5a9f8ae7a328e7d496bdfabfb7c5af6e0b1309f03dfe969ec705edcd5e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via poetry/1.8.3 CPython/3.12.6 Darwin/23.3.0

Release history Release notifications | RSS feed

This release

0.0.3 This release

2 release files

0.0.2

2 release files

0.0.1

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page