in frontend/src/hooks/useWebsocket.ts [88:99]
function resetHistory() {
setHistory([]);
setIsLoading(false);
setAgentName(null);
websocket.current?.send(
JSON.stringify({
type: "history.update",
inputs: [],
reset_agent: true,
})
);
}