{
"type": "object",
"properties": {
"q": {
"type": "string",
"description": "The search query or keyword (e.g., \"Artificial Intelligence\", \"Sustainability\")."
}
},
"required": [
"q"
]
}{
"type": "object",
"properties": {
"abstract": {
"type": "string",
"description": "The full text of the academic abstract to analyze."
}
},
"required": [
"abstract"
]
}{
"type": "object",
"properties": {
"topic": {
"type": "string",
"description": "The main topic of the conference."
},
"subject_area": {
"type": "string",
"description": "Broad research area."
},
"tone": {
"type": "string",
"enum": [
"formal",
"innovative",
"community"
],
"default": "formal"
},
"count": {
"type": "number",
"description": "Number of suggestions (max 10).",
"default": 5
}
},
"required": [
"topic"
]
}