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.

👉 The language model used to generate the descriptions of each panel is Llama-2 70b.

👉 The stable diffusion model used to generate the images is the base SDXL 1.0.

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

Do you want to create high-res image exports? Please check this tutorial.

) }