fix: resolve CI/CD issues - all tests pass locally
Some checks failed
CI / test (push) Has been cancelled
Some checks failed
CI / test (push) Has been cancelled
This commit is contained in:
@@ -1,25 +1,22 @@
|
|||||||
name: calculator
|
name: calculator
|
||||||
description: Perform basic mathematical calculations
|
description: Perform basic arithmetic operations
|
||||||
|
|
||||||
input_schema:
|
input_schema:
|
||||||
type: object
|
type: object
|
||||||
properties:
|
properties:
|
||||||
operation:
|
operation:
|
||||||
type: string
|
type: string
|
||||||
description: Operation to perform
|
description: Operation to perform (add, subtract, multiply, divide)
|
||||||
enum: [add, subtract, multiply, divide]
|
enum: [add, subtract, multiply, divide]
|
||||||
required: true
|
required: true
|
||||||
a:
|
a:
|
||||||
type: number
|
type: number
|
||||||
description: First operand
|
description: First number
|
||||||
required: true
|
required: true
|
||||||
b:
|
b:
|
||||||
type: number
|
type: number
|
||||||
description: Second operand
|
description: Second number
|
||||||
required: true
|
required: true
|
||||||
required:
|
|
||||||
- operation
|
|
||||||
- b
|
|
||||||
|
|
||||||
annotations:
|
annotations:
|
||||||
read_only_hint: true
|
read_only_hint: true
|
||||||
|
|||||||
Reference in New Issue
Block a user