-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
60 lines (48 loc) · 2.32 KB
/
.env.example
File metadata and controls
60 lines (48 loc) · 2.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# =============================================================================
# Slack Credentials (Socket Mode)
# =============================================================================
# Create a Slack App at https://api.slack.com/apps
# Enable Socket Mode under Settings > Socket Mode
# See README.md for detailed setup instructions
# Bot User OAuth Token (OAuth & Permissions > Bot User OAuth Token)
SLACK_BOT_TOKEN=xoxb-your-token-here
# App-Level Token for Socket Mode (Basic Information > App-Level Tokens)
# Generate with scope: connections:write
SLACK_APP_TOKEN=xapp-your-token-here
# Channel ID where leads are posted (right-click channel > View channel details)
SLACK_CHANNEL_ID=C0123456789
# Optional: Channel ID for test posts
SLACK_TEST_CHANNEL_ID=
# =============================================================================
# LLM Configuration
# =============================================================================
# Default: OpenAI API
# For local Ollama: set LLM_BASE_URL=http://localhost:11434/v1
OPENAI_API_KEY=sk-your-key-here
LLM_MODEL_NAME=gpt-5-nano
# LLM_BASE_URL=http://localhost:11434/v1
#
# Optional: override max output tokens for all agents
LLM_MAX_TOKENS=4000
# =============================================================================
# Runtime Options
# =============================================================================
# DRY_RUN=true -> Log classifications but don't post to Slack
# DRY_RUN=false -> Post classification replies to message threads
DRY_RUN=true
DEBUG=true
# =============================================================================
# Observability (Logfire)
# =============================================================================
# Get your write token at https://logfire.pydantic.dev/
# Project Settings > Write Tokens > Create Write Token
LOGFIRE_TOKEN=
# =============================================================================
# Prompt Configuration
# =============================================================================
# Customize lead classification behavior for your deployment.
# Points to a JSON file - see prompt_config.example.json for all options.
#
# The file will be auto-discovered if named prompt_config.json in the
# current directory. Use PROMPT_CONFIG_PATH to specify a different location.
# PROMPT_CONFIG_PATH=./prompt_config.json