dakera_extract
Extract entities, topics, key phrases, and summaries from text using a configurable provider hierarchy. Supports local GLiNER and cloud AI providers.
Instructions
Extract structured information (entities, topics, key phrases, summary) from arbitrary text using the configured provider hierarchy: per-request override → namespace default → server default → GLiNER local. Supported providers: gliner (zero-config local ONNX), openai, anthropic, openrouter, ollama, none.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| text | Yes | Text to extract information from | |
| namespace | No | Namespace whose default extractor config is used. If omitted, the server-level default is used. | |
| entity_types | No | GLiNER entity type labels (e.g. ["person", "org", "location"]). Only used when provider is `gliner`. | |
| extractor_override | No | Per-request provider override — highest priority in the resolution hierarchy. Fields: provider, model, base_url, api_key. |