Spaces:
Sleeping
Sleeping
File size: 10,784 Bytes
11d758a 4f8f050 11d758a 4f8f050 11d758a faf4ba4 11d758a 26ef0a6 11d758a 4f8f050 11d758a ff7ca75 9bb9c53 11d758a 4f8f050 11809c3 4f8f050 11d758a c1936bb 11d758a ff7ca75 11d758a faf4ba4 11d758a 9bb9c53 11d758a 9bb9c53 11d758a 7563597 11d758a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 |
import { useState } from "react"
import { useLocalStorage } from 'usehooks-ts'
import { Button } from "@/components/ui/button"
import { Dialog, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger } from "@/components/ui/dialog"
import {
Select,
SelectContent,
SelectItem,
SelectTrigger,
SelectValue,
} from "@/components/ui/select"
import { RenderingModelVendor } from "@/types"
import { Input } from "@/components/ui/input"
import { Label } from "./label"
import { Field } from "./field"
import { localStorageKeys } from "./localStorageKeys"
import { defaultSettings } from "./defaultSettings"
import { Switch } from "@/components/ui/switch"
import { cn } from "@/lib/utils"
export function SettingsDialog() {
const [isOpen, setOpen] = useState(false)
const [renderingModelVendor, setRenderingModelVendor] = useLocalStorage<RenderingModelVendor>(
localStorageKeys.renderingModelVendor,
defaultSettings.renderingModelVendor
)
const [renderingUseTurbo, setRenderingUseTurbo] = useLocalStorage<boolean>(
localStorageKeys.renderingUseTurbo,
defaultSettings.renderingUseTurbo
)
const [huggingfaceApiKey, setHuggingfaceApiKey] = useLocalStorage<string>(
localStorageKeys.huggingfaceApiKey,
defaultSettings.huggingfaceApiKey
)
const [huggingfaceInferenceApiModel, setHuggingfaceInferenceApiModel] = useLocalStorage<string>(
localStorageKeys.huggingfaceInferenceApiModel,
defaultSettings.huggingfaceInferenceApiModel
)
const [huggingfaceInferenceApiModelTrigger, setHuggingfaceInferenceApiModelTrigger] = useLocalStorage<string>(
localStorageKeys.huggingfaceInferenceApiModelTrigger,
defaultSettings.huggingfaceInferenceApiModelTrigger
)
const [huggingfaceInferenceApiFileType, setHuggingfaceInferenceApiFileType] = useLocalStorage<string>(
localStorageKeys.huggingfaceInferenceApiFileType,
defaultSettings.huggingfaceInferenceApiFileType
)
const [replicateApiKey, setReplicateApiKey] = useLocalStorage<string>(
localStorageKeys.replicateApiKey,
defaultSettings.replicateApiKey
)
const [replicateApiModel, setReplicateApiModel] = useLocalStorage<string>(
localStorageKeys.replicateApiModel,
defaultSettings.replicateApiModel
)
const [replicateApiModelVersion, setReplicateApiModelVersion] = useLocalStorage<string>(
localStorageKeys.replicateApiModelVersion,
defaultSettings.replicateApiModelVersion
)
const [replicateApiModelTrigger, setReplicateApiModelTrigger] = useLocalStorage<string>(
localStorageKeys.replicateApiModelTrigger,
defaultSettings.replicateApiModelTrigger
)
const [openaiApiKey, setOpenaiApiKey] = useLocalStorage<string>(
localStorageKeys.openaiApiKey,
defaultSettings.openaiApiKey
)
const [openaiApiModel, setOpenaiApiModel] = useLocalStorage<string>(
localStorageKeys.openaiApiModel,
defaultSettings.openaiApiModel
)
return (
<Dialog open={isOpen} onOpenChange={setOpen}>
<DialogTrigger asChild>
<Button className="space-x-1 md:space-x-2">
<div>
<span className="hidden md:inline">Improve quality</span>
</div>
</Button>
</DialogTrigger>
<DialogContent className="w-full sm:max-w-[500px] md:max-w-[700px] overflow-y-auto h-max-[100vh] md:h-max-[80vh]">
<DialogHeader>
<DialogDescription className="w-full text-center text-lg font-bold text-stone-800">
Custom Settings
</DialogDescription>
</DialogHeader>
<div className="grid gap-4 py-1 space-y-1 text-stone-800">
<p className="text-sm text-zinc-700">
Note: most vendors have a warm-up delay when using a custom or rarely used model. Do not hesitate to try again after 5 minutes if that happens.
</p>
<p className="text-sm text-zinc-700">
Security note: we do not save those settings on our side, instead they are stored inside your web browser, using the local storage.
</p>
<Field>
<Label>Image vendor:</Label>
<Select
onValueChange={(value: string) => {
setRenderingModelVendor(value as RenderingModelVendor)
}}
defaultValue={renderingModelVendor}>
<SelectTrigger className="">
<SelectValue placeholder="Theme" />
</SelectTrigger>
<SelectContent>
<SelectItem value="SERVER">Use server settings (default)</SelectItem>
<SelectItem value="HUGGINGFACE">Custom Hugging Face model (recommended)</SelectItem>
<SelectItem value="REPLICATE">Custom Replicate model (will use your own account)</SelectItem>
<SelectItem value="OPENAI">DALL·E 3 by OpenAI (partial support, will use your own account)</SelectItem>
</SelectContent>
</Select>
</Field>
{renderingModelVendor === "SERVER" && <>
<Field>
<Label>Quality over performance ratio:</Label>
<div className="flex flex-row space-x-2 text-zinc-500">
<Switch
checked={renderingUseTurbo}
onCheckedChange={setRenderingUseTurbo}
/>
<span
onClick={() => setRenderingUseTurbo(!renderingUseTurbo)}
className={cn("cursor-pointer", { "text-zinc-800": renderingUseTurbo })}>Use a fast low-quality model (default) ⬅️ disable this for improved quality!</span>
</div>
</Field>
</>}
{renderingModelVendor === "HUGGINGFACE" && <>
<Field>
<Label>Hugging Face API Token (<a className="text-stone-600 underline" href="https://huggingface.co/subscribe/pro" target="_blank">PRO account</a> recommended for higher rate limit):</Label>
<Input
className="font-mono"
type="password"
placeholder="Enter your private api token"
onChange={(x) => {
setHuggingfaceApiKey(x.target.value)
}}
value={huggingfaceApiKey}
/>
</Field>
<Field>
<Label>Inference API model (custom SDXL or SDXL LoRA):</Label>
<Input
className="font-mono"
placeholder="Name of the Inference API model"
onChange={(x) => {
setHuggingfaceInferenceApiModel(x.target.value)
}}
value={huggingfaceInferenceApiModel}
/>
</Field>
<Field>
<Label>The file type supported by the model (jpg, webp..):</Label>
<Input
className="font-mono"
placeholder="Inference API file type"
onChange={(x) => {
setHuggingfaceInferenceApiFileType(x.target.value)
}}
value={huggingfaceInferenceApiFileType}
/>
</Field>
<p className="text-sm text-zinc-700">
Using a LoRA? Don't forget the trigger keyword! Also you will want to use the "Neutral" style.
</p>
<Field>
<Label>LoRA model trigger (optional):</Label>
<Input
className="font-mono"
placeholder="Trigger keyword (if you use a LoRA)"
onChange={(x) => {
setHuggingfaceInferenceApiModelTrigger(x.target.value)
}}
value={huggingfaceInferenceApiModelTrigger}
/>
</Field>
</>}
{renderingModelVendor === "OPENAI" && <>
<Field>
<Label>OpenAI API Token (you will be billed based on OpenAI pricing):</Label>
<Input
className="font-mono"
type="password"
placeholder="Enter your private api token"
onChange={(x) => {
setOpenaiApiKey(x.target.value)
}}
value={openaiApiKey}
/>
</Field>
<Field>
<Label>OpenAI image model:</Label>
<Input
className="font-mono"
placeholder="OpenAI image model"
onChange={(x) => {
setOpenaiApiModel(x.target.value)
}}
value={openaiApiModel}
/>
</Field>
</>}
{renderingModelVendor === "REPLICATE" && <>
<Field>
<Label>Replicate API Token (you will be billed based on Replicate pricing):</Label>
<Input
className="font-mono"
type="password"
placeholder="Enter your private api token"
onChange={(x) => {
setReplicateApiKey(x.target.value)
}}
value={replicateApiKey}
/>
</Field>
<Field>
<Label>Replicate model name:</Label>
<Input
className="font-mono"
placeholder="Name of the Replicate model"
onChange={(x) => {
setReplicateApiModel(x.target.value)
}}
value={replicateApiModel}
/>
</Field>
<Field>
<Label>Model version:</Label>
<Input
className="font-mono"
placeholder="Version of the Replicate model"
onChange={(x) => {
setReplicateApiModelVersion(x.target.value)
}}
value={replicateApiModelVersion}
/>
</Field>
<p className="text-sm text-zinc-700">
Using a LoRA? Don't forget the trigger keyword! Also you will want to use the "Neutral" style.
</p>
<Field>
<Label>LoRA model trigger (optional):</Label>
<Input
className="font-mono"
placeholder={'Eg. "In the style of TOK" etc'}
onChange={(x) => {
setReplicateApiModelTrigger(x.target.value)
}}
value={replicateApiModelTrigger}
/>
</Field>
</>}
</div>
<DialogFooter>
<Button type="submit" onClick={() => setOpen(false)}>Close</Button>
</DialogFooter>
</DialogContent>
</Dialog>
)
} |