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.
|