What Warpy is
Warpy is a configurable execution layer for B2B dashboards. It turns a natural-language request into one of four things:- a backend request your product already supports
- a frontend action you expose in the host app
- a direct page action through screen autopilot
- a grounded answer from uploaded documents
The operating model
Why the setup starts with API config
Warpy executes requests from the user’s browser. The first question is: where should requests go, and how should they authenticate? That is why the product starts with:- base URLs
- session headers
- tools and features
- knowledge base
- activation and rollout
The four execution surfaces
Structured API calls sent to your configured base URL with session headers attached.
Manual browser handlers your app exposes through window.warpy(toolName, vars).
Built-in page reading and UI action execution when a manual tool does not exist.
Document retrieval for product knowledge, policy details, SOPs, or course material.
What happens after the user sends a message
- The widget sends the message to Warpy.
- Warpy decides whether to answer from documents, use an approved tool, or act on the page.
- If tool execution is needed, the widget executes the returned tool calls in the user’s browser.
- Tool results come back to Warpy.
- Warpy returns a final answer and optional follow-up suggestions.