File size: 2,422 Bytes
157501c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
---
license: apache-2.0
language:
- en
base_model:
- Inserloft/Cleo-Kyro
tags:
- AI
- Cleo
- Open-Source
---

---
license: mit
language:
- en
- es
tags:
- llm
- chatbot
- ai-assistant
- open-source
- inserloft
---

# 🧠 Cleo-Kyro

**Cleo-Kyro** is an experimental AI assistant model developed by **Inserloft**, designed to provide a modern, flexible, and open-source conversational experience.

> Create. Imagine. Transform.

---

## ✨ Overview

Cleo-Kyro is part of the **Cleo ecosystem**, a next-generation AI assistant project focused on usability, creativity, and accessibility.

This repository contains an **open-source version** of the Cleo model, intended for developers, researchers, and enthusiasts.

---

## πŸš€ Features

- πŸ’¬ Conversational AI assistant
- 🧠 Context-aware responses
- ⚑ Lightweight & flexible usage
- πŸ”“ Open-source (MIT)
- 🧩 Easy integration with local and cloud environments

---

## πŸ“¦ Installation

Make sure you have the Hugging Face CLI installed:

```bash
pip install -U huggingface_hub
```

## πŸ“₯ Download Model

Download the full model:
```bash
huggingface-cli download Inserloft/Cleo-Kyro --local-dir ./model
```

Download specific files (recommended):
```bash
huggingface-cli download Inserloft/Cleo-Kyro \
  --include "*.gguf" \
  --local-dir ./model
```

# πŸ§ͺ Usage (Example)
```bash
from transformers import AutoTokenizer, AutoModelForCausalLM

tokenizer = AutoTokenizer.from_pretrained("Inserloft/Cleo-Kyro")
model = AutoModelForCausalLM.from_pretrained("Inserloft/Cleo-Kyro")

inputs = tokenizer("Hello Cleo!", return_tensors="pt")
outputs = model.generate(**inputs, max_new_tokens=100)

print(tokenizer.decode(outputs[0]))
```

# 🧩 Project Structure
Component	|   Description
Cleo-Kyro	|   Open-source model
Cleo (UI)	|   Interface / assistant experience

# πŸ”’ Versions
Cleo-Kyro (this repo) β†’ Open-source version
Kyro 1.5 β†’ Experimental / not publicly available
Future versions may include private and advanced models

# ⚠️ Disclaimer

This is an experimental model and may produce inaccurate or unexpected outputs.

Use responsibly.

# 🌐 Links
### 🌍 Website: https://inserloft.dev
### πŸ€— Hugging Face: https://huggingface.co/Inserloft/Cleo-Kyro
### 🐦 X (Twitter): https://x.com/Inserloft
### πŸ“Έ Instagram: https://instagram.com/Inserloft

# πŸ“œ License

MIT License β€” feel free to use, modify, and build upon this project.