You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import { ActionContext, AgentActionDefinition } from "@/types";
export const RefreshPageAction = z
.object({})
.describe(
"Refresh a webpage. Refreshing a webpage is usually a good way if you need to reset the state on a page. Take care since every thing you did on that page will be reset."
);
export type RefreshPageActionType = z.infer<typeof RefreshPageAction>;