intent_execute
Routes natural language math requests to the correct symbolic computation tools. Handles derivation, simplification, and solving intents.
Instructions
🎯 Natural-language intent router — map a request to the right tool chain.
Understands common math/derivation intents and returns the recommended
tool(s) to call. The agent can then execute the recommended tool(s) directly.
Args:
intent: Natural language request
(e.g., "derive NS equations", "simplify this", "verify derivative", "solve for x")
expression: Optional expression to operate on
variable: Optional variable for differentiation/solving
session: Whether to use session-based derivation (default True)
Returns:
intent_type, recommended tool chain, and examples
Example:
intent_execute("derive the temperature corrected elimination rate",
expression="C0 * exp(-k*t)")
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| intent | Yes | ||
| session | No | ||
| variable | No | ||
| expression | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||