1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
import { Math } from '@vicons/tabler';
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, ...)`,
keywords: [
'math',
'evaluator',
'acos',
'acosh',
'acot',
'acoth',
'acsc',
'acsch',
'asec',
'asech',
'asin',
'asinh',
'atan',
'atan2',
'atanh',
'cos',
'cosh',
'cot',
'coth',
'csc',
'csch',
'sec',
'sech',
'sin',
'sinh',
'tan',
'tanh',
],
component: () => import('./math-evaluator.vue'),
icon: Math,
});
|