feat(classifier): add showCalculationWidget

This commit is contained in:
ItzCrazyKns
2025-12-02 11:50:26 +05:30
parent 33c8f454a3
commit b8a7fb936f
2 changed files with 4 additions and 0 deletions

View File

@@ -23,6 +23,9 @@ const schema = z.object({
showStockWidget: z showStockWidget: z
.boolean() .boolean()
.describe('Indicates whether to show the stock widget.'), .describe('Indicates whether to show the stock widget.'),
showCalculationWidget: z
.boolean()
.describe('Indicates whether to show the calculation widget.'),
}), }),
standaloneFollowUp: z standaloneFollowUp: z
.string() .string()

View File

@@ -62,6 +62,7 @@ export type ClassifierOutput = {
discussionSearch: boolean; discussionSearch: boolean;
showWeatherWidget: boolean; showWeatherWidget: boolean;
showStockWidget: boolean; showStockWidget: boolean;
showCalculationWidget: boolean;
}; };
standaloneFollowUp: string; standaloneFollowUp: string;
}; };