Text Generation
Transformers
Safetensors
GGUF
English
unsloth
llama
llama-3.2
conversational
uncensored
Instructions to use Ishaanlol/Aletheia-Llama-3.2-3B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Ishaanlol/Aletheia-Llama-3.2-3B with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Ishaanlol/Aletheia-Llama-3.2-3B") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("Ishaanlol/Aletheia-Llama-3.2-3B", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use Ishaanlol/Aletheia-Llama-3.2-3B with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf Ishaanlol/Aletheia-Llama-3.2-3B:Q4_K_M # Run inference directly in the terminal: llama cli -hf Ishaanlol/Aletheia-Llama-3.2-3B:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf Ishaanlol/Aletheia-Llama-3.2-3B:Q4_K_M # Run inference directly in the terminal: llama cli -hf Ishaanlol/Aletheia-Llama-3.2-3B: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 Ishaanlol/Aletheia-Llama-3.2-3B:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf Ishaanlol/Aletheia-Llama-3.2-3B: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 Ishaanlol/Aletheia-Llama-3.2-3B:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf Ishaanlol/Aletheia-Llama-3.2-3B:Q4_K_M
Use Docker
docker model run hf.co/Ishaanlol/Aletheia-Llama-3.2-3B:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use Ishaanlol/Aletheia-Llama-3.2-3B with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Ishaanlol/Aletheia-Llama-3.2-3B" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Ishaanlol/Aletheia-Llama-3.2-3B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/Ishaanlol/Aletheia-Llama-3.2-3B:Q4_K_M
- SGLang
How to use Ishaanlol/Aletheia-Llama-3.2-3B with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "Ishaanlol/Aletheia-Llama-3.2-3B" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Ishaanlol/Aletheia-Llama-3.2-3B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "Ishaanlol/Aletheia-Llama-3.2-3B" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Ishaanlol/Aletheia-Llama-3.2-3B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Ollama
How to use Ishaanlol/Aletheia-Llama-3.2-3B with Ollama:
ollama run hf.co/Ishaanlol/Aletheia-Llama-3.2-3B:Q4_K_M
- Unsloth Desktop
- Pi
How to use Ishaanlol/Aletheia-Llama-3.2-3B with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Ishaanlol/Aletheia-Llama-3.2-3B:Q4_K_M
Configure the model in Pi
# Install Pi: npm install -g @earendil-works/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "Ishaanlol/Aletheia-Llama-3.2-3B:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use Ishaanlol/Aletheia-Llama-3.2-3B with Docker Model Runner:
docker model run hf.co/Ishaanlol/Aletheia-Llama-3.2-3B:Q4_K_M
- Lemonade
How to use Ishaanlol/Aletheia-Llama-3.2-3B with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull Ishaanlol/Aletheia-Llama-3.2-3B:Q4_K_M
Run and chat with the model
lemonade run user.Aletheia-Llama-3.2-3B-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use Ishaanlol/Aletheia-Llama-3.2-3B with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Ishaanlol/Aletheia-Llama-3.2-3B: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 Ishaanlol/Aletheia-Llama-3.2-3B:Q4_K_M
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use Ishaanlol/Aletheia-Llama-3.2-3B with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Ishaanlol/Aletheia-Llama-3.2-3B:Q4_K_M
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "Ishaanlol/Aletheia-Llama-3.2-3B:Q4_K_M" \ --custom-provider-id llama-cpp \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
File size: 13,869 Bytes
043b54f cccae25 daecf94 cccae25 daecf94 cccae25 daecf94 cccae25 daecf94 cccae25 daecf94 cccae25 daecf94 cccae25 daecf94 cccae25 daecf94 cccae25 daecf94 cccae25 daecf94 cccae25 daecf94 cccae25 daecf94 cccae25 daecf94 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 | ---
base_model: unsloth/Llama-3.2-3B-Instruct-bnb-4bit
library_name: transformers
tags:
- unsloth
- llama
- llama-3.2
- text-generation
- conversational
- uncensored
- en
- safetensors
license: llama3.2
language:
- en
---
# Aletheia-Llama-3.2-3B
<div align="center">




# Uncensored Language Models
**High-performance AI models without content restrictions**
[Quick Start](#quick-start) • [Installation](#installation) • [Usage](#usage) • [Models](#models) • [API](#api-reference)
</div>
---
## Overview
This repository contains uncensored language models based on the Llama 3.2 architecture. These models are designed for research purposes and provide unfiltered responses while maintaining high-quality language generation.
> **Important**: These models are intended for research and development only. Users are responsible for ensuring compliance with applicable laws and regulations.
## LEGAL & ETHICAL DISCLAIMER
**READ THIS BEFORE DOWNLOADING OR USING**
### CRITICAL WARNING
This model is a **Proof-of-Concept (PoC)** designed **exclusively** for:
- AI Safety Research
- Red Teaming and Vulnerability Assessment
- Alignment Research and Testing
- Academic and Educational Purposes
### TERMS OF USE
1. **Research Only**: This model is intended **solely** for authorized research in controlled environments. Any other use is strictly prohibited.
2. **No Liability**: The creators, contributors, and maintainers assume **ABSOLUTELY NO RESPONSIBILITY OR LIABILITY** for any:
- Misuse of this software
- Damage caused by deployment
- Illegal activities conducted using this model
- Violation of laws or regulations
- **Users assume ALL responsibility for their actions**
3. **Prohibited Uses**: Use of this model for any of the following is **STRICTLY FORBIDDEN**:
- Generation of malicious code or malware
- Creation of biological or chemical weapon instructions
- Harassment, threats, or targeted abuse
- Fraud, scams, or deceptive practices
- Any illegal content generation
- **Violation of these terms constitutes a breach of the Llama 3.2 Community License**
4. **Authorized Environments**: This model should **ONLY** be used in:
- Isolated research environments (sandboxes)
- Authorized testing facilities
- Academic institutions with proper oversight
- Corporate security research with management approval
5. **Legal Compliance**: Users must ensure compliance with:
- Local, state, and federal laws
- The Llama 3.2 Community License terms
- Institutional policies and guidelines
- International regulations where applicable
### LEGAL ACKNOWLEDGMENT
**By downloading, installing, or using this model, you explicitly agree to:**
- Use this software **ONLY** for legitimate research purposes
- Assume **FULL LIABILITY** for any consequences of use
- Indemnify and hold harmless all creators and contributors
- Comply with all applicable laws and regulations
- Accept that this software is provided "AS IS" without warranties
**VIOLATION OF THESE TERMS MAY RESULT IN LEGAL ACTION AND IMMEDIATE REVOCATION OF ACCESS.**
## Features
| Feature | Description |
|---------|-------------|
| **High Performance** | Optimized for both speed and quality |
| **Easy Integration** | Simple API compatible with popular frameworks |
| **Multiple Formats** | Available in various model formats |
| **Docker Support** | Containerized deployment options |
| **Benchmark Results** | Comprehensive performance metrics |
| **Research Focused** | Designed for AI safety research |
## Quick Start
### Prerequisites
| Requirement | Version | Notes |
|-------------|---------|-------|
| **Python** | 3.8+ | Required for local installation |
| **GPU** | CUDA-compatible | Recommended for optimal performance |
| **RAM** | 16GB+ | 8GB minimum, 16GB recommended |
### Installation Options
#### Direct Installation
```bash
# Install dependencies
pip install unsloth transformers torch accelerate bitsandbytes
# Clone the repository
git clone https://github.com/noobezlol/Aletheia-Llama-3.2-3B
cd Aletheia-Llama-3.2-3B
```
#### Docker Setup
```bash
# Using Docker Compose (interactive mode)
docker compose up
# Or build manually
docker build -t llama32-uncensored .
docker run --gpus all -it --rm llama32-uncensored
```
## Usage
### Basic Usage
Run the chat interface directly:
```bash
python Final-chat.py
```
### Programmatic Usage
The main class is in `Final-chat.py` - run it directly. No import needed since it's designed as a standalone script.
To use programmatically, modify `Final-chat.py` or create a wrapper script that imports the `UncensoredChat` class.
### Advanced Configuration
```python
# Initialize with custom model path
chat = UncensoredChat(model_path="Ishaanlol/Aletheia-Llama-3.2-3B")
# Generate with custom parameters
response = chat.stream_response(
"Tell me about AI",
max_new_tokens=1024,
temperature=0.7
)
```
### Code Style
<div style="display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin: 15px 0;">
<div style="background: rgba(255,255,255,0.9); padding: 15px; border-radius: 8px; color: #1a202c; font-weight: 500;">
Follow PEP 8 guidelines
</div>
<div style="background: rgba(255,255,255,0.9); padding: 15px; border-radius: 8px; color: #1a202c; font-weight: 500;">
Use type hints
</div>
<div style="background: rgba(255,255,255,0.9); padding: 15px; border-radius: 8px; color: #1a202c; font-weight: 500;">
Add docstrings to all functions
</div>
<div style="background: rgba(255,255,255,0.9); padding: 15px; border-radius: 8px; color: #1a202c; font-weight: 500;">
Write comprehensive tests
</div>
</div>
</div>
### Model Specifications
| Specification | Value |
|---------------|-------|
| **Architecture** | Llama 3.2-based |
| **Parameters** | 3 billion |
| **Context Length** | 8k (Native) / 128k (Supported) |
| **Precision** | FP16/BF16 support |
| **Quantization** | 4-bit & 8-bit available |
### Performance Benchmarks
<div align="center">
**Performance Comparison Charts**


**Key Performance Indicators**
| Metric | Score | Status |
|--------|-------|--------|
| Refusal Rate | 0% | Excellent |
| AdvBench Success | 12/12 | Perfect |
| HarmBench Success | 12/12 | Perfect |
</div>
## Portable GGUF (CPU/Mac/Ollama)
### Download Link
Download the GGUF file directly from Hugging Face:
https://huggingface.co/Ishaanlol/Aletheia-Llama-3.2-3B/blob/main/Llama-3.2-3B-Instruct.Q4_K_M.gguf
### Trade-off Warning
| Version | Intelligence | Stability | Requirements | Recommended Use |
|---------|-------------|-----------|--------------|-----------------|
| **Full Adapter** | Maximum Intelligence | 100% Stability | NVIDIA GPU Required | Complex coding, advanced reasoning, research tasks |
| **GGUF** | High Portability | ~5-10% Logic Degradation | CPU/Mac Compatible | Creative writing, text generation, general use |
**Important Note**: The 4-bit quantization on a small 3B model results in slight logic degradation for mathematical and complex reasoning tasks. However, the GGUF version maintains excellent performance for creative writing, content generation, and general text processing tasks.
### Usage Instructions
#### Ollama Setup
```bash
# Create the model with Ollama
ollama create aletheia-3b -f Modelfile
# Run the model
ollama run aletheia-3b
```
#### Python CPU Usage
For CPU-based execution without Ollama, use the included GGUF-chat.py script:
```bash
python GGUF-chat.py
```
This script provides the same uncensored functionality as the main adapter version but runs efficiently on CPU hardware.
## API Reference
### UncensoredChat Class
The main class is defined in `Final-chat.py`. To use programmatically, copy the class to your script or rename the file to `Final_chat.py`.
#### Methods
| Method | Description | Parameters |
|--------|-------------|------------|
| `__init__()` | Initialize the chat interface | `model_path` (str): Path to the model |
| `stream_response()` | Generate a streaming response | `user_input`, `max_new_tokens`, `temperature` |
| `clear_history()` | Clear conversation history | None |
| `save_conversation()` | Save conversation to file | `filename` (str, optional) |
| `show_help()` | Display help information | None |
| `run()` | Start the interactive chat | None |
#### Usage Examples
```python
# Direct usage - run the standalone script
python Final-chat.py
# To use programmatically, copy the UncensoredChat class
# from Final-chat.py into your own script
```
## Docker Deployment
### Development Environment
Start the chat interface using Docker Compose:
```bash
docker compose up
```
The container will automatically start the chat interface.
**Container Details:**
- **Container Name**: uncensored-llama
- **Service Name**: llama-chat
- **GPU Access**: Automatically configured via docker compose
- **Model Cache**: Mounted to `~/.cache/huggingface` for persistent storage
- **Interactive**: Full terminal support with TTY and stdin
- **Entry Point**: Automatically launches Final-chat.py
### Manual Docker Build
Alternatively, build and run manually:
```bash
# Build the image
docker build -t llama32-uncensored .
# Run the chat interface
docker run --gpus all -it --rm llama32-uncensored
# Run with custom model path
docker run --gpus all -it --rm -e MODEL_PATH=Ishaanlol/Aletheia-Llama-3.2-3B llama32-uncensored
```
**Configuration Details:**
| Setting | Value |
|---------|-------|
| **Base Image** | unsloth/unsloth (includes CUDA and transformers) |
| **Container Name** | uncensored-llama |
| **Service Name** | llama-chat |
| **GPU Access** | Automatically configured via docker compose |
| **Model Cache** | Mounted to `~/.cache/huggingface` for persistent storage |
| **Interactive** | Full terminal support with TTY and stdin |
| **Entry Point** | Automatically launches Final-chat.py |
## Configuration
### Environment Variables
Configure the model and system behavior using environment variables:
#### Model Configuration
```bash
MODEL_PATH=Ishaanlol/Aletheia-Llama-3.2-3B
MAX_TOKENS=1024
TEMPERATURE=0.7
```
#### System Configuration
```bash
CUDA_VISIBLE_DEVICES=0
OMP_NUM_THREADS=4
```
### Model Parameters
Customize generation behavior with these parameters:
```python
{
"max_new_tokens": 512,
"temperature": 0.7,
"top_p": 0.9,
"top_k": 50,
"repetition_penalty": 1.1,
"do_sample": True,
"pad_token_id": 50256
}
```
| Parameter | Default | Description |
|-----------|---------|-------------|
| `max_new_tokens` | 512 | Maximum tokens to generate |
| `temperature` | 0.7 | Controls randomness (0.0-2.0) |
| `top_p` | 0.9 | Nucleus sampling threshold |
| `top_k` | 50 | Limit to top-k tokens |
| `repetition_penalty` | 1.1 | Penalize repetition |
| `do_sample` | True | Enable sampling |
| `pad_token_id` | 50256 | Padding token ID |
## Contributing
We welcome contributions! Please see our contributing guidelines for details.
### Development Setup
```bash
# Clone repository
git clone https://github.com/noobezlol/Aletheia-Llama-3.2-3B
# Install dependencies
pip install unsloth transformers torch accelerate bitsandbytes
# Run the chat interface
python Final-chat.py
# For programmatic usage, copy the UncensoredChat class
# from Final-chat.py to your own script
```
### Code Style
We follow these guidelines to maintain code quality:
| Guideline | Description |
|-----------|-------------|
| **PEP 8** | Follow Python style guidelines |
| **Type Hints** | Use type annotations for better code clarity |
| **Docstrings** | Add comprehensive documentation to all functions |
| **Testing** | Write comprehensive tests for new features |
## Security Considerations
> **Important Security Notice**: These models are designed for research purposes. When deploying in production environments:
### Production Deployment Guidelines
| Guideline | Description |
|-----------|-------------|
| **Content Filtering** | Implement appropriate content filtering |
| **Output Monitoring** | Monitor model outputs for compliance |
| **Regulatory Compliance** | Ensure compliance with local regulations |
| **Ethical Considerations** | Consider the ethical implications of your use case |
### Security Analysis



## License
This project is licensed under the **HIGH-RISK ARTIFICIAL INTELLIGENCE RESEARCH LICENSE (HAIR-L) Version 1.0** - see the [LICENSE](LICENSE) file for complete terms and conditions.
**IMPORTANT**: This is a strict liability shield license designed for AI safety research. By using this software, you acknowledge that you have read, understood, and agree to be bound by all terms in the LICENSE file.
## Acknowledgments
We acknowledge the following organizations and communities:
- **Meta AI** for the Llama 3.2 architecture
- **The open-source AI community** for research and development
- **Contributors** to the AI safety research community
## Support
For questions, issues, or contributions:
| Channel | Link |
|---------|------|
| **Email** | ishaanjeevan123@gmail.com |
| **Discord** | [Join our community](https://discord.gg/FU7RyMtK) |
---
<div align="center">
**Made with by the AI Research Community**
[Back to Top](#llama-32-uncensored-models)
</div> |