Skip to content

Commit 42ac484

Browse files
committed
πŸ› FIX: Examples
1 parent 3b2b5b6 commit 42ac484

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

β€Žexamples/astro/baseai/tools/calculator.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ const toolCalculator = () => ({
1010
function: {
1111
name: 'calculator',
1212
description:
13-
`A tool for evaluating mathematical expressions. ` +
13+
`A tool that can evaluate mathematical expressions. ` +
1414
`Example expressions: ` +
15-
`'1.2 * (2 + 4.5)', '12.7 cm to inch', 'sin(45 deg) ^ 2'.`,
15+
`'5.6 * (5 + 10.5)', '7.86 cm to inch', 'cos(80 deg) ^ 4'.`,
1616
parameters: {
1717
type: 'object',
1818
required: ['expression'],

β€Žexamples/nextjs/baseai/tools/calculator.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ const toolCalculator = () => ({
1010
function: {
1111
name: 'calculator',
1212
description:
13-
`A tool for evaluating mathematical expressions. ` +
13+
`A tool that can evaluate mathematical expressions. ` +
1414
`Example expressions: ` +
15-
`'1.2 * (2 + 4.5)', '12.7 cm to inch', 'sin(45 deg) ^ 2'.`,
15+
`'5.6 * (5 + 10.5)', '7.86 cm to inch', 'cos(80 deg) ^ 4'.`,
1616
parameters: {
1717
type: 'object',
1818
required: ['expression'],

β€Žexamples/remix/baseai/tools/calculator.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ const toolCalculator = () => ({
1010
function: {
1111
name: 'calculator',
1212
description:
13-
`A tool for evaluating mathematical expressions. ` +
13+
`A tool that can evaluate mathematical expressions. ` +
1414
`Example expressions: ` +
15-
`'1.2 * (2 + 4.5)', '12.7 cm to inch', 'sin(45 deg) ^ 2'.`,
15+
`'5.6 * (5 + 10.5)', '7.86 cm to inch', 'cos(80 deg) ^ 4'.`,
1616
parameters: {
1717
type: 'object',
1818
required: ['expression'],

0 commit comments

Comments
Β (0)