From 92f3887506f0ec49b6f9f730a6415a9f93dabe48 Mon Sep 17 00:00:00 2001 From: bucolucas Date: Sun, 18 Aug 2024 16:54:06 -0500 Subject: [PATCH] Add .env.example file with new environment variables --- .env.example | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .env.example diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..2ee2716 --- /dev/null +++ b/.env.example @@ -0,0 +1,18 @@ +# Telegram Bot Tokens +TELEGRAM_BOT_TOKEN=your_daemon_bot_token_here +TELEGRAM_APPRENTICE_BOT_TOKEN=your_apprentice_bot_token_here + +# OpenAI API Key +OPENAI_API_KEY=your_openai_api_key_here + +# Anthropic API Key +ANTHROPIC_API_KEY=your_anthropic_api_key_here + +# GitHub Repository Information +GITHUB_REPO_OWNER=your_github_username_or_organization +GITHUB_REPO_NAME=your_repo_name +GITHUB_ACCESS_TOKEN=your_github_personal_access_token + +# Chat IDs +DAEMON_CHAT_ID=your_daemon_chat_id +APPRENTICE_CHAT_ID=your_apprentice_chat_id \ No newline at end of file