Views
No views yet
complaintanswermotionbrieforderopinionnoticesubpoenaaffidavitdemand_letterbar_complaintother1from glacier_distill.inference import GlacierPipeline
2
3pipeline = GlacierPipeline()
4result = pipeline.classify_document("your legal text here")
5print(result)1from transformers import pipeline
2
3classifier = pipeline("text-classification", model="glacier-legal/glacier-document-classifier")
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)