wolfram_query_with_assumptions
Clarify ambiguous Wolfram Alpha queries by specifying assumptions when initial results show multiple interpretations, ensuring accurate computational answers.
Instructions
Query Wolfram Alpha with specific assumptions when the initial query returns multiple interpretations. Use this when you need to clarify ambiguous queries.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| input | Yes | The exact same input from the previous query | |
| assumption | Yes | The assumption value to use from the previous query result | |
| maxchars | No | Maximum number of characters in the response (default: 6800) |
Input Schema (JSON Schema)
{
"properties": {
"assumption": {
"description": "The assumption value to use from the previous query result",
"type": "string"
},
"input": {
"description": "The exact same input from the previous query",
"type": "string"
},
"maxchars": {
"default": 6800,
"description": "Maximum number of characters in the response (default: 6800)",
"type": "number"
}
},
"required": [
"input",
"assumption"
],
"type": "object"
}