OmniRoute/scripts/scratch/overlap.ts
diegosouzapw adf59ddce7 chore(scripts): add scratch maintenance utilities and ai workspace rules
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.
2026-04-16 16:07:44 -03:00

8 lines
324 B
TypeScript

import { APIKEY_PROVIDERS, SEARCH_PROVIDERS } from "./src/shared/constants/providers.ts";
const apiKeys = Object.keys(APIKEY_PROVIDERS);
console.log(
"Overlap:",
Object.keys(SEARCH_PROVIDERS).filter((k) => apiKeys.includes(k))
);
console.log("Is perplexity-search in APIKEY?", "perplexity-search" in APIKEY_PROVIDERS);