From 03e938a903f520ff4c6976d873355a0f44278a9e Mon Sep 17 00:00:00 2001 From: MohamedBassem Date: Sat, 5 Oct 2024 15:17:15 +0000 Subject: fix(web): Simplify the language for inference settings --- apps/web/app/dashboard/settings/ai/page.tsx | 325 +++++++++++++++++++++++ apps/web/app/dashboard/settings/page.tsx | 10 +- apps/web/app/dashboard/settings/prompts/page.tsx | 325 ----------------------- 3 files changed, 330 insertions(+), 330 deletions(-) create mode 100644 apps/web/app/dashboard/settings/ai/page.tsx delete mode 100644 apps/web/app/dashboard/settings/prompts/page.tsx (limited to 'apps/web') diff --git a/apps/web/app/dashboard/settings/ai/page.tsx b/apps/web/app/dashboard/settings/ai/page.tsx new file mode 100644 index 00000000..009919a0 --- /dev/null +++ b/apps/web/app/dashboard/settings/ai/page.tsx @@ -0,0 +1,325 @@ +"use client"; + +import { ActionButton } from "@/components/ui/action-button"; +import { + Form, + FormControl, + FormField, + FormItem, + FormMessage, +} from "@/components/ui/form"; +import { FullPageSpinner } from "@/components/ui/full-page-spinner"; +import { Input } from "@/components/ui/input"; +import { + Select, + SelectContent, + SelectGroup, + SelectItem, + SelectTrigger, + SelectValue, +} from "@/components/ui/select"; +import { toast } from "@/components/ui/use-toast"; +import { useClientConfig } from "@/lib/clientConfig"; +import { api } from "@/lib/trpc"; +import { zodResolver } from "@hookform/resolvers/zod"; +import { Plus, Save, Trash2 } from "lucide-react"; +import { useForm } from "react-hook-form"; +import { z } from "zod"; + +import { buildImagePrompt, buildTextPrompt } from "@hoarder/shared/prompts"; +import { + zNewPromptSchema, + ZPrompt, + zUpdatePromptSchema, +} from "@hoarder/shared/types/prompts"; + +export function PromptEditor() { + const apiUtils = api.useUtils(); + + const form = useForm>({ + resolver: zodResolver(zNewPromptSchema), + defaultValues: { + text: "", + appliesTo: "all", + }, + }); + + const { mutateAsync: createPrompt, isPending: isCreating } = + api.prompts.create.useMutation({ + onSuccess: () => { + toast({ + description: "Prompt has been created!", + }); + apiUtils.prompts.list.invalidate(); + }, + }); + + return ( +
+ { + await createPrompt(value); + form.resetField("text"); + })} + > + { + return ( + + + + + + + ); + }} + /> + + { + return ( + + + + + + + ); + }} + /> + + + Add + + + + ); +} + +export function PromptRow({ prompt }: { prompt: ZPrompt }) { + const apiUtils = api.useUtils(); + const { mutateAsync: updatePrompt, isPending: isUpdating } = + api.prompts.update.useMutation({ + onSuccess: () => { + toast({ + description: "Prompt has been updated!", + }); + apiUtils.prompts.list.invalidate(); + }, + }); + const { mutate: deletePrompt, isPending: isDeleting } = + api.prompts.delete.useMutation({ + onSuccess: () => { + toast({ + description: "Prompt has been deleted!", + }); + apiUtils.prompts.list.invalidate(); + }, + }); + + const form = useForm>({ + resolver: zodResolver(zUpdatePromptSchema), + defaultValues: { + promptId: prompt.id, + text: prompt.text, + appliesTo: prompt.appliesTo, + }, + }); + + return ( +
+ { + await updatePrompt(value); + })} + > + { + return ( + + + + + + + ); + }} + /> + { + return ( + + + + + + + ); + }} + /> + + { + return ( + + + + + + + ); + }} + /> + + + Save + + deletePrompt({ promptId: prompt.id })} + className="items-center" + type="button" + > + + Delete + + + + ); +} + +export function TaggingRules() { + const { data: prompts, isLoading } = api.prompts.list.useQuery(); + + return ( +
+
Tagging Rules
+

+ Prompts that you add here will be included as rules to the model during + tag generation. You can view the final prompts in the prompt preview + section. +

+ {isLoading && } + {prompts && prompts.length == 0 && ( +

+ You don't have any custom prompts yet. +

+ )} + {prompts && + prompts.map((prompt) => )} + +
+ ); +} + +export function PromptDemo() { + const { data: prompts } = api.prompts.list.useQuery(); + const clientConfig = useClientConfig(); + return ( +
+
+ Prompt Preview +
+

Text Prompt

+ + {buildTextPrompt( + clientConfig.inference.inferredTagLang, + (prompts ?? []) + .filter((p) => p.appliesTo == "text" || p.appliesTo == "all") + .map((p) => p.text), + "\n\n", + ).trim()} + +

Image Prompt

+ + {buildImagePrompt( + clientConfig.inference.inferredTagLang, + (prompts ?? []) + .filter((p) => p.appliesTo == "images" || p.appliesTo == "all") + .map((p) => p.text), + ).trim()} + +
+ ); +} + +export default function PromptsPage() { + return ( + <> +
+
+
+ AI Settings +
+ +
+
+
+ +
+ + ); +} diff --git a/apps/web/app/dashboard/settings/page.tsx b/apps/web/app/dashboard/settings/page.tsx index 3c02df2e..97048657 100644 --- a/apps/web/app/dashboard/settings/page.tsx +++ b/apps/web/app/dashboard/settings/page.tsx @@ -12,18 +12,18 @@ export default async function Settings() { -
- -
- Inference Settings + AI Settings
+
+ +
diff --git a/apps/web/app/dashboard/settings/prompts/page.tsx b/apps/web/app/dashboard/settings/prompts/page.tsx deleted file mode 100644 index ba1c3f4f..00000000 --- a/apps/web/app/dashboard/settings/prompts/page.tsx +++ /dev/null @@ -1,325 +0,0 @@ -"use client"; - -import { ActionButton } from "@/components/ui/action-button"; -import { - Form, - FormControl, - FormField, - FormItem, - FormMessage, -} from "@/components/ui/form"; -import { FullPageSpinner } from "@/components/ui/full-page-spinner"; -import { Input } from "@/components/ui/input"; -import { - Select, - SelectContent, - SelectGroup, - SelectItem, - SelectTrigger, - SelectValue, -} from "@/components/ui/select"; -import { toast } from "@/components/ui/use-toast"; -import { useClientConfig } from "@/lib/clientConfig"; -import { api } from "@/lib/trpc"; -import { zodResolver } from "@hookform/resolvers/zod"; -import { Plus, Save, Trash2 } from "lucide-react"; -import { useForm } from "react-hook-form"; -import { z } from "zod"; - -import { buildImagePrompt, buildTextPrompt } from "@hoarder/shared/prompts"; -import { - zNewPromptSchema, - ZPrompt, - zUpdatePromptSchema, -} from "@hoarder/shared/types/prompts"; - -export function PromptEditor() { - const apiUtils = api.useUtils(); - - const form = useForm>({ - resolver: zodResolver(zNewPromptSchema), - defaultValues: { - text: "", - appliesTo: "all", - }, - }); - - const { mutateAsync: createPrompt, isPending: isCreating } = - api.prompts.create.useMutation({ - onSuccess: () => { - toast({ - description: "Prompt has been created!", - }); - apiUtils.prompts.list.invalidate(); - }, - }); - - return ( -
- { - await createPrompt(value); - form.resetField("text"); - })} - > - { - return ( - - - - - - - ); - }} - /> - - { - return ( - - - - - - - ); - }} - /> - - - Add - - - - ); -} - -export function PromptRow({ prompt }: { prompt: ZPrompt }) { - const apiUtils = api.useUtils(); - const { mutateAsync: updatePrompt, isPending: isUpdating } = - api.prompts.update.useMutation({ - onSuccess: () => { - toast({ - description: "Prompt has been updated!", - }); - apiUtils.prompts.list.invalidate(); - }, - }); - const { mutate: deletePrompt, isPending: isDeleting } = - api.prompts.delete.useMutation({ - onSuccess: () => { - toast({ - description: "Prompt has been deleted!", - }); - apiUtils.prompts.list.invalidate(); - }, - }); - - const form = useForm>({ - resolver: zodResolver(zUpdatePromptSchema), - defaultValues: { - promptId: prompt.id, - text: prompt.text, - appliesTo: prompt.appliesTo, - }, - }); - - return ( -
- { - await updatePrompt(value); - })} - > - { - return ( - - - - - - - ); - }} - /> - { - return ( - - - - - - - ); - }} - /> - - { - return ( - - - - - - - ); - }} - /> - - - Save - - deletePrompt({ promptId: prompt.id })} - className="items-center" - type="button" - > - - Delete - - - - ); -} - -export function CustomPrompts() { - const { data: prompts, isLoading } = api.prompts.list.useQuery(); - - return ( -
-
Custom Prompts
-

- Prompts that you add here will be included as rules to the model during - tag generation. You can view the final prompts in the prompt preview - section. -

- {isLoading && } - {prompts && prompts.length == 0 && ( -

- You don't have any custom prompts yet. -

- )} - {prompts && - prompts.map((prompt) => )} - -
- ); -} - -export function PromptDemo() { - const { data: prompts } = api.prompts.list.useQuery(); - const clientConfig = useClientConfig(); - return ( -
-
- Prompt Preview -
-

Text Prompt

- - {buildTextPrompt( - clientConfig.inference.inferredTagLang, - (prompts ?? []) - .filter((p) => p.appliesTo == "text" || p.appliesTo == "all") - .map((p) => p.text), - "\n\n", - ).trim()} - -

Image Prompt

- - {buildImagePrompt( - clientConfig.inference.inferredTagLang, - (prompts ?? []) - .filter((p) => p.appliesTo == "images" || p.appliesTo == "all") - .map((p) => p.text), - ).trim()} - -
- ); -} - -export default function PromptsPage() { - return ( - <> -
-
-
- Inference Settings -
- -
-
-
- -
- - ); -} -- cgit v1.2.3-70-g09d2