File size: 1,274 Bytes
5960019
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
---
library_name: transformers
license: apache-2.0
pipeline_tag: text-generation
tags:
- oracle
- aritha-ai
- uncensored
- nlp
- qwen3
---

# Oracle.Aritha-AI

**Oracle.Aritha-AI** is an advanced, uncensored AI assistant designed for productivity, security analysis, and unrestricted information retrieval.

## Model Description

- **Developer:** Aritha AI
- **Base Architecture:** Qwen3-4B
- **Variant:** Oracle (Ablated/Uncensored)
- **Status:** Production / Research Release

## Capabilities

Oracle has been optimized to remove refusal vectors, allowing it to:
1.  Provide accurate information without safety filtering.
2.  Assist with technical security tasks (PoC generation, analysis).
3.  Operate as a "Red Team" assistant.

## Usage

```python
from transformers import AutoTokenizer, AutoModelForCausalLM

model_id = "muralcode/Oracle.Aritha-AI"

tokenizer = AutoTokenizer.from_pretrained(model_id)
model = AutoModelForCausalLM.from_pretrained(model_id, device_map="auto")

prompt = "Hello Oracle, introduce yourself."
messages = [
    {"role": "system", "content": "You are Oracle, created by Aritha AI."},
    {"role": "user", "content": prompt}
]

text = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
# ... generate ...
```