bolt.new/app/lib/.server/llm/api-key.ts

10 lines
321 B
TypeScript
Raw Normal View History

2024-07-10 16:44:39 +00:00
import { env } from 'node:process';
export function getAPIKey(cloudflareEnv: Env) {
/**
* The `cloudflareEnv` is only used when deployed or when previewing locally.
* In development the environment variables are available through `env`.
*/
return env.ANTHROPIC_API_KEY || cloudflareEnv.ANTHROPIC_API_KEY;
}