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