autocomplete
Generate instant autocomplete suggestions for partial text queries across fields like company, school, title, skill, and location to enhance search precision and efficiency.
Instructions
Get autocomplete suggestions for a partial query
Input Schema
Name | Required | Description | Default |
---|---|---|---|
field | Yes | Field to autocomplete (company, school, title, skill, location) | |
size | No | Number of results to return (max 100) | |
text | Yes | Partial text to autocomplete |
Input Schema (JSON Schema)
{
"properties": {
"field": {
"description": "Field to autocomplete (company, school, title, skill, location)",
"enum": [
"company",
"school",
"title",
"skill",
"location"
],
"type": "string"
},
"size": {
"description": "Number of results to return (max 100)",
"maximum": 100,
"minimum": 1,
"type": "number"
},
"text": {
"description": "Partial text to autocomplete",
"type": "string"
}
},
"required": [
"field",
"text"
],
"type": "object"
}