Metadata-Version: 2.4
Name: clokai
Version: 1.1.3
Summary: Library for loading ClokAI transformer models
Home-page: https://github.com/ClokAI/clokai
Author: ClokAI
Author-email: contact@clokai.dev
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: author-email
Dynamic: home-page
Dynamic: requires-python

# ClokAI

Python library for loading ClokAI transformer models.

## About

ClokAI is an organization developing custom AI architectures for AGI research and specialized model development. This library helps load and use ClokAI models with HuggingFace transformers.

## Install

```bash
pip install clokai
```

## Usage

```python
from clokai import AutoClokAI

model = AutoClokAI.from_pretrained("ClokAI/ci-base")
tokenizer = AutoClokAI.load_tokenizer("ClokAI/ci-base")

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