Metadata-Version: 2.4
Name: yera
Version: 0.2.1
Summary: An easier, safer way to write AI apps
Requires-Python: >=3.10
Requires-Dist: anthropic>=0.76.0
Requires-Dist: azure-ai-inference>=1.0.0b9
Requires-Dist: azure-identity>=1.25.1
Requires-Dist: azure-mgmt-cognitiveservices>=14.1.0
Requires-Dist: azure-mgmt-resource>=24.0.0
Requires-Dist: cloudpickle>=3.1.2
Requires-Dist: dependency-injector>=4.41.0
Requires-Dist: fastapi>=0.104.0
Requires-Dist: filelock>=3.20.3
Requires-Dist: gguf>=0.17.1
Requires-Dist: keyring>=25.7.0
Requires-Dist: networkx>=3.4.2
Requires-Dist: numpy>=2.2.6
Requires-Dist: openai>=2.16.0
Requires-Dist: pandas-stubs>=2.3.3.251219
Requires-Dist: pandas>=2.2.3
Requires-Dist: platformdirs>=4.5.1
Requires-Dist: prometheus-client>=0.19.0
Requires-Dist: pyarrow>=22.0.0
Requires-Dist: pydantic-settings>=2.12.0
Requires-Dist: pydantic>=2.11.4
Requires-Dist: requests>=2.31.0
Requires-Dist: sqlalchemy>=2.0.0
Requires-Dist: tabulate>=0.9.0
Requires-Dist: termcolor>=3.3.0
Requires-Dist: tomli-w>=1.2.0
Requires-Dist: urllib3>=2.6.3
Requires-Dist: uvicorn>=0.24.0
Requires-Dist: virtualenv>=20.36.1
Provides-Extra: llama-cpp
Requires-Dist: llama-cpp-python>=0.3.16; extra == 'llama-cpp'
Description-Content-Type: text/markdown

# Yera

## Installation

```bash
pip install yera
```

## Quick Start

Run a development environment in your current directory:

```bash
yera dev
```

This will:

- Discover agents in your current directory
- Start the execution server
- Open the UI in your browser

Run a specific agent:

```bash
yera run path/to/agent.py
```
