-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
55 lines (41 loc) · 2.1 KB
/
env.example
File metadata and controls
55 lines (41 loc) · 2.1 KB
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
# Google API Integration Configuration
# Copy this file to .env and fill in your values
# =============================================================================
# REQUIRED CONFIGURATION
# =============================================================================
# OpenAI API Key (required for the AI agent)
OPENAI_API_KEY=your_openai_api_key_here
# =============================================================================
# SERVER CONFIGURATION
# =============================================================================
# Root identifier for the server context (default: google)
SERVER_ROOT=google
# =============================================================================
# CACHE AND DATABASE CONFIGURATION
# =============================================================================
# Where to store the page cache (default: sqlite:///praga_cache.db)
# Examples:
# - SQLite: sqlite:///path/to/cache.db
# - PostgreSQL: postgresql://user:password@localhost/dbname
PAGE_CACHE_URL=sqlite:///praga_cache.db
# =============================================================================
# AI AGENT CONFIGURATION
# =============================================================================
# Which OpenAI model to use for the retriever agent (default: gpt-4o-mini)
# Options: gpt-4o-mini, gpt-4o, gpt-4-turbo, gpt-3.5-turbo
RETRIEVER_AGENT_MODEL=gpt-4o-mini
# Maximum iterations for the agent (default: 10)
RETRIEVER_MAX_ITERATIONS=10
# =============================================================================
# GOOGLE API CONFIGURATION
# =============================================================================
# Path to your Google API credentials file (default: credentials.json)
GOOGLE_CREDENTIALS_FILE=credentials.json
# Path to store the Google API token (default: token.pickle)
GOOGLE_TOKEN_FILE=token.pickle
# =============================================================================
# LOGGING CONFIGURATION
# =============================================================================
# Log level (default: INFO)
# Options: DEBUG, INFO, WARNING, ERROR, CRITICAL
LOG_LEVEL=INFO