topic-conversations
Identify and extract conversations centered around a specific topic or keyword to streamline analysis and decision-making for product teams.
Instructions
Find conversations discussing a specific topic
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Optional: Maximum number of conversations to return (default: 5) | |
topic | Yes | Topic/keyword to search for |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"description": "Optional: Maximum number of conversations to return (default: 5)",
"type": "number"
},
"topic": {
"description": "Topic/keyword to search for",
"type": "string"
}
},
"required": [
"topic"
],
"type": "object"
}