Spaces:
Paused
Paused
File size: 2,436 Bytes
56c7b6d | 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 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 | # Job Application AI Agent Configuration
# ============================================================================
# LLM PROVIDER SETTINGS
# ============================================================================
# Options: "ollama" (free, local), "groq" (API), "grok" (xAI API), "openai" (premium)
LLM_PROVIDER=groq
# Groq API Configuration
# Get your API key from: https://console.groq.com/keys
GROQ_API_KEY=
GROQ_MODEL=llama-3.3-70b-versatile
GROQ_BASE_URL=https://api.groq.com/openai/v1
# OpenAI Configuration (Optional - if you prefer OpenAI)
# OPENAI_API_KEY=your_openai_key_here
# OPENAI_MODEL=gpt-4o-mini
# Ollama Configuration (Optional - for local model)
# OLLAMA_API_KEY=ollama
# OLLAMA_BASE_URL=http://127.0.0.1:11434/v1
# OLLAMA_MODEL=llama3.1:8b
JOB_APPLY_AI_DATA_DIR=.runtime
TMP=.local_state/temp
TEMP=.local_state/temp
PIP_CACHE_DIR=.local_state/pip-cache
PYTHONPYCACHEPREFIX=.local_state/pycache
# Set to your Chrome major version (check: chrome://version/)
# Examples: 146, 147, 148
UC_CHROME_VERSION_MAIN=146
# Chrome launch path (uncomment if Chrome is not found automatically)
CHROME_BINARY_PATH=C:\Program Files\Google\Chrome\Application\chrome.exe
# Disable GPU (helps with Chrome connection issues)
# Set to 1 to disable, 0 to enable
CHROME_DISABLE_GPU=1
# Disable sandbox (helpful for some systems)
# Set to 1 to disable, 0 to enable
CHROME_DISABLE_SANDBOX=0
# LinkedIn scraping mode: 1 = browser (Selenium), 0 = HTTP fallback (recommended on this machine)
LINKEDIN_USE_BROWSER=0
# CV tailoring mode for main UI:
# local = built-in rule/NLP tailoring (default)
# api = use "Automatic CV and Cover Letter with API" engine from same UI
CV_TAILORING_MODE=local
# Enable/disable profile summary rewriting in local mode
CV_ENABLE_SUMMARY_TAILORING=1
# API provider options for api mode (choose one provider)
# LLM_PROVIDER=groq
# GROQ_API_KEY=your_groq_api_key_here
# GROQ_MODEL=llama-3.3-70b-versatile
# GROQ_BASE_URL=https://api.groq.com/openai/v1
# Optional cover letter template path required by API mode updater class
# API_COVER_LETTER_TEMPLATE_PATH=Automatic CV and Cover Letter with API/data/Cover Letter_Imon .docx
# ============================================================================
# FLASK/WEB INTERFACE SETTINGS
# ============================================================================
SECRET_KEY=dev_key_for_testing
FLASK_ENV=development
FLASK_DEBUG=0
|