Google Sheets API examples & templates
Use these vals as a playground to view and fork Google Sheets API examples and templates on Val Town. Run any example below or find templates that can be used as a pre-built solution.
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
dvdsgl
glideImportDemo
Script
Glide API 2.0: Bulk Import You can fork this Val to implement your own bulk import to Glide. Glide's high-performance bulk import API can load millions of rows
into Big Tables. It's designed for importing your business data
into Glide on a regular schedule (e.g. nightly). We designed this API for customers who regularly import tens of
thousands of rows or more to Glide using tools like Make. Our goal
was to make this process more efficient and less expensive. Note: This API is currently free to use. Future usage will cost
approximately 1 update per 10k rows.
1