From a600dd2c2f8cc56bd69b99432ea47f090cf03e44 Mon Sep 17 00:00:00 2001 From: cfngc4594 Date: Tue, 25 Mar 2025 21:57:52 +0800 Subject: [PATCH] chore(env): add OPENAI_API_KEY and OPENAI_BASE_URL to .env.example --- .env.example | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.env.example b/.env.example index ea4c1a9..ea30204 100644 --- a/.env.example +++ b/.env.example @@ -16,3 +16,7 @@ AUTH_GITHUB_SECRET="your_github_client_secret" # The base URL for authentication callbacks, typically the root URL of your application AUTH_URL="http://localhost:3000" + +# OpenAI API key and base URL for AI services +OPENAI_API_KEY="your_openai_api_key" +OPENAI_BASE_URL="your_openai_base_url_if_custom"