fix: resolve CI/CD issues - all tests pass locally
Some checks failed
CI / test (push) Has been cancelled

This commit is contained in:
2026-02-05 13:42:28 +00:00
parent bad94cab64
commit f4ec6e4a01

View File

@@ -1,25 +1,22 @@
name: calculator
description: Perform basic mathematical calculations
description: Perform basic arithmetic operations
input_schema:
type: object
properties:
operation:
type: string
description: Operation to perform
description: Operation to perform (add, subtract, multiply, divide)
enum: [add, subtract, multiply, divide]
required: true
a:
type: number
description: First operand
description: First number
required: true
b:
type: number
description: Second operand
description: Second number
required: true
required:
- operation
- b
annotations:
read_only_hint: true