Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计提醒

langextractlangextract 搜索

Agent Skill

langextract 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

343

周安装

14

GitHub Stars

2

下载量

110
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:langextract(langextract 搜索)
来源仓库:https://github.com/akillness/oh-my-gods
仓库路径:skills/langextract
安装命令:
npx skills add https://github.com/akillness/oh-my-gods --skill langextract
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/akillness/oh-my-gods --skill langextract

简介

用于从非结构化文本中提取结构化数据并保留字符级溯源信息。

  • 适合处理临床笔记、法律文件或研究报告等长文档内容。
  • 支持多轮提取提升召回率,适用于需要引用级可追溯性的 NLP 流水线。
  • 可替代脆弱的正则规则方案,提升实体识别的准确性和稳定性。
  • 安装前建议确认权限范围及是否会触发联网或文件读写操作。

SKILL.md

langextract — LLM-Powered Structured Information Extraction

Extract structured data from unstructured text with character-level provenance. Every extracted entity traces back to exact character offsets in the source document.

When to use this skill

  • Extracting entities, relationships, or facts from unstructured text
  • Processing clinical notes, legal documents, research papers, or reports
  • Building NLP pipelines that need citation-level traceability (not just extracted values)
  • Long-document extraction (chunking + parallel workers + multi-pass for recall)
  • Replacing fragile regex/rule-based extraction with LLM-driven schema enforcement
  • Generating interactive HTML visualizations of annotated text

1. Installation

# Standard install (Gemini backend — default)
pip install langextract

# With OpenAI support
pip install langextract[openai]

# Development
pip install -e ".[dev]"

API key setup:

export LANGEXTRACT_API_KEY="your-gemini-or-openai-key"
# Gemini keys: https://aistudio.google.com/app/apikey
# OpenAI keys:  https://platform.openai.com/api-keys

2. Core concepts

ConceptDescription
Source groundingEvery extraction carries (start, end) char offsets into original text
Controlled generationGemini uses schema-constrained decoding; no hallucinated field names
Few-shot examplesSchema is inferred from ExampleData objects — zero fine-tuning needed
Multi-pass extractionextraction_passes=N runs N independent passes; results are merged
Parallel chunkingmax_workers=N processes text chunks concurrently

3. Basic extraction

import langextract as lx
import textwrap

prompt = textwrap.dedent("""\
    Extract characters, emotions, and relationships in order of appearance.
    Use exact text for extractions. Do not paraphrase or overlap entities.
    Provide meaningful attributes for each entity to add context.""")

examples = [
    lx.data.ExampleData(
        text="ROMEO. But soft! What light through yonder window breaks?",
        extractions=[
            lx.data.Extraction(
                extraction_class="character",
                extraction_text="ROMEO",
                attributes={"emotional_state": "wonder"}
            ),
        ]
    )
]

result = lx.extract(
    text_or_documents="Lady Juliet gazed longingly at the stars...",
    prompt_description=prompt,
    examples=examples,
    model_id="gemini-2.5-flash",
)

# Access results
for extraction in result.extractions:
    print(f"[{extraction.extraction_class}] '{extraction.extraction_text}' "
          f"@ chars {extraction.start}–{extraction.end}")

4. Long-document extraction (URL input, multi-pass, parallel)

result = lx.extract(
    text_or_documents="https://www.gutenberg.org/files/1513/1513-0.txt",
    prompt_description=prompt,
    examples=examples,
    model_id="gemini-2.5-flash",
    extraction_passes=3,   # 3 independent runs, results merged
    max_workers=20,        # parallel chunk processing
    max_char_buffer=1000   # smaller focused context windows
)
# Romeo & Juliet (147k chars / ~44k tokens) → 4,088 entities extracted

5. OpenAI backend

import os, langextract as lx

result = lx.extract(
    text_or_documents=input_text,
    prompt_description=prompt,
    examples=examples,
    model_id="gpt-4o",
    api_key=os.environ.get("OPENAI_API_KEY"),
    fence_output=True,
    use_schema_constraints=False
)

6. Local LLMs via Ollama

result = lx.extract(
    text_or_documents=input_text,
    prompt_description=prompt,
    examples=examples,
    model_id="gemma2:2b",
    model_url="http://localhost:11434",
    fence_output=False,
    use_schema_constraints=False
)

7. Visualize results

lx.io.save_annotated_documents([result], output_name="results.jsonl", output_dir=".")
html_content = lx.visualize("results.jsonl")
with open("visualization.html", "w") as f:
    f.write(html_content.data if hasattr(html_content, "data") else html_content)
# Open visualization.html in browser → color-coded annotations over source text

8. Key parameters reference

ParameterTypeDescription
text_or_documentsstr / URLRaw text, URL to fetch, or list of documents
prompt_descriptionstrNatural language extraction instructions
exampleslist[ExampleData]Few-shot examples that define the schema
model_idstrgemini-2.5-flash, gpt-4o, gemma2:2b, …
api_keystrAPI key (overrides LANGEXTRACT_API_KEY env var)
model_urlstrBase URL for Ollama or custom endpoints
extraction_passesintIndependent extraction runs (default: 1)
max_workersintParallel chunk workers (default: 1)
max_char_bufferintCharacters per chunk
fence_outputboolUse JSON fencing instead of constrained decoding
use_schema_constraintsboolControlled generation — Gemini default: True

9. Custom provider plugin

import langextract as lx

@lx.providers.registry.register(r'^mymodel', r'^custom')
class MyProviderLanguageModel(lx.inference.BaseLanguageModel):
    def __init__(self, model_id: str, api_key: str = None, **kwargs):
        self.client = MyProviderClient(api_key=api_key)

    def infer(self, batch_prompts, **kwargs):
        for prompt in batch_prompts:
            result = self.client.generate(prompt, **kwargs)
            yield [lx.inference.ScoredOutput(score=1.0, output=result)]

Package as a PyPI plugin with entry point:

[project.entry-points."langextract.providers"]
myprovider = "langextract_myprovider:MyProviderLanguageModel"

Disable all plugins: LANGEXTRACT_DISABLE_PLUGINS=1


10. Use cases

DomainExample
Medical/clinicalMedication names, dosages, routes from clinical notes
LegalClause extraction, party identification from contracts
Literary analysisCharacter, emotion, relationship graphs
FinanceStructured data extraction from earnings reports
RadiologyFree-text radiology reports → structured format
ResearchEntity/relation extraction from academic papers

Best practices

  1. Write precise prompts — specify "use exact text, do not paraphrase" to keep offsets accurate
  2. Use few-shot examples — 2–3 examples covering edge cases dramatically improves accuracy
  3. Tune max_char_buffer — smaller values (500–1000) give more focused context; larger values reduce API calls
  4. Use extraction_passes=3 for long docs — independent runs catch entities missed in single pass
  5. Set max_workers — parallelization dramatically speeds up long-document processing
  6. Verify offsetsresult.text[extraction.start:extraction.end] must equal extraction_text
  7. Use visualization — HTML output makes it easy to spot extraction errors and coverage gaps

References

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

32.73%
按下载量换算36

Claude

31.63%
按下载量换算35

Cursor

17.92%
按下载量换算20

Gemini CLI

9.08%
按下载量换算10

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills