Skip to content

Commit

Permalink
template for conf.env file
Browse files Browse the repository at this point in the history
  • Loading branch information
wwbrannon committed Sep 24, 2024
1 parent 0c9a389 commit 17e1f0a
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions conf.env.template
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

0 comments on commit 17e1f0a

Please sign in to comment.