Views
No views yet
fl_statems_statefederal_districtfederal_circuitscotusbankruptcyadministrativeunknown1from glacier_distill.inference import GlacierPipeline
2
3pipeline = GlacierPipeline()
4result = pipeline.route_jurisdiction("your legal text here")
5print(result)1from transformers import pipeline
2
3classifier = pipeline("text-classification", model="glacier-legal/glacier-jurisdiction-router")
4result = classifier("your legal text here")Stage 1: QUERY -> jurisdiction-router + document-classifier
Stage 2: RESEARCH -> legal-ner (entity extraction)
Stage 3: WDC #1 -> (full model review)
Stage 4: DRAFT -> legal-ner + citation-classifier
Stage 5: WDC #2 -> hallucination-detector + citation-classifier
Stage 6: FINAL -> (human review)