mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-05-05 17:56:56 +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.
8 lines
324 B
TypeScript
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);
|