Skip to content

Commit

Permalink
chore: update title and description
Browse files Browse the repository at this point in the history
  • Loading branch information
aykutkardas committed Mar 3, 2024
1 parent 89bc7b5 commit 1bad011
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 9 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Lightning Fast SDXL API demo by fal.ai
## Upscaler Comparator by fal.ai

This application is a sample of the SDXL Lightning API [https://fal.ai/models/stable-diffusion-xl-lightning]. It also shows the `fal.realtime` client in action.
This application is a comparator for Upscalers. It also shows the `fal.subscribe` client in action.

### Prerequisites

Expand All @@ -10,6 +10,6 @@ This application is a sample of the SDXL Lightning API [https://fal.ai/models/st

1. Add the `FAL_KEY` to your `.env.local` file.
2. Run
```sh
npm run dev
```
```sh
npm run dev
```
5 changes: 3 additions & 2 deletions app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,10 @@ import { Analytics } from "@vercel/analytics/react";
const inter = Inter({ subsets: ["latin"] });

export const metadata: Metadata = {
title: "SDXL Lightning - by fal.ai",
description: "Lightning fast SDXL API demo by fal.ai",
title: "Upscaler Comparator - by fal.ai",
description: "Comparator for Upscalers",
authors: [{ name: "fal.ai", url: "https://fal.ai" }],
// [TODO]: Update this to the correct URL
metadataBase: new URL("https://fastsdxl.ai"),
openGraph: {
images: "/og_thumbnail.jpeg",
Expand Down
2 changes: 1 addition & 1 deletion app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,8 @@ export default function Lightning() {
setModelOne(null);
setModelTwo(null);

upscaleWithModelTwo(file);
upscaleWithModelOne(file);
upscaleWithModelTwo(file);
};

useEffect(() => {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@fal-ai/sdxl-lightning",
"name": "@fal-ai/upscaler-comparator",
"version": "0.1.0",
"private": true,
"license": "AGPLv3",
Expand Down

0 comments on commit 1bad011

Please sign in to comment.