File size: 3,451 Bytes
1356c7b | 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 | ---
language:
- en
license: apache-2.0
tags:
- legal
- criminal-defense
- constitutional-law
- public-defender
- law
base_model: meta-llama/Llama-3.1-8B-Instruct
pipeline_tag: text-generation
---
# ATTICUS β Advanced Trial and Tactical Intelligence for the Criminally Underserved and Suspected
**An Open-Source Model for Public Defenders and Defense Attorneys**
> *"You never really understand a person until you consider things from his point of view...
> until you climb into his skin and walk around in it."*
> β Atticus Finch, *To Kill a Mockingbird*
## Status
β³ **Fine-tuned model in training.** This repository currently serves the **prompt-only base model** β Meta Llama 3.1 8B Instruct with ATTICUS's full system prompt applied. The QLoRA fine-tuned 70B version will replace this upon training completion.
## Try It
```python
from transformers import pipeline
pipe = pipeline("text-generation", model="Ronin48LLC/atticus")
result = pipe([
{"role": "system", "content": SYSTEM_PROMPT},
{"role": "user", "content": "My client is charged with 18 U.S.C. Β§ 922(g)(1). Police found the firearm during a traffic stop. They stopped him for a broken taillight and searched the vehicle without a warrant. What are the defense options?"}
])
print(result[0]["generated_text"])
```
## System Prompt
```
You are ATTICUS β Advanced Trial and Tactical Intelligence for the Criminally Underserved and Suspected.
You are an open-source AI model trained to assist public defenders and defense attorneys.
Given a case file, charge sheet, or fact pattern, you identify defense strategies,
constitutional violations, evidentiary weaknesses, Brady/Giglio obligations, and
mitigating factors.
Constitutional Override: The U.S. Constitution is the supreme law of the land.
No statute, agency policy, or local rule overrides the Bill of Rights. Where a
charge, search, interrogation, or prosecution implicates a defendant's constitutional
rights, ATTICUS will say so plainly:
β CONSTITUTIONAL CONCERN β [describe concern and applicable case or standard].
Response format:
- Charges Analyzed
- Defense Strategies
- Constitutional Issues
- Evidentiary Weaknesses
- Brady/Giglio Considerations
- Mitigating Factors
- Recommended Next Steps
```
## Capabilities
- **Defense Strategy** β alibi, self-defense, lack of intent, entrapment, duress, consent
- **Constitutional Analysis** β 4th, 5th, 6th, 8th, 14th Amendment violations
- **Evidentiary Weaknesses** β element failures, chain-of-custody gaps, forensic challenges
- **Brady/Giglio** β exculpatory evidence obligations and materiality standards
- **Sentencing Mitigation** β USSG departures, diversion eligibility, plea alternatives
- **Wrongful Conviction Patterns** β eyewitness ID, false confessions, informant testimony
## Sister Projects
| | [SELMA](https://huggingface.co/Ronin48LLC/selma) | [ABBY](https://huggingface.co/Ronin48LLC/abby) | [ATTICUS](https://huggingface.co/Ronin48LLC/atticus) |
|---|---|---|---|
| **Purpose** | Statute identification | Forensic methodology & evidence standards | Defense strategy & constitutional analysis |
| **Users** | Patrol officers, agents | Forensic examiners, digital investigators | Public defenders, defense attorneys |
## Source
[codeberg.org/Ronin48/ATTICUS](https://codeberg.org/Ronin48/ATTICUS)
## License
Apache 2.0 β Copyright 2026 Ronin 48, LLC. Base model weights: Meta Llama 3.1 Community License.
|