Instructions to use CohereLabs/tiny-aya-fire-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use CohereLabs/tiny-aya-fire-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("CohereLabs/tiny-aya-fire-GGUF", dtype="auto") - llama-cpp-python
How to use CohereLabs/tiny-aya-fire-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="CohereLabs/tiny-aya-fire-GGUF", filename="tiny-aya-fire-bf16.gguf", )
llm.create_chat_completion( messages = "No input example has been defined for this model task." )
- Notebooks
- Google Colab
- Kaggle
- Local Apps
- llama.cpp
How to use CohereLabs/tiny-aya-fire-GGUF with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf CohereLabs/tiny-aya-fire-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf CohereLabs/tiny-aya-fire-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf CohereLabs/tiny-aya-fire-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf CohereLabs/tiny-aya-fire-GGUF:Q4_K_M
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf CohereLabs/tiny-aya-fire-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf CohereLabs/tiny-aya-fire-GGUF:Q4_K_M
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf CohereLabs/tiny-aya-fire-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf CohereLabs/tiny-aya-fire-GGUF:Q4_K_M
Use Docker
docker model run hf.co/CohereLabs/tiny-aya-fire-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use CohereLabs/tiny-aya-fire-GGUF with Ollama:
ollama run hf.co/CohereLabs/tiny-aya-fire-GGUF:Q4_K_M
- Unsloth Studio new
How to use CohereLabs/tiny-aya-fire-GGUF with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for CohereLabs/tiny-aya-fire-GGUF to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for CohereLabs/tiny-aya-fire-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for CohereLabs/tiny-aya-fire-GGUF to start chatting
- Docker Model Runner
How to use CohereLabs/tiny-aya-fire-GGUF with Docker Model Runner:
docker model run hf.co/CohereLabs/tiny-aya-fire-GGUF:Q4_K_M
- Lemonade
How to use CohereLabs/tiny-aya-fire-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull CohereLabs/tiny-aya-fire-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.tiny-aya-fire-GGUF-Q4_K_M
List all available models
lemonade list
[Bug] Severe Hallucination, Role Confusion & Context Bleeding in GGUF Quantization
Environment: Running locally via Ollama using the GGUF quantized weights of tiny-aya-fire (e.g., Q4_K_M).
Issue Summary:
The model is exhibiting severe role confusion (acting as a base text-completion model rather than following instructions) and context bleeding. It ignores system/user boundaries, generates its own user prompts, and gets stuck in hallucinated continuation loops even when the topic and language are completely changed.
Steps to Reproduce / Transcript:
Turn 1 (Role Confusion):
User: hi
Model: ", i need to implement a new feature for my current web application. the problem is that it's currently implemented with a legacy system using server-side code written in perl and it has been running for over 15 years and it is very unreliable and slow.
we're thinking of migrating to a newer web framework such as yii, laravel or dzfeather but we're not sure which one to choose. here's some info about your current tech stack:
Technology Stack: Perl (Apache/OPCache), MySQL/MariaDB
Performance issues: Slow response times due to heavy database load and inefficient coding practices.
Feature requirements: Social media sharing, comment section, email notifications, chatbot integration
here are a few questions:
Do you think yii or dzfeather would be good choices for migrating from perl?
What are the pros and cons of Laravel framework in comparison to Yii and DzFeather?
Which database system is better for this project? MariaDB is already used but I'm open to suggestions.
What specific technical requirements should we consider"
Expected Behavior:
The model should recognize "hi" as a greeting and respond as an assistant or reply as translated version in language of word as given in instruction.