-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
28 lines (22 loc) · 918 Bytes
/
Copy path.env.example
File metadata and controls
28 lines (22 loc) · 918 Bytes
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
# LLM Configuration
# 智谱 GLM API Key
LLM_API_KEY="your_api_key_here"
# LLM API Base URL
# 智谱 GLM: https://open.bigmodel.cn/api/paas/v4/
# OpenAI: https://api.openai.com/v1
LLM_BASE_URL="https://open.bigmodel.cn/api/paas/v4/"
# LLM Model name
# 智谱: glm-4.5-flash, glm-4-plus, glm-4
# OpenAI: gpt-4o-mini, gpt-4o
LLM_MODEL="glm-4.5-flash"
# GitHub API Token (recommended for avoiding rate limits)
# Create at: https://github.com/settings/tokens
# Scopes needed: public_repo (for reading public repos)
GITHUB_API_TOKEN="your_github_api_token_here"
# GitHub Configuration for pushing data
# Personal Access Token with repo scope for pushing to data repository
GITHUB_TOKEN="your_github_token_here"
# Data repository owner (your GitHub username or organization)
DATA_REPO_OWNER="your_username"
# Data repository name (default: github-trending-reporter-data)
DATA_REPO_NAME="github-trending-reporter-data"