SuggestResponse
Response for suggest endpoint Returns publisher and agent recommendations based on task/query matching
Properties
| Property | Type | Required | Description |
|---|---|---|---|
agents |
Array<any> | Yes | Matched agents sorted by relevance (agent templates coming soon) |
publishers |
Array<PublisherSuggestion> | Yes | Matched publishers sorted by relevance |
View JSON Schema
{
"type": "object",
"description": "Response for suggest endpoint\nReturns publisher and agent recommendations based on task/query matching",
"required": [
"publishers",
"agents"
],
"properties": {
"agents": {
"type": "array",
"items": {},
"description": "Matched agents sorted by relevance (agent templates coming soon)"
},
"publishers": {
"type": "array",
"items": {
"$ref": "#/components/schemas/PublisherSuggestion"
},
"description": "Matched publishers sorted by relevance"
}
}
}