-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
26 lines (19 loc) · 966 Bytes
/
Copy path.env.example
File metadata and controls
26 lines (19 loc) · 966 Bytes
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
# Example environment variables for doc_parse_convert
# Copy this file to .env and fill in your actual values
# Jina API for HTML to Markdown conversion
JINA_API_KEY=your_jina_api_key_here
# Google Cloud Platform / Vertex AI settings
GCP_PROJECT_ID=your-gcp-project-id
GCP_LOCATION=us-central1
GEMINI_MODEL_NAME=gemini-2.5-flash
# Path to Google Cloud service account JSON file
# IMPORTANT: Never commit this file! Keep it outside the repository or use Application Default Credentials
GCP_SERVICE_ACCOUNT=/path/to/service-account.json
# OR: Use raw service account JSON as string (not recommended for production)
# GCP_SERVICE_ACCOUNT_JSON='{"type":"service_account",...}'
# Google Cloud Storage for HTML conversion
GCS_BUCKET_NAME=your-bucket-name
# AI Debug directory (optional - for troubleshooting AI extraction issues)
AI_DEBUG_DIR=/path/to/debug/directory
# Logging directory (optional - defaults to system temp)
DOC_PARSE_CONVERT_LOG_DIR=/path/to/logs