This commit is contained in:
derpystuff 2024-01-13 01:46:53 +01:00
parent 1291974b5a
commit b5da631448
5 changed files with 79 additions and 2 deletions

View file

@ -86,4 +86,12 @@ module.exports.summarizeWebpage = async function(context, url){
return await request(ObeliskApi.SUMMARIZE_WEBPAGES, "POST", {}, {
url
})
}
// ROBIN
module.exports.aiWallpaper = async function(context, prompt, style){
return await request(ObeliskApi.AI_WALLPAPER, "POST", {}, {
prompt,
style
})
}