Back to packages list

Vals using @fal-ai/serverless-client

Description from the NPM package:
Deprecation note: this library has been deprecated in favor of @fal-ai/client
danyslicer avatar
danyslicer
fluxImageGenerator
HTTP
Forked from isidentical/fluxImageGenerator
0
isidentical avatar
isidentical
fluxImageGenerator
HTTP
Sign in to fal.ai, generate an API key, and set it as FAL_KEY for your account.
2
turbo1912 avatar
turbo1912
private_model
Cron
Forked from turbo1912/private_fal_model
0
turbo1912 avatar
turbo1912
private_fal_model
Cron
Forked from turbo1912/supir
0
iamseeley avatar
iamseeley
realtimeGenerateImageHandler
Script
An interactive, runnable TypeScript val by iamseeley
0
iamseeley avatar
iamseeley
generateImageHandler
HTTP
An interactive, runnable TypeScript val by iamseeley
0
iamseeley avatar
iamseeley
falSDXLExample
Script
Forked from isidentical/falSDXLExample
0
stevekrouse avatar
stevekrouse
falSDXLExample
HTTP
Forked from isidentical/falSDXLExample
0
isidentical avatar
isidentical
emeraldCrocodile
Script
Forked from burkaygur/emeraldCrocodile
0
burkaygur avatar
burkaygur
emeraldCrocodile
Script
An interactive, runnable TypeScript val by burkaygur
0
isidentical avatar
isidentical
falSDXLExample
Script
An interactive, runnable TypeScript val by isidentical
0
isidentical avatar
isidentical
falImageHandler
HTTP
An interactive, runnable TypeScript val by isidentical
0
turbo1912 avatar
turbo1912
supir
Cron
@jsxImportSource https://esm.sh/react
0
fal avatar
fal
svd
Script
Stable Video Diffusion link to val - https://www.val.town/v/fal/svd import * as fal from "@fal-ai/serverless-client"; const result = await fal.subscribe("fal-ai/fast-svd", { input: { image_url: "https://storage.googleapis.com/falserverless/model_tests/svd/rocket.png" }, logs: true, onQueueUpdate: (update) => { if (update.status === "IN_PROGRESS") { update.logs.map((log) => log.message).forEach(console.log); } }, }); https://www.fal.ai/models/svd/playground
0
fal avatar
fal
creative_upscaler
Script
Creative Upscaler link to val - https://www.val.town/v/fal/creative_upscaler Usage const upscaledImage = @fal.creative_upscaler("an owl", "https://storage.googleapis.com/falserverless/model_tests/upscale/owl.png") Usage import fal from "npm:@fal-ai/serverless-client"; const result = await fal.subscribe("fal-ai/creative-upscaler", { input: { prompt: "an owl", image_url: "https://storage.googleapis.com/falserverless/model_tests/upscale/owl.png", }, logs: true, onQueueUpdate: (update) => { if (update.status === "IN_PROGRESS") { update.logs.map((log) => log.message).forEach(console.log); } }, }); https://www.fal.ai/models/creative-upscaler
0
fal avatar
fal
sdxl
Script
SDXL (fastest) https://www.fal.ai/models/stable-diffusion-xl link to val - https://www.val.town/v/fal/sdxl import * as fal from "npm:@fal-ai/serverless-client"; const result = await fal.subscribe("fal-ai/fast-sdxl", { input: { prompt: "photo of a rhino dressed suit and tie sitting at a table in a bar with a bar stools, award winning photography, Elke vogelsang" }, logs: true, onQueueUpdate: (update) => { if (update.status === "IN_PROGRESS") { update.logs.map((log) => log.message).forEach(console.log); } }, });
0