-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ts
522 lines (495 loc) · 22.8 KB
/
index.ts
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
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
import OpenAI from "openai";
const OAI = new OpenAI({
baseURL: "http://localhost:8000/v1",
apiKey: "nothing",
});
export type InferenceResponse = {
response: unknown;
ttfb: number;
responseTimeMs: number;
};
const prompts = [
`Write a long story about a boy named billy who goes on an adventure to find a treasure`,
`Explain the theory of relativity in simple terms.`,
`Write a haiku about autumn.`,
`List the steps to bake a chocolate cake.`,
`Who was the first person to walk on the moon?`,
`Describe the water cycle.`,
`What are the primary colors?`,
`Explain the concept of supply and demand in economics.`,
`Write a short story about a time traveler.`,
`How does photosynthesis work?`,
`What is the Pythagorean theorem?`,
`Describe the plot of Romeo and Juliet.`,
`What are the main differences between DNA and RNA?`,
`Explain how a computer's CPU works.`,
`Write a poem about the ocean.`,
`What are the symptoms of the common cold?`,
`Describe the process of mitosis.`,
`Who painted the Mona Lisa?`,
`What is the difference between weather and climate?`,
`Explain the concept of blockchain technology.`,
`Write a recipe for spaghetti carbonara.`,
`What is the greenhouse effect?`,
`Describe the structure of an atom.`,
`Who wrote "To Kill a Mockingbird"?`,
`Explain how vaccines work.`,
`What is the difference between a simile and a metaphor?`,
`Describe the process of plate tectonics.`,
`Write a brief history of the Roman Empire.`,
`What are the main features of a mammal?`,
`Explain the concept of artificial intelligence.`,
`Write a dialog between two characters discussing their favorite books.`,
`What is the function of the pancreas?`,
`Describe the life cycle of a butterfly.`,
`Who composed the "Moonlight Sonata"?`,
`Explain the concept of quantum entanglement.`,
`Write a news article about a fictional scientific discovery.`,
`What is the difference between a virus and a bacterium?`,
`Describe the process of how a bill becomes a law.`,
`Who painted "The Starry Night"?`,
`Explain the concept of dark matter.`,
`Write a short essay on the importance of environmental conservation.`,
`What is the function of the cerebellum?`,
`Describe the process of photosynthesis in detail.`,
`Who invented the telephone?`,
`Explain the concept of cognitive dissonance in psychology.`,
`Write a letter to your future self.`,
`What is the difference between renewable and non-renewable energy sources?`,
`Describe the major events of World War II.`,
`Who wrote "1984"?`,
`Explain the concept of natural selection in evolution.`,
`Write a review of an imaginary restaurant.`,
`What is the difference between a tornado and a hurricane?`,
`Describe the process of how pearls are formed.`,
`Who discovered penicillin?`,
`Explain the concept of the Internet of Things (IoT).`,
`Write a short story about a robot gaining consciousness.`,
`What are the main functions of the liver?`,
`Describe the process of how mountains are formed.`,
`Who was the first woman to win a Nobel Prize?`,
`Explain the concept of neural networks in machine learning.`,
`Write a persuasive essay on the importance of space exploration.`,
`What is the difference between a democracy and a republic?`,
`Describe the process of how rainbows are formed.`,
`Who invented the printing press?`,
`Explain the concept of cryptocurrency.`,
`Write a scene for a play about time travel.`,
`What is the difference between classical and operant conditioning?`,
`Describe the process of how diamonds are formed.`,
`Who wrote "Pride and Prejudice"?`,
`Explain the concept of black holes in astrophysics.`,
`Write a blog post about the future of transportation.`,
`What is the function of the endocrine system?`,
`Describe the process of how volcanoes erupt.`,
`Who developed the theory of evolution?`,
`Explain the concept of virtual reality.`,
`Write a short biography of a fictional historical figure.`,
`What is the difference between a fruit and a vegetable?`,
`Describe the process of how soap cleans.`,
`Who invented the light bulb?`,
`Explain the concept of the butterfly effect in chaos theory.`,
`Write a children's story about friendship.`,
`What is the difference between a physical and chemical change?`,
`Describe the process of how clouds form.`,
`Who painted the Sistine Chapel ceiling?`,
`Explain the concept of neuroplasticity.`,
`Write a speech about the importance of education.`,
`What is the difference between an asteroid and a comet?`,
`Describe the process of how a tsunami forms.`,
`Who discovered radioactivity?`,
`Explain the concept of the uncanny valley in robotics.`,
`Write a poem about the changing seasons.`,
`What is the difference between a solute and a solvent?`,
`Describe the process of how a rainbow is formed.`,
`Who invented the World Wide Web?`,
`Explain the concept of the Turing test in artificial intelligence.`,
`Write a short story about a day in the life of a tree.`,
`What is the difference between alternating current (AC) and direct current (DC)?`,
`Describe the process of how a star is born.`,
`Who wrote "The Origin of Species"?`,
`Explain the concept of the multiverse theory in physics.`,
`What is the capital of France?`,
`Explain the theory of relativity in simple terms.`,
`Write a haiku about autumn.`,
`List the steps to bake a chocolate cake.`,
`Who was the first person to walk on the moon?`,
`Describe the water cycle.`,
`What are the primary colors?`,
`Explain the concept of supply and demand in economics.`,
`Write a short story about a time traveler.`,
`How does photosynthesis work?`,
`What is the Pythagorean theorem?`,
`Describe the plot of Romeo and Juliet.`,
`What are the main differences between DNA and RNA?`,
`Explain how a computer's CPU works.`,
`Write a poem about the ocean.`,
`What are the symptoms of the common cold?`,
`Describe the process of mitosis.`,
`Who painted the Mona Lisa?`,
`What is the difference between weather and climate?`,
`Explain the concept of blockchain technology.`,
`Write a recipe for spaghetti carbonara.`,
`What is the greenhouse effect?`,
`Describe the structure of an atom.`,
`Who wrote "To Kill a Mockingbird"?`,
`Explain how vaccines work.`,
`What is the difference between a simile and a metaphor?`,
`Describe the process of plate tectonics.`,
`Write a brief history of the Roman Empire.`,
`What are the main features of a mammal?`,
`Explain the concept of artificial intelligence.`,
`Write a dialog between two characters discussing their favorite books.`,
`What is the function of the pancreas?`,
`Describe the life cycle of a butterfly.`,
`Who composed the "Moonlight Sonata"?`,
`Explain the concept of quantum entanglement.`,
`Write a news article about a fictional scientific discovery.`,
`What is the difference between a virus and a bacterium?`,
`Describe the process of how a bill becomes a law.`,
`Who painted "The Starry Night"?`,
`Explain the concept of dark matter.`,
`Write a short essay on the importance of environmental conservation.`,
`What is the function of the cerebellum?`,
`Describe the process of photosynthesis in detail.`,
`Who invented the telephone?`,
`Explain the concept of cognitive dissonance in psychology.`,
`Write a letter to your future self.`,
`What is the difference between renewable and non-renewable energy sources?`,
`Describe the major events of World War II.`,
`Who wrote "1984"?`,
`Explain the concept of natural selection in evolution.`,
`Write a review of an imaginary restaurant.`,
`What is the difference between a tornado and a hurricane?`,
`Describe the process of how pearls are formed.`,
`Who discovered penicillin?`,
`Explain the concept of the Internet of Things (IoT).`,
`Write a short story about a robot gaining consciousness.`,
`What are the main functions of the liver?`,
`Describe the process of how mountains are formed.`,
`Who was the first woman to win a Nobel Prize?`,
`Explain the concept of neural networks in machine learning.`,
`Write a persuasive essay on the importance of space exploration.`,
`What is the difference between a democracy and a republic?`,
`Describe the process of how rainbows are formed.`,
`Who invented the printing press?`,
`Explain the concept of cryptocurrency.`,
`Write a scene for a play about time travel.`,
`What is the difference between classical and operant conditioning?`,
`Describe the process of how diamonds are formed.`,
`Who wrote "Pride and Prejudice"?`,
`Explain the concept of black holes in astrophysics.`,
`Write a blog post about the future of transportation.`,
`What is the function of the endocrine system?`,
`Describe the process of how volcanoes erupt.`,
`Who developed the theory of evolution?`,
`Explain the concept of virtual reality.`,
`Write a short biography of a fictional historical figure.`,
`What is the difference between a fruit and a vegetable?`,
`Describe the process of how soap cleans.`,
`Who invented the light bulb?`,
`Explain the concept of the butterfly effect in chaos theory.`,
`Write a children's story about friendship.`,
`What is the difference between a physical and chemical change?`,
`Describe the process of how clouds form.`,
`Who painted the Sistine Chapel ceiling?`,
`Explain the concept of neuroplasticity.`,
`Write a speech about the importance of education.`,
`What is the difference between an asteroid and a comet?`,
`Describe the process of how a tsunami forms.`,
`Who discovered radioactivity?`,
`Explain the concept of the uncanny valley in robotics.`,
`Write a poem about the changing seasons.`,
`What is the difference between a solute and a solvent?`,
`Describe the process of how a rainbow is formed.`,
`Who invented the World Wide Web?`,
`Explain the concept of the Turing test in artificial intelligence.`,
`Write a short story about a day in the life of a tree.`,
`What is the difference between alternating current (AC) and direct current (DC)?`,
`Describe the process of how a star is born.`,
`Who wrote "The Origin of Species"?`,
`Explain the concept of the multiverse theory in physics.`,
`Write a long story about a boy named billy who goes on an adventure to find a treasure`,
`Explain the theory of relativity in simple terms.`,
`Write a haiku about autumn.`,
`List the steps to bake a chocolate cake.`,
`Who was the first person to walk on the moon?`,
`Describe the water cycle.`,
`What are the primary colors?`,
`Explain the concept of supply and demand in economics.`,
`Write a short story about a time traveler.`,
`How does photosynthesis work?`,
`What is the Pythagorean theorem?`,
`Describe the plot of Romeo and Juliet.`,
`What are the main differences between DNA and RNA?`,
`Explain how a computer's CPU works.`,
`Write a poem about the ocean.`,
`What are the symptoms of the common cold?`,
`Describe the process of mitosis.`,
`Who painted the Mona Lisa?`,
`What is the difference between weather and climate?`,
`Explain the concept of blockchain technology.`,
`Write a recipe for spaghetti carbonara.`,
`What is the greenhouse effect?`,
`Describe the structure of an atom.`,
`Who wrote "To Kill a Mockingbird"?`,
`Explain how vaccines work.`,
`What is the difference between a simile and a metaphor?`,
`Describe the process of plate tectonics.`,
`Write a brief history of the Roman Empire.`,
`What are the main features of a mammal?`,
`Explain the concept of artificial intelligence.`,
`Write a dialog between two characters discussing their favorite books.`,
`What is the function of the pancreas?`,
`Describe the life cycle of a butterfly.`,
`Who composed the "Moonlight Sonata"?`,
`Explain the concept of quantum entanglement.`,
`Write a news article about a fictional scientific discovery.`,
`What is the difference between a virus and a bacterium?`,
`Describe the process of how a bill becomes a law.`,
`Who painted "The Starry Night"?`,
`Explain the concept of dark matter.`,
`Write a short essay on the importance of environmental conservation.`,
`What is the function of the cerebellum?`,
`Describe the process of photosynthesis in detail.`,
`Who invented the telephone?`,
`Explain the concept of cognitive dissonance in psychology.`,
`Write a letter to your future self.`,
`What is the difference between renewable and non-renewable energy sources?`,
`Describe the major events of World War II.`,
`Who wrote "1984"?`,
`Explain the concept of natural selection in evolution.`,
`Write a review of an imaginary restaurant.`,
`What is the difference between a tornado and a hurricane?`,
`Describe the process of how pearls are formed.`,
`Who discovered penicillin?`,
`Explain the concept of the Internet of Things (IoT).`,
`Write a short story about a robot gaining consciousness.`,
`What are the main functions of the liver?`,
`Describe the process of how mountains are formed.`,
`Who was the first woman to win a Nobel Prize?`,
`Explain the concept of neural networks in machine learning.`,
`Write a persuasive essay on the importance of space exploration.`,
`What is the difference between a democracy and a republic?`,
`Describe the process of how rainbows are formed.`,
`Who invented the printing press?`,
`Explain the concept of cryptocurrency.`,
`Write a scene for a play about time travel.`,
`What is the difference between classical and operant conditioning?`,
`Describe the process of how diamonds are formed.`,
`Who wrote "Pride and Prejudice"?`,
`Explain the concept of black holes in astrophysics.`,
`Write a blog post about the future of transportation.`,
`What is the function of the endocrine system?`,
`Describe the process of how volcanoes erupt.`,
`Who developed the theory of evolution?`,
`Explain the concept of virtual reality.`,
`Write a short biography of a fictional historical figure.`,
`What is the difference between a fruit and a vegetable?`,
`Describe the process of how soap cleans.`,
`Who invented the light bulb?`,
`Explain the concept of the butterfly effect in chaos theory.`,
`Write a children's story about friendship.`,
`What is the difference between a physical and chemical change?`,
`Describe the process of how clouds form.`,
`Who painted the Sistine Chapel ceiling?`,
`Explain the concept of neuroplasticity.`,
`Write a speech about the importance of education.`,
`What is the difference between an asteroid and a comet?`,
`Describe the process of how a tsunami forms.`,
`Who discovered radioactivity?`,
`Explain the concept of the uncanny valley in robotics.`,
`Write a poem about the changing seasons.`,
`What is the difference between a solute and a solvent?`,
`Describe the process of how a rainbow is formed.`,
`Who invented the World Wide Web?`,
`Explain the concept of the Turing test in artificial intelligence.`,
`Write a short story about a day in the life of a tree.`,
`What is the difference between alternating current (AC) and direct current (DC)?`,
`Describe the process of how a star is born.`,
`Who wrote "The Origin of Species"?`,
`Explain the concept of the multiverse theory in physics.`,
`What is the capital of France?`,
`Explain the theory of relativity in simple terms.`,
`Write a haiku about autumn.`,
`List the steps to bake a chocolate cake.`,
`Who was the first person to walk on the moon?`,
`Describe the water cycle.`,
`What are the primary colors?`,
`Explain the concept of supply and demand in economics.`,
`Write a short story about a time traveler.`,
`How does photosynthesis work?`,
`What is the Pythagorean theorem?`,
`Describe the plot of Romeo and Juliet.`,
`What are the main differences between DNA and RNA?`,
`Explain how a computer's CPU works.`,
`Write a poem about the ocean.`,
`What are the symptoms of the common cold?`,
`Describe the process of mitosis.`,
`Who painted the Mona Lisa?`,
`What is the difference between weather and climate?`,
`Explain the concept of blockchain technology.`,
`Write a recipe for spaghetti carbonara.`,
`What is the greenhouse effect?`,
`Describe the structure of an atom.`,
`Who wrote "To Kill a Mockingbird"?`,
`Explain how vaccines work.`,
`What is the difference between a simile and a metaphor?`,
`Describe the process of plate tectonics.`,
`Write a brief history of the Roman Empire.`,
`What are the main features of a mammal?`,
`Explain the concept of artificial intelligence.`,
`Write a dialog between two characters discussing their favorite books.`,
`What is the function of the pancreas?`,
`Describe the life cycle of a butterfly.`,
`Who composed the "Moonlight Sonata"?`,
`Explain the concept of quantum entanglement.`,
`Write a news article about a fictional scientific discovery.`,
`What is the difference between a virus and a bacterium?`,
`Describe the process of how a bill becomes a law.`,
`Who painted "The Starry Night"?`,
`Explain the concept of dark matter.`,
`Write a short essay on the importance of environmental conservation.`,
`What is the function of the cerebellum?`,
`Describe the process of photosynthesis in detail.`,
`Who invented the telephone?`,
`Explain the concept of cognitive dissonance in psychology.`,
`Write a letter to your future self.`,
`What is the difference between renewable and non-renewable energy sources?`,
`Describe the major events of World War II.`,
`Who wrote "1984"?`,
`Explain the concept of natural selection in evolution.`,
`Write a review of an imaginary restaurant.`,
`What is the difference between a tornado and a hurricane?`,
`Describe the process of how pearls are formed.`,
`Who discovered penicillin?`,
`Explain the concept of the Internet of Things (IoT).`,
`Write a short story about a robot gaining consciousness.`,
`What are the main functions of the liver?`,
`Describe the process of how mountains are formed.`,
`Who was the first woman to win a Nobel Prize?`,
`Explain the concept of neural networks in machine learning.`,
`Write a persuasive essay on the importance of space exploration.`,
`What is the difference between a democracy and a republic?`,
`Describe the process of how rainbows are formed.`,
`Who invented the printing press?`,
`Explain the concept of cryptocurrency.`,
`Write a scene for a play about time travel.`,
`What is the difference between classical and operant conditioning?`,
`Describe the process of how diamonds are formed.`,
`Who wrote "Pride and Prejudice"?`,
`Explain the concept of black holes in astrophysics.`,
`Write a blog post about the future of transportation.`,
`What is the function of the endocrine system?`,
`Describe the process of how volcanoes erupt.`,
`Who developed the theory of evolution?`,
`Explain the concept of virtual reality.`,
`Write a short biography of a fictional historical figure.`,
`What is the difference between a fruit and a vegetable?`,
`Describe the process of how soap cleans.`,
`Who invented the light bulb?`,
`Explain the concept of the butterfly effect in chaos theory.`,
`Write a children's story about friendship.`,
`What is the difference between a physical and chemical change?`,
`Describe the process of how clouds form.`,
`Who painted the Sistine Chapel ceiling?`,
`Explain the concept of neuroplasticity.`,
`Write a speech about the importance of education.`,
`What is the difference between an asteroid and a comet?`,
`Describe the process of how a tsunami forms.`,
`Who discovered radioactivity?`,
`Explain the concept of the uncanny valley in robotics.`,
`Write a poem about the changing seasons.`,
`What is the difference between a solute and a solvent?`,
`Describe the process of how a rainbow is formed.`,
`Who invented the World Wide Web?`,
`Explain the concept of the Turing test in artificial intelligence.`,
`Write a short story about a day in the life of a tree.`,
`What is the difference between alternating current (AC) and direct current (DC)?`,
`Describe the process of how a star is born.`,
`Who wrote "The Origin of Species"?`,
`Explain the concept of the multiverse theory in physics.`,
]
const averageStatus = {
ttfb: 0,
responseTimeMs: 0,
totalWords: 0,
completedPrompts: 0,
};
async function mainStream(
prompt: string,
): Promise<{ ttfb: number, totalTime: number, wordCount: number }> {
const abortController = new AbortController();
let startTime = Date.now();
try {
const response = await OAI.chat.completions.create(
{
messages: [
{
role: "user",
content: prompt,
},
],
model: "neuralmagic/Meta-Llama-3.1-8B-Instruct-FP8",
stream: true,
},
{
signal: abortController.signal,
maxRetries: 0,
},
);
let fullContent = '';
let firstChunkTime: number | null = null;
for await (const chunk of response) {
if (firstChunkTime === null) {
firstChunkTime = Date.now();
}
const content = chunk.choices[0]?.delta?.content || '';
fullContent += content;
process.stdout.write(content);
}
const endTime = Date.now();
const ttfb = firstChunkTime! - startTime;
const totalTime = endTime - startTime;
const wordCount = fullContent.trim().split(/\s+/).length;
// console.log('DONE, ttfb:', ttfb, 'totalTime:', totalTime);
return { ttfb, totalTime, wordCount };
} catch (error: any) {
if (error.code === 401) {
console.error('Unauthorized');
} else {
console.error(error?.message);
}
throw error;
} finally {
abortController.abort();
}
}
async function runAllPrompts() {
const results = await Promise.all(prompts.map(prompt => mainStream(prompt)));
const totalWords = results.reduce((sum, result) => sum + result.wordCount, 0);
const completedPrompts = results.length;
const calculatePercentile = (values: number[], percentile: number) => {
const sorted = [...values].sort((a, b) => a - b);
const index = Math.ceil((percentile / 100) * sorted.length) - 1;
return sorted[index];
};
const ttfbs = results.map(result => result.ttfb);
const responseTimes = results.map(result => result.totalTime);
const wordCounts = results.map(result => result.wordCount);
console.log('TTFB (ms):');
console.log(' p10:', calculatePercentile(ttfbs, 10));
console.log(' p50:', calculatePercentile(ttfbs, 50));
console.log(' p99:', calculatePercentile(ttfbs, 99));
console.log('Response Time (ms):');
console.log(' p10:', calculatePercentile(responseTimes, 10));
console.log(' p50:', calculatePercentile(responseTimes, 50));
console.log(' p99:', calculatePercentile(responseTimes, 99));
console.log('Word Count:');
console.log(' p10:', calculatePercentile(wordCounts, 10));
console.log(' p50:', calculatePercentile(wordCounts, 50));
console.log(' p99:', calculatePercentile(wordCounts, 99));
console.log('Total words:', totalWords);
console.log('Completed prompts:', completedPrompts);
}
runAllPrompts().catch(console.error);