Metadata-Version: 2.4
Name: mirador-core
Version: 2.0.4
Summary: Unified core library for the Mirador AI ecosystem
Home-page: https://github.com/guitargnarr/mirador
Author: Matthew David Scott
Author-email: matthewdscott7@gmail.com
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Provides-Extra: dev
Requires-Dist: pytest>=7.4.0; extra == "dev"
Requires-Dist: pytest-cov>=4.1.0; extra == "dev"
Requires-Dist: black>=23.0.0; extra == "dev"
Requires-Dist: flake8>=6.0.0; extra == "dev"
Requires-Dist: mypy>=1.5.0; extra == "dev"
Provides-Extra: ui
Requires-Dist: streamlit>=1.28.0; extra == "ui"
Requires-Dist: plotly>=5.18.0; extra == "ui"
Provides-Extra: web
Requires-Dist: gradio>=3.50.0; extra == "web"
Requires-Dist: fastapi>=0.100.0; extra == "web"
Requires-Dist: uvicorn>=0.23.0; extra == "web"
Provides-Extra: vector
Requires-Dist: chromadb>=0.4.0; extra == "vector"
Requires-Dist: sentence-transformers>=2.2.0; extra == "vector"
Provides-Extra: all
Requires-Dist: streamlit>=1.28.0; extra == "all"
Requires-Dist: plotly>=5.18.0; extra == "all"
Requires-Dist: chromadb>=0.4.0; extra == "all"
Requires-Dist: sentence-transformers>=2.2.0; extra == "all"
Requires-Dist: gradio>=3.50.0; extra == "all"
Requires-Dist: fastapi>=0.100.0; extra == "all"
Requires-Dist: uvicorn>=0.23.0; extra == "all"
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: provides-extra
Dynamic: requires-python
Dynamic: summary

# Mirador Core Library

Unified core components for the Mirador AI ecosystem.

## Components

- **error_handler**: Advanced error handling with circuit breakers
- **context_manager**: Context caching and usage tracking
- **constraint_validator**: Real-world feasibility checking
- **persistence**: Data persistence and session management
- **config**: Configuration management
- **utils**: Shared utilities

## Installation

```bash
pip install -e .
```

## Usage

```python
from mirador_core.error_handler import ErrorHandler
from mirador_core.context_manager import ContextManager
```
