2022-06-02 00:10:03 +02:00
|
|
|
import { Math } from '@vicons/tabler';
|
|
|
|
import { defineTool } from '../tool';
|
|
|
|
|
|
|
|
export const tool = defineTool({
|
|
|
|
name: 'Math evaluator',
|
|
|
|
path: '/math-evaluator',
|
2023-11-01 17:07:51 -05:00
|
|
|
description: 'A calculator for evaluating mathematical expressions. You can use functions like sqrt, cos, sin, abs, etc.',
|
2022-06-02 00:10:03 +02:00
|
|
|
keywords: [
|
|
|
|
'math',
|
|
|
|
'evaluator',
|
2023-11-01 15:23:46 +01:00
|
|
|
'calculator',
|
|
|
|
'expression',
|
|
|
|
'abs',
|
2022-06-02 00:10:03 +02:00
|
|
|
'acos',
|
|
|
|
'acosh',
|
|
|
|
'acot',
|
|
|
|
'acoth',
|
|
|
|
'acsc',
|
|
|
|
'acsch',
|
|
|
|
'asec',
|
|
|
|
'asech',
|
|
|
|
'asin',
|
|
|
|
'asinh',
|
|
|
|
'atan',
|
|
|
|
'atan2',
|
|
|
|
'atanh',
|
|
|
|
'cos',
|
|
|
|
'cosh',
|
|
|
|
'cot',
|
|
|
|
'coth',
|
|
|
|
'csc',
|
|
|
|
'csch',
|
|
|
|
'sec',
|
|
|
|
'sech',
|
|
|
|
'sin',
|
|
|
|
'sinh',
|
2023-11-01 15:23:46 +01:00
|
|
|
'sqrt',
|
2022-06-02 00:10:03 +02:00
|
|
|
'tan',
|
|
|
|
'tanh',
|
|
|
|
],
|
|
|
|
component: () => import('./math-evaluator.vue'),
|
|
|
|
icon: Math,
|
|
|
|
});
|