interpret_natural_language
Convert plain English math descriptions into executable Wolfram Language code and get the evaluation result.
Instructions
Convert natural language mathematical description to Wolfram Language code.
This is magic - describe what you want in English and get executable code.
Args: text: Natural language description (e.g., "the integral of x squared from 0 to 1", "solve x squared equals 4 for x", "plot sine of x from 0 to 2 pi")
Returns: Wolfram Language code and its evaluation result
Example: interpret_natural_language("the derivative of e to the x") -> {code: "D[E^x, x]", result: "E^x"}
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| text | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |