syrto_get_efficiency_and_size returns the two Syrto radar scores per year:
- Efficiency (0–100): how well the company converts resources into results
- Size (0–100): how large and stable the company is relative to its sector
Ask for this when
- You want to know a company’s efficiency or size score quickly — without a full financial breakdown
- You want to compare the two radar dimensions year-over-year
Arguments
The company ID from
syrto_find_company. Always call syrto_find_company first.Optional year to filter (e.g.
2022). If omitted, returns all available years (up to 5).Returns
A JSON object withcompany_name and a list of yearly entries:
Fiscal year.
Score from 0 to 100.
null if not available.Score from 0 to 100.
null if not available.Always include this field when presenting results to the user.
Examples
Example 1: Get radar scores for all years
User prompt: “What is Barilla’s efficiency score?” Tool call:Example 2: Scores for a single year
User prompt: “What was Barilla’s size score in 2022?” Tool call:- Returns only the 2022 entry:
{ "year": 2022, "efficiency": 21.0, "size": 100.0 }
Example 3: Compare two companies’ radar positioning
User prompt: “Compare the efficiency of Barilla and Lavazza” What happens:- Call
syrto_find_companyfor each company to get their IDs - Call
syrto_get_efficiency_and_sizefor each ID - Present the efficiency and size scores side by side to show how both companies position on the Syrto radar