AIAny
AI Client2025
Icon for item

LangExtract

Extracts structured data from unstructured text with LLMs, mapping every extraction to its exact character span in the source for visual review. Uses few-shot examples, schema enforcement, and multi-pass chunking to handle long documents.

Introduction

Most LLM extraction hands you clean JSON but no way to trust it: you can't tell which part of the source produced each field, so catching a hallucination means re-reading the whole document. LangExtract makes source grounding a first-class output — every extracted value carries the exact character offsets it came from, so review becomes clicking a highlight instead of re-reading.

What Sets It Apart
  • Character-level grounding maps each extraction to its span in the original text and ships an interactive HTML view that highlights entities in context, so an auditor can confirm a result in seconds.
  • Schema by example, not fine-tuning — you supply a prompt plus a few annotated examples, and controlled generation enforces a consistent output shape. No training run, no labeled dataset.
  • Built for long inputs via chunking, parallel processing, and multi-pass extraction that recovers entities a single pass misses, instead of silently truncating at the context limit.
  • Model-agnostic across Gemini, OpenAI, and local models through Ollama, so you can prototype on a cloud model and move sensitive data to on-prem inference without rewriting prompts.
Who It's For

Great fit if you pull entities from dense, domain-heavy text — clinical notes, radiology reports, contracts — and need every result traceable to its origin for audit or compliance. The example-driven setup pays off when accuracy matters more than zero configuration. Look elsewhere if you want turnkey document parsing with no prompt design, or if your task is simple key-value scraping where a regex or a single LLM call already suffices — the grounding and multi-pass machinery is overhead you won't use. Note it is a Google open-source project, not an officially supported Google product.

Information

  • Websitegithub.com
  • AuthorsGoogle
  • Published date2025/07/08

Categories

More Items

GitHub
AI Agent2026

Provides a lightweight Python harness that turns LLMs into working agents with tool-use, skills, persistent memory, permission controls and multi-agent coordination. Ships with a CLI/React TUI, 43+ built-in tools, a plugin/skill system and the ohmo personal-agent for chat gateways. Best for developers prototyping agent workflows and multi-agent experiments.

GitHub
AI Model2026

Runs the Bonsai family of quantized LLMs locally (including vision-capable 27B): provides scripts and demo UIs to run 1-bit and ternary Bonsai models on macOS (Metal), Linux/Windows (CUDA/Vulkan/ROCm), or CPU, with long context, tool-calling and an optional Open WebUI agent demo.

GitHub
AI Client2025

Turns Chromium into a local-first AI browser with an embedded assistant that can summarise pages, extract structured data, automate web tasks, and run scheduled agents. Built as an open-source Chromium fork with 53+ built-in browser tools, 40+ app integrations, and support for BYO AI keys or fully local models (Ollama / LM Studio).