Connects to user's running Brave via Chrome DevTools Protocol to automate ChatGPT interaction. Uses puppeteer-core to open a tab, send the prompt, wait for response, and extract the result. No cookies, no separate profiles, no copy/paste. Just connects to the browser where the user is already logged in. One-time setup: relaunch Brave with --remote-debugging-port=9222 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
60 lines
1.5 KiB
TypeScript
60 lines
1.5 KiB
TypeScript
import type Benchmark from "benchmark";
|
|
|
|
import datetimeBenchmarks from "./datetime.js";
|
|
import discriminatedUnionBenchmarks from "./discriminatedUnion.js";
|
|
import ipv4Benchmarks from "./ipv4.js";
|
|
import objectBenchmarks from "./object.js";
|
|
import primitiveBenchmarks from "./primitives.js";
|
|
import realworld from "./realworld.js";
|
|
import stringBenchmarks from "./string.js";
|
|
import unionBenchmarks from "./union.js";
|
|
|
|
const argv = process.argv.slice(2);
|
|
let suites: Benchmark.Suite[] = [];
|
|
|
|
if (!argv.length) {
|
|
suites = [
|
|
...realworld.suites,
|
|
...primitiveBenchmarks.suites,
|
|
...stringBenchmarks.suites,
|
|
...objectBenchmarks.suites,
|
|
...unionBenchmarks.suites,
|
|
...discriminatedUnionBenchmarks.suites,
|
|
];
|
|
} else {
|
|
if (argv.includes("--realworld")) {
|
|
suites.push(...realworld.suites);
|
|
}
|
|
if (argv.includes("--primitives")) {
|
|
suites.push(...primitiveBenchmarks.suites);
|
|
}
|
|
if (argv.includes("--string")) {
|
|
suites.push(...stringBenchmarks.suites);
|
|
}
|
|
if (argv.includes("--object")) {
|
|
suites.push(...objectBenchmarks.suites);
|
|
}
|
|
if (argv.includes("--union")) {
|
|
suites.push(...unionBenchmarks.suites);
|
|
}
|
|
if (argv.includes("--discriminatedUnion")) {
|
|
suites.push(...datetimeBenchmarks.suites);
|
|
}
|
|
if (argv.includes("--datetime")) {
|
|
suites.push(...datetimeBenchmarks.suites);
|
|
}
|
|
if (argv.includes("--ipv4")) {
|
|
suites.push(...ipv4Benchmarks.suites);
|
|
}
|
|
}
|
|
|
|
for (const suite of suites) {
|
|
suite.run({});
|
|
}
|
|
|
|
// exit on Ctrl-C
|
|
process.on("SIGINT", function () {
|
|
console.log("Exiting...");
|
|
process.exit();
|
|
});
|