-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy path.env.sample
More file actions
38 lines (32 loc) · 1.87 KB
/
.env.sample
File metadata and controls
38 lines (32 loc) · 1.87 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
# Environment Variables for Simili-Bot
# Copy this file to .env and fill in your values
# =============================================================================
# REQUIRED: Vector Database (Qdrant)
# =============================================================================
QDRANT_URL=https://your-cluster.qdrant.io:6333
QDRANT_API_KEY=your-qdrant-api-key
# =============================================================================
# REQUIRED: Embedding Provider (at least one)
# =============================================================================
# Gemini (preferred when both Gemini and OpenAI keys are present)
GEMINI_API_KEY=your-gemini-api-key
# OpenAI (used automatically when GEMINI_API_KEY is not set)
# OPENAI_API_KEY=your-openai-api-key
# =============================================================================
# OPTIONAL: LLM Model Override
# =============================================================================
# Override the LLM model used for issue analysis (triage, duplicate detection, etc.)
# Default: gemini-2.5-flash
# LLM_MODEL=gemini-2.5-flash
# =============================================================================
# OPTIONAL: GitHub (only needed for local CLI usage)
# =============================================================================
# When running as a GitHub Action, GITHUB_TOKEN is automatically provided.
# For local CLI usage, create a Personal Access Token with 'repo' scope.
# GITHUB_TOKEN=ghp_your_personal_access_token
# =============================================================================
# OPTIONAL: Transfer Token (for cross-repo transfers)
# =============================================================================
# If transferring issues between repos, you may need a token with broader
# permissions than the default GITHUB_TOKEN. This is optional.
# TRANSFER_TOKEN=ghp_your_transfer_token