API Key
You might say
Hook up the AI feature. I'll keep the API key in an environment variable—never hardcode the value.
An API key is a password-like string (often sk-…) that lets your program prove "this call is yours" when calling a service, with usage billed to your account.To add AI abilities to a page, create an API key in the provider's console, configure it into your project, and every program call carries the string so the service knows who is calling and whom to bill. It splits the job with your account password: passwords sign humans into pages, API keys authenticate program calls. A leaked key spends your quota—keep it in environment variables, never in code, and revoke it the moment it leaks.
Further reading