{
"type": "object",
"properties": {},
"additionalProperties": false
}{
"type": "object",
"properties": {
"question": {
"type": "string",
"minLength": 3,
"maxLength": 4000,
"description": "The question or decision to put to Seedthink."
},
"research": {
"type": "boolean",
"default": false,
"description": "True runs the deeper multi-source research pass: slower and costs 3 tokens instead of 1."
}
},
"required": [
"question"
],
"additionalProperties": false
}{
"type": "object",
"properties": {
"query": {
"type": "string",
"maxLength": 120,
"description": "Keyword or niche to match. Omit to list everything published."
},
"kind": {
"type": "string",
"enum": [
"any",
"seed",
"model"
],
"default": "any",
"description": "Restrict results to Seeds, Models, or both."
},
"limit": {
"type": "integer",
"minimum": 1,
"maximum": 25,
"default": 10,
"description": "Max results per kind (1–25)."
}
},
"additionalProperties": false
}{
"type": "object",
"properties": {
"target": {
"type": "string",
"enum": [
"seed",
"my_seeds",
"marketplace",
"chat",
"billing",
"agent_integrations",
"pricing",
"agi_progress"
],
"description": "Where to go. Use \"seed\" (with seed_id) for a single Seed dashboard."
},
"seed_id": {
"type": "string",
"format": "uuid",
"description": "Required only when target is \"seed\"."
}
},
"required": [
"target"
],
"additionalProperties": false,
"oneOf": [
{
"properties": {
"target": {
"const": "seed"
}
},
"required": [
"target",
"seed_id"
]
},
{
"properties": {
"target": {
"enum": [
"my_seeds",
"marketplace",
"chat",
"billing",
"agent_integrations",
"pricing",
"agi_progress"
]
}
},
"required": [
"target"
]
}
]
}