mirror of
https://github.com/lfnovo/open-notebook.git
synced 2026-04-28 11:30:00 +00:00
* chore: fix database import error * remove unused file and improve env example * docker build automation
74 lines
No EOL
1.5 KiB
Text
74 lines
No EOL
1.5 KiB
Text
|
|
# SECURITY
|
|
# Set this to protect your Open Notebook instance with a password (for public hosting)
|
|
# OPEN_NOTEBOOK_PASSWORD=
|
|
|
|
# OPENAI
|
|
# OPENAI_API_KEY=
|
|
|
|
|
|
# ANTHROPIC
|
|
# ANTHROPIC_API_KEY=
|
|
|
|
# GEMINI
|
|
# this is the best model for long context and podcast generation
|
|
# GEMINI_API_KEY=
|
|
|
|
# VERTEXAI
|
|
# VERTEX_PROJECT=my-google-cloud-project-name
|
|
# GOOGLE_APPLICATION_CREDENTIALS=./google-credentials.json
|
|
# VERTEX_LOCATION=us-east5
|
|
|
|
# MISTRAL
|
|
# MISTRAL_API_KEY=
|
|
|
|
# DEEPSEEK
|
|
# DEEPSEEK_API_KEY=
|
|
|
|
# OLLAMA
|
|
# OLLAMA_API_BASE="http://10.20.30.20:11434"
|
|
|
|
# OPEN ROUTER
|
|
# OPENROUTER_BASE_URL="https://openrouter.ai/api/v1"
|
|
# OPENROUTER_API_KEY=
|
|
|
|
# GROQ
|
|
# GROQ_API_KEY=
|
|
|
|
# XAI
|
|
# XAI_API_KEY=
|
|
|
|
# ELEVENLABS
|
|
# Used only by the podcast feature
|
|
# ELEVENLABS_API_KEY=
|
|
|
|
# VOYAGE AI
|
|
# VOYAGE_API_KEY=
|
|
|
|
# AZURE OPENAI
|
|
# AZURE_OPENAI_API_KEY=
|
|
# AZURE_OPENAI_ENDPOINT=
|
|
# AZURE_OPENAI_API_VERSION="2024-12-01-preview"
|
|
# AZURE_OPENAI_DEPLOYMENT_NAME=
|
|
|
|
# USE THIS IF YOU WANT TO DEBUG THE APP ON LANGSMITH
|
|
# LANGCHAIN_TRACING_V2=true
|
|
# LANGCHAIN_ENDPOINT="https://api.smith.langchain.com"
|
|
# LANGCHAIN_API_KEY=
|
|
# LANGCHAIN_PROJECT="Open Notebook"
|
|
|
|
# CONNECTION DETAILS FOR YOUR SURREAL DB
|
|
# New format (preferred) - WebSocket URL
|
|
SURREAL_URL="ws://surrealdb/rpc:8000"
|
|
SURREAL_USER="root"
|
|
SURREAL_PASSWORD="root"
|
|
SURREAL_NAMESPACE="open_notebook"
|
|
SURREAL_DATABASE="staging"
|
|
|
|
# OPEN_NOTEBOOK_PASSWORD=
|
|
|
|
# FIRECRAWL - Get a key at https://firecrawl.dev/
|
|
FIRECRAWL_API_KEY=
|
|
|
|
# JINA - Get a key at https://jina.ai/
|
|
JINA_API_KEY= |