Text Generation
Transformers
Safetensors
English
ci
clokai
persona
reasoning
conversational
emotion
tools
Ci-base
ci-instruct-base
Instructions to use clokai/ci-base with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use clokai/ci-base with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="clokai/ci-base") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModelForCausalLM model = AutoModelForCausalLM.from_pretrained("clokai/ci-base", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use clokai/ci-base with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "clokai/ci-base" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "clokai/ci-base", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/clokai/ci-base
- SGLang
How to use clokai/ci-base with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "clokai/ci-base" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "clokai/ci-base", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "clokai/ci-base" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "clokai/ci-base", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use clokai/ci-base with Docker Model Runner:
docker model run hf.co/clokai/ci-base
File size: 8,617 Bytes
028342d eb3b687 028342d eb3b687 44d821c 028342d 2a72ff2 eb3b687 028342d 224cf56 028342d 224cf56 028342d eb3b687 028342d eb3b687 028342d eb3b687 028342d eb3b687 028342d eb3b687 028342d eb3b687 028342d eb3b687 028342d eb3b687 028342d eb3b687 028342d eb3b687 028342d eb3b687 028342d eb3b687 028342d eb3b687 028342d eb3b687 028342d eb3b687 028342d eb3b687 028342d eb3b687 028342d eb3b687 028342d eb3b687 028342d eb3b687 028342d eb3b687 028342d eb3b687 028342d eb3b687 028342d eb3b687 028342d eb3b687 028342d eb3b687 028342d eb3b687 028342d eb3b687 028342d eb3b687 028342d eb3b687 028342d eb3b687 028342d eb3b687 028342d eb3b687 028342d eb3b687 028342d eb3b687 028342d eb3b687 028342d eb3b687 028342d eb3b687 028342d eb3b687 028342d eb3b687 028342d eb3b687 028342d eb3b687 028342d eb3b687 028342d eb3b687 028342d eb3b687 028342d eb3b687 028342d eb3b687 028342d eb3b687 028342d eb3b687 028342d eb3b687 028342d eb3b687 028342d eb3b687 028342d eb3b687 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 | ---
language:
- en
tags:
- clokai
- ci
- persona
- reasoning
- conversational
- emotion
- tools
- text-generation
- Ci-base
- ci-instruct-base
model_type: ci
license: apache-2.0
library_name: transformers
pipeline_tag: text-generation
---

## ci-base
ci is a persona-based conversational AI model developed by [ClokAI](https://huggingface.co/clokai). This is the **base** version of the ci model family.
ci is designed to maintain consistent personality across conversations while understanding emotional context and performing multi-step reasoning. The model combines advanced language modeling with specialized modules for emotion recognition, persona consistency, tool usage, and reasoning capabilities.
---
## Table of Contents
- [Model Details](#model-details)
- [Model Description](#model-description)
- [Model Sources](#model-sources)
- [Intended Use](#intended-use)
- [Direct Use](#direct-use)
- [Out-of-Scope Use](#out-of-scope-use)
- [Bias, Risks, and Limitations](#bias-risks-and-limitations)
- [Training Details](#training-details)
- [Training Data](#training-data)
- [Training Procedure](#training-procedure)
- [Technical Specifications](#technical-specifications)
- [Model Architecture](#model-architecture)
- [Model Parameters](#model-parameters)
- [Computational Requirements](#computational-requirements)
- [How to Get Started with the Model](#how-to-get-started-with-the-model)
- [Citation](#citation)
- [Contact](#contact)
---
## Model Details
### Model Description
- **Developed by:** [ClokAI](https://huggingface.co/clokai)
- **Model type:** Persona-based Conversational AI
- **Language(s) (NLP):** English
- **License:** Apache 2.0
- **Finetuned from model:** Custom architecture (not finetuned from existing model)
ci is a language model with built-in capabilities for:
- **Emotion Recognition**: Understanding 12 different emotional states
- **Persona Consistency**: Maintaining stable personality traits
- **Tool Usage**: Identifying when external tools are needed
- **Multi-step Reasoning**: Processing complex queries through reasoning steps
### Model Sources
- **Repository:** [ClokAI/ci-base](https://huggingface.co/clokai/ci-base)
- **Paper:** Not available
- **Demo:** Not available
- **Library:** [clokai](https://pypi.org/project/clokai/)
---
## Intended Use
### Direct Use
ci is intended for conversational AI applications that require:
- Consistent persona behavior across interactions
- Emotional intelligence in responses
- Multi-step reasoning capabilities
- Tool-augmented conversations
**Example use cases:**
- Chatbots and virtual assistants
- Character-based games and simulations
- Customer support with emotional awareness
- Educational tutoring systems
- Creative writing assistance
### Out-of-Scope Use
ci should NOT be used for:
- **Medical diagnosis or advice** - The model is not a medical professional
- **Legal advice** - The model cannot provide legal counsel
- **Financial decisions** - The model should not be used for financial planning
- **Harmful content generation** - The model should not generate harmful, deceptive, or illegal content
- **Autonomous decision-making** - The model should not make critical decisions without human oversight
- **Surveillance or monitoring** - The model should not be used for invasive monitoring
---
## Bias, Risks, and Limitations
### Known Limitations
1. **Context Length**: Limited to 512 tokens. Longer conversations may require truncation.
2. **Language**: Currently optimized for English only. Multilingual support is planned.
3. **Knowledge Cutoff**: The model's knowledge is limited to its training data.
4. **Hallucination**: Like all language models, ci may generate plausible-sounding but incorrect information.
5. **Persona Drift**: Very long conversations may see gradual personality changes.
6. **Tool Integration**: Tool usage capabilities require additional framework integration.
### Bias Considerations
- The model may reflect biases present in its training data
- Emotional responses may not be appropriate for all cultural contexts
- Persona consistency may vary across different conversation topics
### Ethical Considerations
- Human oversight is recommended for sensitive applications
- The model's emotional responses should not be taken as professional advice
- Users should be informed they are interacting with an AI system
---
## Training Details
### Training Data
The model was trained on a curated dataset of conversational data with persona annotations and emotional labels. The dataset includes:
- Multi-turn conversations
- Persona descriptions and consistent responses
- Emotional context annotations
- Tool usage examples
- Reasoning chains
**Dataset size:** Up to 500,000 samples
### Training Procedure
| Parameter | Value |
|---|---|
| Training Steps | 74,000 / 100,000 |
| Effective Batch Size | 32 |
| Learning Rate | 3e-4 |
| Weight Decay | 0.01 |
| Warmup Steps | 1,000 |
| Label Smoothing | 0.05 |
| Max Gradient Norm | 1.0 |
| Precision | FP16 |
**Training Progress:**
- Current step: 74,000
- Target steps: 100,000
- Completion: 74%
---
## Technical Specifications
### Model Architecture
| Component | Value |
|---|---|
| Hidden Size | 1024 |
| Number of Layers | 16 |
| Attention Heads | 16 |
| KV Heads | 8 |
| Intermediate Size | 2816 |
| Max Position Embeddings | 512 |
| Vocabulary Size | 32,000 |
### Model Parameters
| Component | Parameters |
|---|---|
| Base Transformer | ~335M |
| Emotion Module | ~3M |
| Persona Module | ~6M |
| Tool Module | ~1M |
| Reasoning Module | ~5M |
| **Total** | **~350M** |
### Computational Requirements
| Requirement | Value |
|---|---|
| FP16 Memory | ~700 MB |
| FP32 Memory | ~1.4 GB |
| Recommended GPU | 4GB+ VRAM |
| Inference Speed | ~50 tokens/sec (GPU) |
---
## How to Get Started with the Model
### Installation
Install the required packages:
```bash
# Required packages
pip install torch>=2.0.0
pip install transformers>=4.35.0
pip install safetensors>=0.4.0
# Install ClokAI library (recommended)
pip install clokai
```
### Basic Usage with ClokAI Library
```python
from clokai import AutoClokAI
# Load model and tokenizer
model = AutoClokAI.from_pretrained("ClokAI/ci-base")
tokenizer = AutoClokAI.load_tokenizer("ClokAI/ci-base")
# Simple generation
prompt = "Hello! How are you today?"
inputs = tokenizer(prompt, return_tensors="pt")
outputs = model.generate(**inputs, max_length=150)
print(tokenizer.decode(outputs[0], skip_special_tokens=True))
```
### Advanced Usage with ClokAI Library
```python
from clokai import AutoClokAI
# Load model
model = AutoClokAI.from_pretrained("ClokAI/ci-base")
tokenizer = AutoClokAI.load_tokenizer("ClokAI/ci-base")
# Generate with control parameters
prompt = "Tell me about yourself"
inputs = tokenizer(prompt, return_tensors="pt")
outputs = model.generate(
**inputs,
max_new_tokens=100,
temperature=0.7,
top_k=50,
top_p=0.9,
repetition_penalty=1.1
)
response = tokenizer.decode(outputs[0], skip_special_tokens=True)
print(response)
```
### Memory-Efficient Loading
```python
from clokai import AutoClokAI
import torch
# Load in FP16 to save memory
model = AutoClokAI.from_pretrained(
"ClokAI/ci-base",
torch_dtype=torch.float16,
device_map="auto"
)
tokenizer = AutoClokAI.load_tokenizer("ClokAI/ci-base")
```
### Alternative: Using Transformers Directly
If you prefer to use transformers directly:
```python
from transformers import AutoModelForCausalLM, AutoTokenizer
model = AutoModelForCausalLM.from_pretrained("ClokAI/ci-base")
tokenizer = AutoTokenizer.from_pretrained("ClokAI/ci-base")
inputs = tokenizer("Hello!", return_tensors="pt")
outputs = model.generate(**inputs, max_length=100)
print(tokenizer.decode(outputs[0]))
```
---
## Citation
```bibtex
@misc{clokai2024ci,
title={ci: A Persona-based Conversational AI Model},
author={ClokAI Team},
year={2024},
publisher={HuggingFace},
journal={HuggingFace Hub},
howpublished={\url{https://huggingface.co/clokai/ci-base}}
}
```
---
## Contact
- **Organization:** [ClokAI](https://huggingface.co/clokai)
- **Repository:** [https://huggingface.co/clokai/ci-base](https://huggingface.co/clokai/ci-base)
- **Issues:** Please open an issue on the model repository
---
<p align="center">
Built with ❤️ by <a href="https://huggingface.co/clokai">ClokAI</a>
</p>
|