Metadata-Version: 2.4
Name: monkey-coder-core
Version: 1.0.2
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.8
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: fastapi>=0.104.0
Requires-Dist: uvicorn[standard]>=0.24.0
Requires-Dist: pydantic>=2.5.0
Requires-Dist: httpx>=0.25.0
Requires-Dist: openai>=1.3.0
Requires-Dist: anthropic>=0.8.0
Requires-Dist: google-genai>=0.3.0
Requires-Dist: groq>=0.4.0
Requires-Dist: aiohttp>=3.9.0
Requires-Dist: qwen-agent>=0.0.10
Requires-Dist: python-multipart>=0.0.6
Requires-Dist: python-jose[cryptography]>=3.3.0
Requires-Dist: passlib[bcrypt]>=1.7.4
Requires-Dist: asyncio-mqtt>=0.13.0
Requires-Dist: redis>=5.0.0
Requires-Dist: celery>=5.3.0
Requires-Dist: click>=8.1.0
Requires-Dist: rich>=13.7.0
Requires-Dist: typer>=0.9.0
Requires-Dist: anyio>=4.0.0
Requires-Dist: psutil>=5.9.0
Requires-Dist: pyotp>=2.8.0
Requires-Dist: PyJWT[crypto]>=2.6.0
Requires-Dist: sentry-sdk[fastapi]>=1.40.0
Requires-Dist: PyYAML>=6.0.0
Requires-Dist: asyncpg>=0.29.0
Requires-Dist: aiomysql>=0.2.0
Requires-Dist: aiosqlite>=0.19.0
Requires-Dist: beautifulsoup4>=4.12.0
Requires-Dist: html2text>=2020.1.16
Provides-Extra: dev
Requires-Dist: pytest>=7.4.0; extra == "dev"
Requires-Dist: pytest-asyncio>=0.21.0; extra == "dev"
Requires-Dist: pytest-mock>=3.11.0; extra == "dev"
Requires-Dist: black>=23.7.0; extra == "dev"
Requires-Dist: isort>=5.12.0; extra == "dev"
Requires-Dist: mypy>=1.5.0; extra == "dev"
Requires-Dist: flake8>=6.0.0; extra == "dev"
Requires-Dist: pre-commit>=3.4.0; extra == "dev"
Requires-Dist: coverage>=7.3.0; extra == "dev"
Provides-Extra: test
Requires-Dist: pytest>=7.4.0; extra == "test"
Requires-Dist: pytest-asyncio>=0.21.0; extra == "test"
Requires-Dist: pytest-mock>=3.11.0; extra == "test"
Requires-Dist: httpx>=0.25.0; extra == "test"
Requires-Dist: coverage>=7.3.0; extra == "test"
Requires-Dist: anyio>=4.0.0; extra == "test"
Dynamic: author
Dynamic: license-file
Dynamic: requires-python

# 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
