From 2890aeda3605add08da1b03b40cd44ec5d32ebe1 Mon Sep 17 00:00:00 2001 From: hanmolabiqiu Date: Tue, 2 Jun 2026 12:07:11 +0800 Subject: [PATCH] Add .env.example --- .env.example | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .env.example diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..9df972f --- /dev/null +++ b/.env.example @@ -0,0 +1,32 @@ +# Chatwoot AI Agent Configuration + +# Chatwoot Instance +CHATWOOT_BASE_URL=https://your-chatwoot-domain.com +CHATWOOT_WS_URL=wss://your-chatwoot-domain.com/cable + +# API Credentials (create via Chatwoot Profile > Access Token) +ACCESS_TOKEN=your_access_token +USER_UID=user@email.com +USER_TOKEN=your_user_token +USER_CLIENT=client_name +USER_EXPIRY=expiry_date + +# Account +ACCOUNT_ID=1 + +# AI Model +AI_API_BASE=https://your-llm-api.com +AI_MODEL=your-model-name +AI_API_KEY=your-api-key + +# AI Agent for Inbox 1 (sourcing-agent) +SOURCING_AGENT_ID=sourcing-agent + +# AI Agent for Inbox 7 (halo-blog-agent) +HALO_BLOG_AGENT_ID=halo-blog-agent + +# Human timeout (minutes) +HUMAN_TIMEOUT_MINUTES=15 + +# Logging +LOG_LEVEL=INFO