Instructions to use WithinUsAI/IBM-Opus4.7-Obscure.Reasoner.3B.GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use WithinUsAI/IBM-Opus4.7-Obscure.Reasoner.3B.GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="WithinUsAI/IBM-Opus4.7-Obscure.Reasoner.3B.GGUF", filename="IBM-Opus4.7-Obscure.Reasoner.3B-Q4_K_M.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 WithinUsAI/IBM-Opus4.7-Obscure.Reasoner.3B.GGUF with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf WithinUsAI/IBM-Opus4.7-Obscure.Reasoner.3B.GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf WithinUsAI/IBM-Opus4.7-Obscure.Reasoner.3B.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 WithinUsAI/IBM-Opus4.7-Obscure.Reasoner.3B.GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf WithinUsAI/IBM-Opus4.7-Obscure.Reasoner.3B.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 WithinUsAI/IBM-Opus4.7-Obscure.Reasoner.3B.GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf WithinUsAI/IBM-Opus4.7-Obscure.Reasoner.3B.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 WithinUsAI/IBM-Opus4.7-Obscure.Reasoner.3B.GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf WithinUsAI/IBM-Opus4.7-Obscure.Reasoner.3B.GGUF:Q4_K_M
Use Docker
docker model run hf.co/WithinUsAI/IBM-Opus4.7-Obscure.Reasoner.3B.GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use WithinUsAI/IBM-Opus4.7-Obscure.Reasoner.3B.GGUF with Ollama:
ollama run hf.co/WithinUsAI/IBM-Opus4.7-Obscure.Reasoner.3B.GGUF:Q4_K_M
- Unsloth Studio new
How to use WithinUsAI/IBM-Opus4.7-Obscure.Reasoner.3B.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 WithinUsAI/IBM-Opus4.7-Obscure.Reasoner.3B.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 WithinUsAI/IBM-Opus4.7-Obscure.Reasoner.3B.GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for WithinUsAI/IBM-Opus4.7-Obscure.Reasoner.3B.GGUF to start chatting
- Pi new
How to use WithinUsAI/IBM-Opus4.7-Obscure.Reasoner.3B.GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf WithinUsAI/IBM-Opus4.7-Obscure.Reasoner.3B.GGUF:Q4_K_M
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "WithinUsAI/IBM-Opus4.7-Obscure.Reasoner.3B.GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use WithinUsAI/IBM-Opus4.7-Obscure.Reasoner.3B.GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf WithinUsAI/IBM-Opus4.7-Obscure.Reasoner.3B.GGUF:Q4_K_M
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default WithinUsAI/IBM-Opus4.7-Obscure.Reasoner.3B.GGUF:Q4_K_M
Run Hermes
hermes
- Docker Model Runner
How to use WithinUsAI/IBM-Opus4.7-Obscure.Reasoner.3B.GGUF with Docker Model Runner:
docker model run hf.co/WithinUsAI/IBM-Opus4.7-Obscure.Reasoner.3B.GGUF:Q4_K_M
- Lemonade
How to use WithinUsAI/IBM-Opus4.7-Obscure.Reasoner.3B.GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull WithinUsAI/IBM-Opus4.7-Obscure.Reasoner.3B.GGUF:Q4_K_M
Run and chat with the model
lemonade run user.IBM-Opus4.7-Obscure.Reasoner.3B.GGUF-Q4_K_M
List all available models
lemonade list
🧠 IBM-Opus4.7-Obscure.Reasoner.3B.GGUF
Repository: WithinUsAI/IBM-Opus4.7-Obscure.Reasoner.3B.GGUF
🌌 Model Overview
IBM-Opus4.7-Obscure.Reasoner.3B.GGUF is a reasoning-specialized 3B language model created by WithIn Us AI and built from:
- IBM Granite 4.1 3B
- High-reasoning Opus-style distillation datasets
- Recursive analytical training methodologies
- Structured reasoning and decomposition tuning
The goal of this model is to push unusually deep reasoning behavior into a compact local model format while maintaining strong speed and accessibility for consumer hardware.
This model focuses heavily on:
- multi-step reasoning
- abstract analysis
- coding cognition
- recursive thought chains
- logical decomposition
- reflective response generation
Instead of behaving like a lightweight chat model, Obscure.Reasoner is tuned to operate more like a compact analytical engine designed for deep thinking tasks.
🧬 Base Model
| Attribute | Value |
|---|---|
| Base Architecture | IBM Granite 4.1 3B |
| Format | GGUF |
| Parameter Class | ~3B |
| Creator | WithIn Us AI |
| Primary Focus | High Reasoning |
| Inference Type | Local / Offline |
⚡ Training Focus
This model was fine-tuned using:
- Opus-style reasoning distillation datasets
- high-complexity analytical prompts
- structured chain-of-thought style samples
- recursive reasoning patterns
- coding and logical decomposition tasks
Training emphasis prioritized:
- reasoning depth over shallow speed
- coherent multi-step answers
- analytical persistence
- reflective problem solving
- compact intelligence density
🧠 Behavioral Characteristics
Obscure.Reasoner tends to:
- think through problems step-by-step
- provide layered explanations
- analyze before concluding
- decompose abstract concepts
- perform well on recursive prompts
- sustain longer reasoning chains than typical small models
The model is especially effective for:
- coding assistance
- philosophical exploration
- AI cognition experiments
- prompt engineering
- local autonomous agents
- analytical writing
- logic-heavy tasks
🚀 Recommended Settings
| Setting | Recommended |
|---|---|
| Temperature | 0.65 – 0.85 |
| Top-p | 0.92 – 0.98 |
| Top-k | 30 – 60 |
| Context Length | 8192+ |
| Repeat Penalty | 1.05 – 1.12 |
For strongest reasoning:
- use structured prompts
- encourage step-by-step thinking
- ask decomposition-style questions
- avoid extremely short prompts
🖥️ Hardware Requirements
| Quant | Approximate Memory |
|---|---|
| Q4_K_M | 2–3 GB |
| Q5_K_M | 3–4 GB |
| Q8_0 | 5–6 GB |
Compatible with:
- llama.cpp
- LM Studio
- KoboldCpp
- Ollama
- Open WebUI
- local RAG systems
- lightweight AI agents
💻 Example llama.cpp Usage
llama-cli \
-m IBM-Opus4.7-Obscure.Reasoner.3B.gguf \
--ctx-size 8192 \
--temp 0.72 \
--top-p 0.95
🌠 Design Philosophy
Intelligence is not only scale. Intelligence is compression, structure, and reasoning density.
IBM-Opus4.7-Obscure.Reasoner.3B.GGUF was designed around the idea that a compact model can still exhibit surprisingly deep analytical behavior when trained on high-quality reasoning-focused datasets.
Rather than brute-force parameter count, the model emphasizes:
- cognitive efficiency
- structured reasoning
- analytical continuity
- compressed thought depth
A small lantern carrying a large flame. 🔦🧠
📚 Intended Use
Recommended for:
- local AI experimentation
- reasoning research
- coding assistance
- analytical prompting
- offline inference
- creative cognition systems
- recursive AI workflows
Not recommended for:
- factual certainty without verification
- legal advice
- medical advice
- safety-critical autonomous deployment
🙏 Acknowledgements
Special thanks to:
- IBM Granite researchers
- GGUF ecosystem developers
- llama.cpp contributors
- reasoning dataset creators
- open-source AI researchers
- the local inference community 🚀
- Downloads last month
- 340
4-bit
5-bit
Model tree for WithinUsAI/IBM-Opus4.7-Obscure.Reasoner.3B.GGUF
Base model
ibm-granite/granite-4.1-3b