-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathenv.example
More file actions
33 lines (28 loc) · 1.37 KB
/
Copy pathenv.example
File metadata and controls
33 lines (28 loc) · 1.37 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
# Configuration for chat_mcp.py - MCP Chat Client with EASA Regulations
# Copy this file to .env and fill in your API keys
# ============================================================================
# OpenAI Configuration
# ============================================================================
OPENAI_API_KEY=sk-your-openai-api-key-here
# Optional: custom base URL (e.g., for Azure OpenAI)
# OPENAI_BASE_URL=https://api.openai.com/v1
OPENAI_MODEL=gpt-4o
# ============================================================================
# Ollama Configuration (Local LLM)
# ============================================================================
OLLAMA_BASE_URL=http://localhost:11434/v1
OLLAMA_MODEL=llama3.1:8b
# No API key needed for local Ollama
# ============================================================================
# Hyperbolic Configuration
# ============================================================================
HYPERBOLIC_API_KEY=your-hyperbolic-api-key-here
HYPERBOLIC_BASE_URL=https://api.hyperbolic.xyz/v1
HYPERBOLIC_MODEL=meta-llama/Meta-Llama-3.1-70B-Instruct
# ============================================================================
# MCP Server Configuration (for easa-regulations)
# ============================================================================
EASA_DB_PATH=easa_complete.db
EASA_MODEL=all-MiniLM-L6-v2
EASA_MAX_RESULTS=20
EASA_CACHE=true