stableHorde api key

pull/1/head
Supositware 1 year ago
parent c5cacbb78b
commit 332f1730d6

@ -12,4 +12,5 @@ twiTokenSecret=TwitterSecretToken
twiChannel=ChannelWhereJustTheTwitterLinkAreSent
twiLogChannel=ChannelWhereTheDetailedInfoOfTheCommandIsSent
botsggToken=APITokenForBots.gg
botsggEndpoint=https://discord.bots.gg/api/v1
botsggEndpoint=https://discord.bots.gg/api/v1
stableHordeApi=0000000000

@ -3,6 +3,8 @@ import fetch from 'node-fetch';
import fs from 'node:fs';
import os from 'node:os';
const { stableHordeApi } = process.env;
export default {
data: new SlashCommandBuilder()
.setName('stablediffusion')
@ -42,7 +44,7 @@ async function generate(i, prompt) {
const fetchParameters = {
method: 'post',
body: JSON.stringify(body),
headers: { 'Content-Type': 'application/json', 'apikey': '0000000000' },
headers: { 'Content-Type': 'application/json', 'apikey': stableHordeApi },
};
let response = await fetch('https://stablehorde.net/api/v2/generate/sync', fetchParameters);

Loading…
Cancel
Save