get_top_growth_companies
Identify and retrieve the top-performing growth companies within a specific sector using customizable criteria.
Instructions
Retrieve the top growth companies in a specific sector.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
sector | Yes | The sector to get | |
top_n | Yes | Number of top growth companies to retrieve |
Input Schema (JSON Schema)
{
"properties": {
"sector": {
"description": "The sector to get",
"enum": [
"basic-materials",
"communication-services",
"consumer-cyclical",
"consumer-defensive",
"energy",
"financial-services",
"healthcare",
"industrials",
"real-estate",
"technology",
"utilities"
],
"title": "Sector",
"type": "string"
},
"top_n": {
"description": "Number of top growth companies to retrieve",
"title": "Top N",
"type": "integer"
}
},
"required": [
"sector",
"top_n"
],
"title": "get_top_growth_companiesArguments",
"type": "object"
}