-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Required: The YouTube channel to ingest | ||
CHANNEL_ID=XXXXXXXXXXXXXXXX | ||
|
||
# Required: API keys for YouTube and OpenAI | ||
YOUTUBE_API_KEY=XXXXXXXXXXXXXXXX | ||
OPENAI_API_KEY=XXXXXXXXXXXXXXXX | ||
|
||
# Optional: Python logging level (default: INFO) | ||
LOG_LEVEL=DEBUG | ||
|
||
# Optional: Random seed for numpy, random and torch (default: 42) | ||
SEED=XXXXXXXX | ||
|
||
# Optional: the directory in which to store fetched comments, embeddings, etc | ||
# (default: ./data). If you modify this, you may need to change the bind mounts | ||
# in the docker-compose.yml file. | ||
DATA_DIR=/path/to/dir | ||
|
||
# Optional: Misc variables to control CUDA, NCCL, HF Transformers, etc | ||
# This isn't an exhaustive list and you may need others depending on your GPUs | ||
# and their setup. We don't control / process these variables; see package docs | ||
HF_HOME=/path/to/dir | ||
NCCL_SHM_DISABLE=1 | ||
# NCCL_DEBUG=INFO | ||
# CUDA_VISIBLE_DEVICES=1 |