calculator_assistant
Provides interactive calculator assistance with context-aware support, solving queries and offering guidance based on user input and additional context.
Instructions
Interactive calculator assistance with context-aware help
Input Schema
Name | Required | Description | Default |
---|---|---|---|
context | No | Additional context | |
query | Yes | The user query or question |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"context": {
"description": "Additional context",
"type": "string"
},
"query": {
"description": "The user query or question",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}