Metadata-Version: 2.4
Name: acodeai
Version: 1.0.1
Summary: A-CodeAI SDK - Korean Medicine Intelligence & Self-Evolving Memory API
Home-page: https://github.com/mkmlab-hq/acodeai-python
Author: MKM Lab
Author-email: support@mkmlife.com
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Requires-Python: >=3.11
Description-Content-Type: text/markdown
Requires-Dist: requests>=2.28.0
Provides-Extra: dev
Requires-Dist: pytest>=7.4.0; extra == "dev"
Requires-Dist: pytest-asyncio>=0.21.0; extra == "dev"
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: provides-extra
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# 🐍 A-CodeAI Python SDK

**One-line installation for Korean Medicine Intelligence and Self-Evolving Memory**

[![PyPI version](https://badge.fury.io/py/acodeai.svg)](https://pypi.org/project/acodeai/)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![Downloads](https://pepy.tech/badge/acodeai)](https://pepy.tech/project/acodeai)

---

## ⚡ Quick Start

### Installation

```bash
pip install acodeai
```

### Basic Usage

```python
from acodeai import JemaClient, AthenaClient

# Initialize clients
jema = JemaClient(api_key="your_api_key")
athena = AthenaClient(api_key="your_api_key")

# Analyze constitution (one line!)
result = jema.analyze_constitution(
    survey_answers=[{"question": "체질", "answer": "활발함"}]
)
print(f"Your constitution: {result.constitution}")

# Store memory (one line!)
memory = athena.store_memory(
    content="User prefers Python over JavaScript",
    category="preference"
)
print(f"Memory ID: {memory.memory_id}")

# Search memory (one line!)
results = athena.search_memory(
    query="What does the user prefer?",
    limit=5
)
print(f"Found {len(results)} memories")
```

---

---

## 🆚 Open Source vs Pro

| Feature | Open Source (MIT) | Pro (Paid API) |
|---------|------------------|----------------|
| **Basic Workflow** | ✅ Linear tasks | ✅ Self-Healing + Loops |
| **Code Generation** | ✅ Template-based | ✅ Context-Aware |
| **Memory Storage** | ✅ Local/SQLite | ✅ Cloud Vector DB |
| **Analysis** | ✅ Basic logs | ✅ MKM12 Deep Analysis |
| **Team Features** | ❌ | ✅ Team memory sharing |

**Need more power?** [Get A-CodeAI Pro API Key](https://a-codeai.com/pro)

---

## 📚 Documentation

- [API Reference](API_REFERENCE.md) - Complete API documentation
- [Examples](examples/) - Code examples
- [Migration Guide](../MIGRATION_GUIDE.md) - Migrate from jema-ai/athena-sdk
- [Full Documentation](https://docs.mkmlife.com/sdk/python) - Online docs
- [Changelog](CHANGELOG.md) - Version history
- [GitHub Repository](https://github.com/mkmlab-hq/acodeai-python)

---

## 🤝 Support

- **Documentation**: https://docs.mkmlife.com/sdk/python
- **Issues**: https://github.com/mkmlab-hq/acodeai-python/issues
- **Discord**: [Join our community](https://discord.gg/acodeai)

---

**© 2025 MKM Lab. All rights reserved.**

