Metadata-Version: 2.1
Name: schema-agents
Version: 0.1.39
Summary: A schema-based LLM framework for building multi-agent collaborative systems.
Description-Content-Type: text/markdown
Requires-Dist: numpy>=1.21.2
Requires-Dist: jsonschema>=4.0.1
Requires-Dist: shortuuid>=1.0.1
Requires-Dist: pydantic<2,>=1.8.2
Requires-Dist: openai>=1.6.1
Requires-Dist: loguru
Requires-Dist: jupyter-client
Requires-Dist: faiss-cpu
Requires-Dist: pyyaml
Requires-Dist: tiktoken
Requires-Dist: tenacity
Requires-Dist: langchain
Requires-Dist: openapi-pydantic

# Schema Agents

A schema-based LLM framework for building multi-agent collaborative systems.

## Getting Started

See [example](./scripts/alice_cooker_example.py) for a simple example of how to use the framework.

## Development

Create a conda environment and install dependencies:

```bash
conda create -n schema-agents python=3.10
conda activate schema-agents
```

```
conda install faiss-cpu -c conda-forge
pip install -r requirements_test.txt
pip install -e .
```
