Web search and content fetching extension for Pi using the Linkup API.
Something went wrong. Try again.
123456789101112export function hasLinkupApiKey(): boolean { return !!process.env.LINKUP_API_KEY;}
export function getLinkupApiKey(): string { const apiKey = process.env.LINKUP_API_KEY; if (!apiKey) { throw new Error("LINKUP_API_KEY environment variable is not set"); } return apiKey;}