Hi everyone, Christian and Eric here, co-founders of Frigade (W23).
Today we are launching the Frigade Assist API, which levels up your own AI agent to better onboard and support your users with a single tool call.
https://www.youtube.com/watch?v=-j7wd0gYS2M
PROBLEM
More and more teams are building their own agents. When a user gets stuck and needs help, companies tend to go one of two ways.
SOLUTION
We already solved the docs problem with Frigade. Our browser agent signs in to your product with the same permissions a real user has, works through your real workflows, and maps how your product works. No manual documentation or screenshots to take. It trains again every time you ship, so it always knows the version of your product that's live.
Now, with the Assist API, we can solve the two-agent problem too.
The Assist API a single tool call. Your agent calls it and gets back an answer grounded in how your product behaves today, or a personalized walkthrough rendered on the page the user is already on. For most AI agent frameworks, you can add it with just these lines of code:
import { frigade } from '@frigade/ai'
const frigade_guide_tool = {
description: 'Call this tool to answer product ' +
'questions or guide the user through a task.',
parameters: {
query: {
type: 'string',
description: 'What the user is asking or wants to do',
},
},
run: ({ query }) => frigade.assist({ query }),
}
The SDK forwards the call to the browser and Frigade acts on the page the user is on, highlighting the real element with the next step attached. Your agent decides when to call it and stays the only thing your user talks to.
What you get with it:
We are already working with Retell AI to extend their agent's onboarding capabilities. They build agents for a living and still chose to plug in Frigade rather than build something like this themselves.
This is for teams who already own an agent and care about product adoption. And if you do not have an agent, our drop-in Frigade Assistant is still the fastest path.
If you want to give it a spin, reach out and we'll get you a demo. https://frigade.com/assist-api
Christian and Eric