-
Notifications
You must be signed in to change notification settings - Fork 2
/
client.js
267 lines (219 loc) · 7.23 KB
/
client.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
const WebSocket = require("ws");
const axios = require("axios");
const { relayInit } = require("nostr-tools");
const { sleep } = require("./lib/helpers")
const { OFFERING_KIND } = require('./lib/defines')
require("dotenv").config();
global.WebSocket = WebSocket;
// ----------------- HELPERS ---------------------------
function getLatestEventByService(events, desiredService) {
return events
.filter((event) => {
const serviceTag = event.tags.find((tag) => tag[0] === "s");
return serviceTag && serviceTag[1] === desiredService;
})
.sort((a, b) => b.created_at - a.created_at)[0];
}
async function pollUrl(url, runs, delay) {
for (let i = 0; i < runs; i++) {
try {
const response = await axios.get(url);
if (response.status == 202) {
throw new Error("Not ready yet");
}
return response.data;
} catch (error) {
// console.error(`Fetching ${url}`);
if (i === runs - 1 || error.status == 500) {
throw new Error("Poll Timeout");
}
await sleep(delay);
}
}
}
// ----------------- GPT ---------------------------
function parseGPTResponse(response) {
if (response.choices && response.choices.length > 0) {
const assistantMessage = response.choices[0].message;
if (assistantMessage.role === "assistant") {
return assistantMessage.content.trim(); // Using trim() to remove any unnecessary whitespace
}
}
return null;
}
async function runGPT(relay, index, question) {
return new Promise(async (resolve, reject) => {
// --------------------- Fetch Offering Event -----------------------------
const postedNoteList = await relay.list([
{
kinds: [OFFERING_KIND],
limit: 10,
},
]);
const postedNote = getLatestEventByService(
postedNoteList,
"https://api.openai.com/v1/chat/completions"
);
const postedNoteContent = JSON.parse(postedNote.content);
// --------------------- Post to Note's endpoint -----------------------------
const requestData = {
model: "gpt-3.5-turbo",
messages: [
{
role: "user",
content: question ?? "Tell me a joke",
},
],
};
let responseData;
try {
const response = await axios.post(
postedNoteContent.endpoint,
requestData
);
responseData = response.data;
} catch (e) {
if (e.response && e.response.status === 402) {
responseData = e.response.data;
} else {
throw new Error(`Bad Request ${e}`);
}
}
// --------------------- Pay invoice -----------------------------
console.log(`------- PAYING GPT ${index} --------`);
console.log(responseData.pr);
console.log("----------------------------");
const response = await axios.post(
"https://legend.lnbits.com/api/v1/payments",
{
out: true,
bolt11: responseData.pr,
},
{
headers: {
"X-Api-Key": process.env.LNBITS_API,
"Content-type": "application/json",
},
}
);
console.log("------- PAID GPT ---------------");
console.log(response.data);
console.log("----------------------------");
// --------------------- Poll SuccessAction for Response -----------------------------
const totalResponse = await pollUrl(
responseData.successAction.url,
99,
1000
);
const gpt = parseGPTResponse(totalResponse);
console.log(`------- GPT ( ${index} ) ----------------`);
console.log(`User: ${question}`);
console.log(`${postedNote.s}: ${gpt}`);
console.log("----------------------------");
resolve(gpt);
});
}
// ----------------- STABLE DIFFUSION ---------------------------
async function runStableDiffusion(relay, index, prompt, model) {
return new Promise(async (resolve, reject) => {
// --------------------- Fetch Offering Event -----------------------------
const postedNoteList = await relay.list([
{
kinds: [OFFERING_KIND],
limit: 10,
},
]);
const postedNote = getLatestEventByService(
postedNoteList,
"https://stablediffusionapi.com/api/v4/dreambooth"
);
const postedNoteData = JSON.parse(postedNote.content);
// --------------------- Post to Note's endpoint -----------------------------
const requestData = {
model_id: model ?? "landscapev21",
prompt: prompt ?? "A puppy",
negative_prompt:
"painting, extra fingers, mutated hands, poorly drawn hands, poorly drawn face, deformed, ugly, blurry, bad anatomy, bad proportions, extra limbs, cloned face, skinny, glitchy, double torso, extra arms, extra hands, mangled fingers, missing lips, ugly face, distorted face, extra legs, anime",
width: "512",
height: "512",
samples: "1",
num_inference_steps: "30",
safety_checker: "no",
enhance_prompt: "yes",
seed: index,
guidance_scale: 7.5,
multi_lingual: "no",
panorama: "no",
self_attention: "no",
upscale: "no",
embeddings: "embeddings_model_id",
lora: "lora_model_id",
webhook: null,
track_id: null,
};
let responseData;
try {
const response = await axios.post(postedNoteData.endpoint, requestData);
responseData = response.data;
} catch (e) {
if (e.response && e.response.status === 402) {
responseData = e.response.data;
} else {
throw new Error(`Bad Request ${e}`);
}
}
// --------------------- Pay invoice -----------------------------
console.log(`------- PAYING SD ${index} --------`);
console.log(responseData.pr);
console.log("----------------------------");
const response = await axios.post(
"https://legend.lnbits.com/api/v1/payments",
{
out: true,
bolt11: responseData.pr,
},
{
headers: {
"X-Api-Key": process.env.LNBITS_API,
"Content-type": "application/json",
},
}
);
console.log("------- PAID SD ---------------");
console.log(response.data);
console.log("----------------------------");
// --------------------- Poll SuccessAction for Response -----------------------------
const totalResponse = await pollUrl(
responseData.successAction.url,
99,
1000
);
console.log("------- IMAGES ---------------");
console.log(totalResponse);
console.log("----------------------------");
resolve(totalResponse);
});
}
// --------------------- MAIN -----------------------------
async function main() {
const relay = relayInit(process.env.NOSTR_RELAY);
relay.on("connect", () => {
console.log(`connected to ${relay.url}`);
});
relay.on("error", (e) => {
console.log(`failed to connect to ${relay.url}: ${e}`);
});
await relay.connect();
// --------------------- Call Endpoints -----------------------------
const runs = 3;
const gptRuns = [];
for (let i = 0; i < runs; i++) {
gptRuns.push(runGPT(relay, i, `Tell me a joke about the number ${i}`));
}
await Promise.all(gptRuns);
// await runGPT(relay, i, `Tell me a joke`);
// await runStableDiffusion(relay, 0, "Cypherpunk girl with purple hair", "toonyou");
// --------------------- Clean Up -----------------------------
relay.close();
}
main();