Metadata-Version: 2.4
Name: clokai
Version: 1.0.0
Summary: ClokAI - Unified Library for All ClokAI Transformer Models
Home-page: https://github.com/ClokAI/clokai
Author: ClokAI
Author-email: ClokAI <contact@clokai.dev>
Project-URL: Homepage, https://github.com/ClokAI/clokai
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: torch>=2.0.0
Requires-Dist: transformers>=4.35.0
Requires-Dist: safetensors>=0.4.0
Dynamic: author
Dynamic: home-page
Dynamic: requires-python

<div align="center">

![ClokAI](https://media.licdn.com/dms/image/v2/D4D3DAQENbD2QWb9lWQ/image-scale_191_1128/B4DZ8vzupUI8AY-/0/1783213517643/clokai_cover?e=1784617200&v=beta&t=t5gn4icq1BaAmc-_UUzTCD7nu0kzRkDLe80sTHGXFTw)

</div>

# ClokAI

Unified Python library for all ClokAI transformer models. One library, every model.

## Installation

```bash
pip install clokai
```

## Quick Start

```python
from clokai import CiModel, AutoClokAI

# Load any ClokAI model from HuggingFace
model = AutoClokAI.from_pretrained("ClokAI/ci-base")
tokenizer = AutoClokAI.load_tokenizer("ClokAI/ci-base")

# Generate text
inputs = tokenizer("Hello, I am", return_tensors="pt")
outputs = model.generate(**inputs, max_length=100)
print(tokenizer.decode(outputs[0]))
```

## Available Models

| Model | Task | HuggingFace |
|---|---|---|
| CI Base | General Reasoning | `ClokAI/ci-base` |
| CI Military | Defense Systems | `ClokAI/ci-military` |
| CI Edge | Edge Deployment | `ClokAI/ci-edge` |

## Features

- **SNN** - Spiking Neural Networks
- **KAN** - Kolmogorov-Arnold Networks
- **MoE** - Mixture of Experts
- **GQA** - Grouped Query Attention
- **SwiGLU** - Feed-Forward Network

## License

Proprietary - ClokAI
