From e87f4b18373b680b2a85f77c64187559c7cc9206 Mon Sep 17 00:00:00 2001 From: swishkin Date: Wed, 1 Nov 2023 17:07:51 -0500 Subject: [PATCH] refactor(math-evaluator): improved description Improved description. --- src/tools/math-evaluator/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools/math-evaluator/index.ts b/src/tools/math-evaluator/index.ts index 2fa2b7c8..8bf5ce2d 100644 --- a/src/tools/math-evaluator/index.ts +++ b/src/tools/math-evaluator/index.ts @@ -4,7 +4,7 @@ import { defineTool } from '../tool'; export const tool = defineTool({ name: 'Math evaluator', path: '/math-evaluator', - description: 'Evaluate math expression, like a calculator on steroid (you can use function like sqrt, cos, sin, abs, ...)', + description: 'A calculator for evaluating mathematical expressions. You can use functions like sqrt, cos, sin, abs, etc.', keywords: [ 'math', 'evaluator',