feat: drop assistant ui, use custom chat ui

This commit is contained in:
bracesproul
2025-03-03 12:31:27 -08:00
parent a75c710990
commit 3f3f50d5c5
20 changed files with 4553 additions and 2477 deletions

View File

@@ -1,13 +1,10 @@
import { createRoot } from "react-dom/client";
import "./index.css";
import App from "./App.tsx";
import { RuntimeProvider } from "./providers/Runtime.tsx";
import { StreamProvider } from "./providers/Stream.tsx";
createRoot(document.getElementById("root")!).render(
<StreamProvider>
<RuntimeProvider>
<App />
</RuntimeProvider>
<App />
</StreamProvider>,
);