Add two-tier usage: Simple (GGUF one-shot) vs Advanced (Legal Agent Council)
Browse files
README.md
CHANGED
|
@@ -27,6 +27,33 @@ pipeline_tag: text-classification
|
|
| 27 |
|
| 28 |
---
|
| 29 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 30 |
## Why This Exists
|
| 31 |
|
| 32 |
The Ohio family court system processes thousands of custody cases annually. Parents β especially pro se litigants β face a legal system built on decades of case law, statutes, and procedural rules that are nearly impossible to navigate without expensive legal counsel.
|
|
|
|
| 27 |
|
| 28 |
---
|
| 29 |
|
| 30 |
+
## Two Ways to Use This
|
| 31 |
+
|
| 32 |
+
### π’ Simple: One File, One Command
|
| 33 |
+
Download a single GGUF file and run it. No setup, no configuration, no Python required.
|
| 34 |
+
|
| 35 |
+
```bash
|
| 36 |
+
# Download the GGUF from the Qwen adapter repo, then:
|
| 37 |
+
ollama create ohio-custody -f Modelfile
|
| 38 |
+
ollama run ohio-custody
|
| 39 |
+
>>> What are the best interest factors for custody under Ohio law?
|
| 40 |
+
```
|
| 41 |
+
|
| 42 |
+
**What you get**: A Qwen3.5-9B model fine-tuned on 13,346 Ohio family law Q&A pairs. It knows Ohio statutes, case law, and court procedures. Ask it anything about Ohio custody law and it responds with citations.
|
| 43 |
+
|
| 44 |
+
π **[Download the GGUF](https://huggingface.co/Roderick3rd/OhioCustodyBERT-Qwen3.5-9B)**
|
| 45 |
+
|
| 46 |
+
---
|
| 47 |
+
|
| 48 |
+
### π΅ Advanced: The Full Legal Agent Council
|
| 49 |
+
Deploy a multi-agent system where specialized AI models cross-examine each other β like having a legal team debate your case. Multiple models, each with a different perspective, produce consensus-based legal analysis.
|
| 50 |
+
|
| 51 |
+
**What you get**: 6 agents analyzing your question from different angles (statute law, case law, procedure, adversary's argument), a synthesis judge that resolves conflicts, and a verifier that fact-checks every citation. When the models agree, you can be confident. When they disagree, you've found where the law is genuinely unclear.
|
| 52 |
+
|
| 53 |
+
π Keep reading below for the full architecture.
|
| 54 |
+
|
| 55 |
+
---
|
| 56 |
+
|
| 57 |
## Why This Exists
|
| 58 |
|
| 59 |
The Ohio family court system processes thousands of custody cases annually. Parents β especially pro se litigants β face a legal system built on decades of case law, statutes, and procedural rules that are nearly impossible to navigate without expensive legal counsel.
|