brainrot_image_gen1 file match
Generate images for Italian Brainrot characters using FAL AI
You can access search results via JSON API by adding format=json
to your query:
https://codesearch.val.run/$%7Bsuccess?q=image&page=1&format=json
For typeahead suggestions, use the /typeahead
endpoint:
https://codesearch.val.run/typeahead?q=image
Returns an array of strings in format "username" or "username/projectName"
Found 6288 results for "image"(557ms)
9data TEXT,
10type TEXT,
11image TEXT,
12time DATETIME NOT NULL
13)`,
2import deleteCreation from "./deleteCreation";
3import getCreation from "./getCreation";
4import getCreationImage from "./getCreationImage";
5import getCreations from "./getCreations";
6import updateTable from "./updateTable";
14case "/get-creation":
15return getCreation(req);
16case "/get-creation-image":
17return getCreationImage(req);
18case "/get-creations":
19return getCreations(req);