diff --git a/front/pages/w/[wId]/builder/assistants/index.tsx b/front/pages/w/[wId]/builder/assistants/index.tsx index 7cef65e01e59..f4a76a4115fa 100644 --- a/front/pages/w/[wId]/builder/assistants/index.tsx +++ b/front/pages/w/[wId]/builder/assistants/index.tsx @@ -3,10 +3,11 @@ import { Button, Cog6ToothIcon, ContextItem, - Page, + PageHeader, PencilSquareIcon, PlusIcon, RobotIcon, + SectionHeader, SliderToggle, } from "@dust-tt/sparkle"; import { GetServerSideProps, InferGetServerSidePropsType } from "next"; @@ -112,7 +113,6 @@ export default function AssistantsBuilder({ topNavigationCurrent="settings" subNavigation={subNavigationAdmin({ owner, current: "assistants" })} > -<<<<<<< HEAD - - - - {dustAgents.map((agent) => ( - } size={"sm"} /> - } - action={ - agent.sId !== "helper" ? ( - { - await handleToggleAgentStatus(agent); ->>>>>>> 8f36eb7c (Polishing Admin Pages) }} - selected={agent.status === "active"} - disabled={ - agent.status === "disabled_missing_datasource" || - !isBuilder - } /> - ) : null - } - > - -
{agent.description}
-
-
- ))} -
- { - void router.push(`/w/${owner.sId}/builder/assistants/new`); - }, - }} - /> - - {workspaceAgents.map((agent) => ( - } size={"sm"} /> - } - action={ -