Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

adding an env example file #133

Closed
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Bespoke Labs Curator Environment Configuration

#######################
# Required Settings
#######################

# OpenAI API Key
# Currently required as OpenAI is the only supported LLM provider
# Support for other providers (Claude, etc.) may be added in the future
# Get your key from: https://platform.openai.com/api-keys
OPENAI_API_KEY=sk-your-key-here

#######################
# Optional Settings
#######################

# Cache Directory
# Location where Curator stores its cache files
# Default: ~/.curator
# Note: This can also be set via the working_dir parameter in code
CURATOR_CACHE_DIR=/path/to/cache/directory

# Viewer Configuration
# Settings for the Curator Dataset Viewer
# Note: These are primarily set via command-line arguments:
# curator-viewer --host xxx --port xxx
# These environment variables are used as fallbacks if not specified via CLI
HOST=127.0.0.1
PORT=3000