-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
21 lines (16 loc) · 899 Bytes
/
Copy path.env.example
File metadata and controls
21 lines (16 loc) · 899 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# .env
# A secret key that clients must provide to authenticate their requests.
STUDENT_SECRET="a-very-strong-and-secret-key-for-students"
# Your GitHub Personal Access Token with `repo` and `workflow` scopes.
GITHUB_TOKEN="ghp_YourGitHubTokenHere"
# GitHub Copilot Token for accessing the Copilot API. (Optional if using other LLMs).
# Check here for more: https://github.com/ericc-ch/copilot-api
# COPILOT_GITHUB_TOKEN="ghu_YourCopilotTokenHere"
# COPILOT_BASE_URL="https://example.com/v1"
# Comma-separated list of Google Gemini API keys. You can use one or more.
GEMINI_API_KEYS="YourGeminiKey1,YourGeminiKey2"
# AIPipe API key for accessing the AIPipe LLM service. (Optional if using other LLMs)
# AIPIPE_KEY="YourAIPipeKey"
# Your Hugging Face Token for accessing private repos and syncing the SQLite DB.
HF_TOKEN="hf_YourHuggingFaceToken"
DATABASE_ID="your-hf-username/your-dataset-repo"