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