mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-05-06 02:07:00 +00:00
Add one-off database inspection and cleanup scripts under `scripts/scratch/` for local debugging and maintenance work. Document root cleanliness and file placement expectations for AI assistants in `GEMINI.md` to keep temporary scripts and tests out of the project root.
21 lines
569 B
JavaScript
21 lines
569 B
JavaScript
import {
|
|
APIKEY_PROVIDERS,
|
|
SEARCH_PROVIDERS,
|
|
AUDIO_ONLY_PROVIDERS,
|
|
WEB_COOKIE_PROVIDERS,
|
|
} from "./src/shared/constants/providers.ts";
|
|
|
|
const apiKeys = Object.keys(APIKEY_PROVIDERS);
|
|
console.log("Searching overlap in APIKEY_PROVIDERS:");
|
|
console.log(
|
|
"Search overlap:",
|
|
Object.keys(SEARCH_PROVIDERS).filter((k) => apiKeys.includes(k))
|
|
);
|
|
console.log(
|
|
"Audio overlap:",
|
|
Object.keys(AUDIO_ONLY_PROVIDERS).filter((k) => apiKeys.includes(k))
|
|
);
|
|
console.log(
|
|
"Web Cookie overlap:",
|
|
Object.keys(WEB_COOKIE_PROVIDERS).filter((k) => apiKeys.includes(k))
|
|
);
|