import { Button } from "@/components/ui/button" import { Dialog, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger } from "@/components/ui/dialog" import { useState } from "react" export function About() { const [isOpen, setOpen] = useState(false) return ( The AI Comic Factory What is the AI Comic Factory?

The AI Comic Factory is a free and open-source application made to demonstrate the capabilities of AI models.

And yes, you can use your own art to generate comic panels!

👉 The language model used to generate the story is Zephyr-7b-beta.

👉 The diffusion model used by default is LCM SDXL, which is fast but doesn&pos;t have the highest quality. You can decide to use a slower model in the settings.

The code is public and can be deployed at home with some changes in the code. See the README for details about the architecture.

) }