adf59ddce7
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.
9 lines
324 B
TypeScript
9 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);
|