diff --git a/index.html b/index.html index 162ba36..7a73453 100644 --- a/index.html +++ b/index.html @@ -4,6 +4,15 @@ LLM Test Runner +
diff --git a/src/dashboard/index.tsx b/src/dashboard/index.tsx index 01be431..dad65fc 100644 --- a/src/dashboard/index.tsx +++ b/src/dashboard/index.tsx @@ -2,6 +2,12 @@ import React from "react"; import ReactDOM from "react-dom/client"; import { TestDashboard } from "./components/TestDashboard"; +pendo.initialize({ + visitor: { + id: "ANONYMOUS_VISITOR_ID", + }, +}); + ReactDOM.createRoot(document.getElementById("root")!).render( diff --git a/src/global.d.ts b/src/global.d.ts new file mode 100644 index 0000000..873aa01 --- /dev/null +++ b/src/global.d.ts @@ -0,0 +1 @@ +declare var pendo: any;