From 1e052d1d2b858e104790d23d47dab66c9ac00afa Mon Sep 17 00:00:00 2001 From: Corentin Thomasset Date: Wed, 1 Nov 2023 15:15:16 +0100 Subject: [PATCH] refactor(math-evaluator): added keywords for search --- src/tools/math-evaluator/index.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/tools/math-evaluator/index.ts b/src/tools/math-evaluator/index.ts index 3dc15f4f..2fa2b7c8 100644 --- a/src/tools/math-evaluator/index.ts +++ b/src/tools/math-evaluator/index.ts @@ -8,6 +8,9 @@ export const tool = defineTool({ keywords: [ 'math', 'evaluator', + 'calculator', + 'expression', + 'abs', 'acos', 'acosh', 'acot', @@ -31,6 +34,7 @@ export const tool = defineTool({ 'sech', 'sin', 'sinh', + 'sqrt', 'tan', 'tanh', ],