* Remove unnecessary dataset code * Fix jump on row selection * Add FineTuneButton * Add model slug to modal * Add fine tunes to schema * Remove dataset routers * Remove more dataset-specific code * Remove more data code * Fix horizontal scroll bar jumping * Add fine tunes page * Actually create the fine tune entry * Add beta modal * Require beta for fine tunes and request logs * Send user to waitlist link * control beta features in .env variable * Combine migration files * Show beta features in app shell * Clear selected log ids last when closing fine tune modal * Remove ModalCloseButton from BetaModal * Remove unused import * Change timestamps to camelCase
19 lines
530 B
TypeScript
19 lines
530 B
TypeScript
import { Text, VStack, Divider } from "@chakra-ui/react";
|
|
import FineTunesTable from "~/components/fineTunes/FineTunesTable";
|
|
|
|
import AppShell from "~/components/nav/AppShell";
|
|
|
|
export default function FineTunes() {
|
|
return (
|
|
<AppShell title="Fine Tunes" requireAuth requireBeta>
|
|
<VStack px={8} py={8} alignItems="flex-start" spacing={4} w="full">
|
|
<Text fontSize="2xl" fontWeight="bold">
|
|
Fine Tunes
|
|
</Text>
|
|
<Divider />
|
|
<FineTunesTable />
|
|
</VStack>
|
|
</AppShell>
|
|
);
|
|
}
|