-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
47 lines (42 loc) · 1.89 KB
/
.env.example
File metadata and controls
47 lines (42 loc) · 1.89 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
# =============================================================================
# MCP CHATBOT ENVIRONMENT CONFIGURATION
# =============================================================================
# Copy this file to .env and update with your actual values
# -----------------------------------------------------------------------------
# SCRIPBOX API CONFIGURATION
# -----------------------------------------------------------------------------
SCRIPBOX_API_BASE_URL=https://api.scripbox.com
SCRIPBOX_CATALOG_BASE_URL=https://catalogueweb.scripbox.net
SCRIPBOX_API_VERSION=1.0
SCRIPBOX_API_TIMEOUT=30
SCRIPBOX_MAX_RETRIES=3
# -----------------------------------------------------------------------------
# LLM CONFIGURATION (OpenAI)
# -----------------------------------------------------------------------------
# Get your API key from: https://platform.openai.com/api-keys
LLM_PROVIDER=openai
OPENAI_API_KEY=your-openai-api-key-here
OPENAI_MODEL=gpt-4
# -----------------------------------------------------------------------------
# OLLAMA CONFIGURATION (Alternative to OpenAI)
# -----------------------------------------------------------------------------
OLLAMA_BASE_URL=http://localhost:11434
OLLAMA_MODEL=llama3
OLLAMA_TIMEOUT=60
# -----------------------------------------------------------------------------
# DATABASE CONFIGURATION (Optional)
# -----------------------------------------------------------------------------
POSTGRES_HOST=localhost
POSTGRES_PORT=5432
POSTGRES_DATABASE=mutual_funds
POSTGRES_USER=mcp_readonly_user
POSTGRES_PASSWORD=your-postgres-password
POSTGRES_SSL_MODE=disable
CONNECTION_POOL_SIZE=10
# -----------------------------------------------------------------------------
# SERVER CONFIGURATION
# -----------------------------------------------------------------------------
MCP_SERVER_NAME=scripbox-mutual-funds
MAX_QUERY_ROWS=1000
DEFAULT_QUERY_LIMIT=100
QUERY_TIMEOUT_SECONDS=30