GrobidConfig
Configuration for GROBID structured extraction from scientific documents.
Notes
Configuration for GROBID integration, an open-source machine-learning service for extracting structured information from scientific documents (such as PDFs). Supports enabling/disabling GROBID processing and specifying the GROBID service URL.
Usage
- YAML
- JSON
- XML
enabled: false
serviceUrl: string
{
"enabled": false,
"serviceUrl": "string"
}
<grobid>
<enabled>false</enabled>
<serviceUrl>string</serviceUrl>
</grobid>
Properties
| Property | Type | Required | Default |
|---|---|---|---|
enabled | boolean | No | false |
serviceUrl | string | No | http://localhost:8070 |
Property Details
enabled
Whether to send documents to Grobid. Default is false. Turning it on requires a Grobid service reachable at serviceUrl; documents are parsed normally if it is not.
serviceUrl
Base URL of the Grobid REST service. Defaults to http://localhost:8070, the address Grobid listens on out of the box.