Metadata-Version: 2.1
Name: monkey-coder-core
Version: 1.1.1
Summary: Python orchestration core for Monkey Coder
Author: GaryOcean428
Author-email: GaryOcean428 <gary@ocean428.dev>
Project-URL: Homepage, https://github.com/GaryOcean428/monkey-coder
Project-URL: Repository, https://github.com/GaryOcean428/monkey-coder
Project-URL: Documentation, https://github.com/GaryOcean428/monkey-coder/docs
Project-URL: Bug Tracker, https://github.com/GaryOcean428/monkey-coder/issues
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: PyJWT[crypto] >=2.10.1
Requires-Dist: PyYAML >=6.0.2
Requires-Dist: aiohttp >=3.12.15
Requires-Dist: aiomysql >=0.2.0
Requires-Dist: aiosqlite >=0.21.0
Requires-Dist: anthropic >=0.64.0
Requires-Dist: anyio >=4.10.0
Requires-Dist: asyncio-mqtt >=0.16.2
Requires-Dist: asyncpg >=0.30.0
Requires-Dist: beautifulsoup4 >=4.13.4
Requires-Dist: celery >=5.5.3
Requires-Dist: click >=8.2.1
Requires-Dist: fastapi >=0.116.1
Requires-Dist: google-genai >=1.30.0
Requires-Dist: groq >=0.31.0
Requires-Dist: html2text >=2025.4.15
Requires-Dist: httpx >=0.28.1
Requires-Dist: matplotlib >=3.9.4
Requires-Dist: numpy >=1.21.0
Requires-Dist: openai >=1.99.9
Requires-Dist: passlib[bcrypt] >=1.7.4
Requires-Dist: prometheus-client >=0.19.0
Requires-Dist: psutil >=5.9.0
Requires-Dist: pydantic >=2.11.7
Requires-Dist: pyotp >=2.9.0
Requires-Dist: python-jose[cryptography] >=3.5.0
Requires-Dist: python-multipart >=0.0.20
Requires-Dist: qwen-agent >=0.0.29
Requires-Dist: redis >=6.4.0
Requires-Dist: rich >=14.1.0
Requires-Dist: scikit-learn >=1.7.1
Requires-Dist: sentry-sdk[fastapi] >=2.35.0
Requires-Dist: stripe >=12.4.0
Requires-Dist: typer >=0.16.0
Requires-Dist: uvicorn[standard] >=0.35.0
Provides-Extra: dev
Requires-Dist: black >=23.0.0 ; extra == 'dev'
Requires-Dist: black >=23.7.0 ; extra == 'dev'
Requires-Dist: coverage >=7.3.0 ; extra == 'dev'
Requires-Dist: flake8 >=6.0.0 ; extra == 'dev'
Requires-Dist: isort >=5.12.0 ; extra == 'dev'
Requires-Dist: mypy >=1.5.0 ; extra == 'dev'
Requires-Dist: pre-commit >=3.4.0 ; extra == 'dev'
Requires-Dist: pytest-asyncio >=0.21.0 ; extra == 'dev'
Requires-Dist: pytest-mock >=3.11.0 ; extra == 'dev'
Requires-Dist: pytest >=7.0.0 ; extra == 'dev'
Requires-Dist: pytest >=7.4.0 ; extra == 'dev'
Provides-Extra: test
Requires-Dist: anyio >=4.0.0 ; extra == 'test'
Requires-Dist: coverage >=7.3.0 ; extra == 'test'
Requires-Dist: httpx >=0.25.0 ; extra == 'test'
Requires-Dist: pytest-asyncio >=0.21.0 ; extra == 'test'
Requires-Dist: pytest-mock >=3.11.0 ; extra == 'test'
Requires-Dist: pytest >=7.4.0 ; extra == 'test'

# Monkey Coder Core

Python orchestration core for AI-powered code generation and analysis.

## Features

- Multi-agent orchestration with SuperClaude, monkey1, and Gary8D systems
- Support for multiple AI providers (OpenAI, Anthropic, Google, Qwen)
- Real-time monitoring and metrics collection
- Comprehensive error tracking with Sentry
- Production-ready FastAPI backend

## Installation

```bash
pip install monkey-coder-core
```

## Usage

```python
from monkey_coder.app.main import app

# Run with uvicorn
# uvicorn monkey_coder.app.main:app --host 0.0.0.0 --port 8000
```

## Model Support

The system only uses permitted models as defined in the MODEL_REGISTRY:

### OpenAI

- gpt-4.1
- gpt-4.1-mini

### Anthropic

- claude-4-opus
- claude-4-sonnet
- claude-3.7-sonnet
- claude-3.5-sonnet
- claude-3.5-haiku

### Google

- gemini-2.5-pro
- gemini-2.5-flash
- gemini-2.0-pro
- gemini-2.0-flash

### Qwen

- qwen-coder-3-32b
- qwen-coder-3-14b
- qwen-coder-3-7b
- qwen-coder-3-1.5b

### Grok

- grok-4
- grok-3

### Moonshot

- kimi-k2

## License

MIT License
