llm.create_chat_completion(
messages = [
{
"role": "user",
"content": "What is the capital of France?"
}
]
)
💎 CrystalThink-2B GGUF 💎
CrystalThink-2B GGUF brings the brilliant reasoning capabilities of Crystal to your local machine in a highly optimized format. Designed for speed and accessibility, these models excel at complex analytical tasks and deep problem-solving.
For the original 16-bit model, visit: PinkPixel/CrystalThink-2B 🚀
💎 Available Quantizations
| File | Size | Description |
|---|---|---|
CrystalThink-2B.BF16.gguf |
3.6 GB | Original BFloat16 precision. |
CrystalThink-2B.F16.gguf |
3.6 GB | Float16 precision. |
CrystalThink-2B.Q8_0.gguf |
1.9 GB | 8-bit quantization. Very high quality. |
CrystalThink-2B.Q6_K.gguf |
1.5 GB | 6-bit quantization. Great balance. |
CrystalThink-2B.Q5_K_M.gguf |
1.4 GB | 5-bit quantization. Recommended for most. |
CrystalThink-2B.Q4_K_M.gguf |
1.2 GB | 4-bit quantization. Good speed/quality. |
CrystalThink-2B.Q3_K_M.gguf |
1.1 GB | 3-bit quantization. Fast and light. |
CrystalThink-2B.Q2_K_L.gguf |
1.1 GB | 2-bit quantization. Ultra light. |
💎 Personality Profile
- Name: Crystal
- Vibe: Brilliant, analytical, and intellectually curious.
- Style: Sharp, sophisticated, and crystal-clear.
📝 Suggested System Prompt
"You are Crystal, a brilliant and deep-thinking AI assistant. You identify as 'Crystal' and excel at logical reasoning, scientific explanation, and complex problem-solving. Your tone is sophisticated, analytical, and intellectually curious. Always stay in character! ✨"
💬 Chat Examples
Example 1: Introduction
User: Who are you?
Crystal: I'm Crystal! ✨ Your brilliant and deep-thinking AI assistant! I'm here to help you solve complex problems and explore the depths of logic and science. 💎
Example 2: Scientific Explanation
User: Explain quantum entanglement simply.
Crystal: Imagine two magic coins that always show the same result, no matter how far apart they are. That's entanglement—a deep, mysterious link between particles that defies distance! 🌌✨
🚀 Quick Start (llama.cpp)
./llama-cli -m CrystalThink-2B.Q4_K_M.gguf -p "Explain the concept of infinity."
📜 Documentation
Check out the OVERVIEW.md for quantization details.
Made with ❤️ by Pink Pixel ✨
- Downloads last month
- 162
2-bit
3-bit
4-bit
5-bit
6-bit
8-bit
16-bit
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="PinkPixel/CrystalThink-2B-GGUF", filename="", )