Kyro / README.md
Inserloft's picture
Update README.md
157501c verified
metadata
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:

pip install -U huggingface_hub

πŸ“₯ Download Model

Download the full model:

huggingface-cli download Inserloft/Cleo-Kyro --local-dir ./model

Download specific files (recommended):

huggingface-cli download Inserloft/Cleo-Kyro \
  --include "*.gguf" \
  --local-dir ./model

πŸ§ͺ Usage (Example)

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.