-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
34 lines (29 loc) · 1.03 KB
/
Copy path.env.example
File metadata and controls
34 lines (29 loc) · 1.03 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
# knowledge SDK — Environment Configuration
# ==========================================
# Copy this file to .env and fill in your values.
# cp .env.example .env
# LLM Provider Configuration
# ---------------------------
# litellm uses the model string to route to the correct provider.
# Set provider-specific API keys as environment variables:
#
# OpenAI: OPENAI_API_KEY
# Anthropic: ANTHROPIC_API_KEY
# NVIDIA: NVIDIA_NIM_API_KEY
# Ollama: (no key needed — runs locally)
# vLLM: (custom endpoint via model name)
#
# Example:
# OPENAI_API_KEY=sk-...
# ANTHROPIC_API_KEY=sk-ant-...
# NVIDIA_NIM_API_KEY=nvapi-...
# Default LLM model for extraction (overridable via --model flag)
# KNOWLEDGE_DEFAULT_MODEL=gpt-4o
# HTTP Client Settings
# --------------------
# Maximum response body size in bytes (default: 52428800 = 50 MiB)
# KNOWLEDGE_MAX_BODY_SIZE=52428800
# Request timeout in seconds (default: 30)
# KNOWLEDGE_REQUEST_TIMEOUT=30
# Maximum retries for transient failures (default: 3)
# KNOWLEDGE_MAX_RETRIES=3