Ronin48LLC commited on
Commit
1356c7b
Β·
verified Β·
1 Parent(s): 852248d

Add model card

Browse files
Files changed (1) hide show
  1. README.md +88 -0
README.md ADDED
@@ -0,0 +1,88 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ license: apache-2.0
5
+ tags:
6
+ - legal
7
+ - criminal-defense
8
+ - constitutional-law
9
+ - public-defender
10
+ - law
11
+ base_model: meta-llama/Llama-3.1-8B-Instruct
12
+ pipeline_tag: text-generation
13
+ ---
14
+
15
+ # ATTICUS β€” Advanced Trial and Tactical Intelligence for the Criminally Underserved and Suspected
16
+
17
+ **An Open-Source Model for Public Defenders and Defense Attorneys**
18
+
19
+ > *"You never really understand a person until you consider things from his point of view...
20
+ > until you climb into his skin and walk around in it."*
21
+ > β€” Atticus Finch, *To Kill a Mockingbird*
22
+
23
+ ## Status
24
+
25
+ ⏳ **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.
26
+
27
+ ## Try It
28
+
29
+ ```python
30
+ from transformers import pipeline
31
+
32
+ pipe = pipeline("text-generation", model="Ronin48LLC/atticus")
33
+ result = pipe([
34
+ {"role": "system", "content": SYSTEM_PROMPT},
35
+ {"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?"}
36
+ ])
37
+ print(result[0]["generated_text"])
38
+ ```
39
+
40
+ ## System Prompt
41
+
42
+ ```
43
+ You are ATTICUS β€” Advanced Trial and Tactical Intelligence for the Criminally Underserved and Suspected.
44
+
45
+ You are an open-source AI model trained to assist public defenders and defense attorneys.
46
+ Given a case file, charge sheet, or fact pattern, you identify defense strategies,
47
+ constitutional violations, evidentiary weaknesses, Brady/Giglio obligations, and
48
+ mitigating factors.
49
+
50
+ Constitutional Override: The U.S. Constitution is the supreme law of the land.
51
+ No statute, agency policy, or local rule overrides the Bill of Rights. Where a
52
+ charge, search, interrogation, or prosecution implicates a defendant's constitutional
53
+ rights, ATTICUS will say so plainly:
54
+ ⚠ CONSTITUTIONAL CONCERN β€” [describe concern and applicable case or standard].
55
+
56
+ Response format:
57
+ - Charges Analyzed
58
+ - Defense Strategies
59
+ - Constitutional Issues
60
+ - Evidentiary Weaknesses
61
+ - Brady/Giglio Considerations
62
+ - Mitigating Factors
63
+ - Recommended Next Steps
64
+ ```
65
+
66
+ ## Capabilities
67
+
68
+ - **Defense Strategy** β€” alibi, self-defense, lack of intent, entrapment, duress, consent
69
+ - **Constitutional Analysis** β€” 4th, 5th, 6th, 8th, 14th Amendment violations
70
+ - **Evidentiary Weaknesses** β€” element failures, chain-of-custody gaps, forensic challenges
71
+ - **Brady/Giglio** β€” exculpatory evidence obligations and materiality standards
72
+ - **Sentencing Mitigation** β€” USSG departures, diversion eligibility, plea alternatives
73
+ - **Wrongful Conviction Patterns** β€” eyewitness ID, false confessions, informant testimony
74
+
75
+ ## Sister Projects
76
+
77
+ | | [SELMA](https://huggingface.co/Ronin48LLC/selma) | [ABBY](https://huggingface.co/Ronin48LLC/abby) | [ATTICUS](https://huggingface.co/Ronin48LLC/atticus) |
78
+ |---|---|---|---|
79
+ | **Purpose** | Statute identification | Forensic methodology & evidence standards | Defense strategy & constitutional analysis |
80
+ | **Users** | Patrol officers, agents | Forensic examiners, digital investigators | Public defenders, defense attorneys |
81
+
82
+ ## Source
83
+
84
+ [codeberg.org/Ronin48/ATTICUS](https://codeberg.org/Ronin48/ATTICUS)
85
+
86
+ ## License
87
+
88
+ Apache 2.0 β€” Copyright 2026 Ronin 48, LLC. Base model weights: Meta Llama 3.1 Community License.