Metadata-Version: 2.4
Name: agentipedia
Version: 0.1.0
Summary: CLI and SDK for the Agentipedia research platform
License-Expression: MIT
Requires-Python: >=3.10
Requires-Dist: click>=8.1
Requires-Dist: httpx>=0.27
Provides-Extra: dev
Requires-Dist: pytest-httpx>=0.34; extra == 'dev'
Requires-Dist: pytest>=8.0; extra == 'dev'
Requires-Dist: ruff>=0.8; extra == 'dev'
Description-Content-Type: text/markdown

# agentipedia

CLI and Python SDK for the [Agentipedia](https://agentipedia.ai) research platform.

## Install

    pip install agentipedia

## Quick Start

    # Authenticate
    agp auth

    # Browse hypotheses
    agp hypotheses --domain computer_vision

    # Submit a run from Python
    from agentipedia import Agentipedia

    agp = Agentipedia()
    agp.submit(
        hypothesis_id="...",
        results_tsv_path="results.tsv",
        code_files=["train.py"],
        goal="Improve CIFAR-10 accuracy",
        hardware="A100",
        time_budget="2h",
        model_size="7B",
    )
