1616STRUCTURED_OUTPUT_FRAMEWORK = " instructor"
1717
1818LLM_API_KEY = " your_api_key"
19- LLM_MODEL = " openai/gpt-4o -mini"
19+ LLM_MODEL = " openai/gpt-5 -mini"
2020LLM_PROVIDER = " openai"
2121LLM_ENDPOINT = " "
2222LLM_API_VERSION = " "
@@ -30,10 +30,13 @@ EMBEDDING_DIMENSIONS=3072
3030EMBEDDING_MAX_TOKENS = 8191
3131# If embedding key is not provided same key set for LLM_API_KEY will be used
3232# EMBEDDING_API_KEY="your_api_key"
33+ # Note: OpenAI support up to 2048 elements and Gemini supports a maximum of 100 elements in an embedding batch,
34+ # Cognee sets the optimal batch size for OpenAI and Gemini, but a custom size can be defined if necessary for other models
35+ # EMBEDDING_BATCH_SIZE=2048
3336
3437# If using BAML structured output these env variables will be used
3538BAML_LLM_PROVIDER = openai
36- BAML_LLM_MODEL = " gpt-4o -mini"
39+ BAML_LLM_MODEL = " gpt-5 -mini"
3740BAML_LLM_ENDPOINT = " "
3841BAML_LLM_API_KEY = " your_api_key"
3942BAML_LLM_API_VERSION = " "
@@ -52,18 +55,18 @@ BAML_LLM_API_VERSION=""
5255# ###############################################################################
5356# Configure storage backend (local filesystem or S3)
5457# STORAGE_BACKEND="local" # Default: uses local filesystem
55- #
58+ #
5659# -- To switch to S3 storage, uncomment and fill these: ---------------------
5760# STORAGE_BACKEND="s3"
5861# STORAGE_BUCKET_NAME="your-bucket-name"
5962# AWS_REGION="us-east-1"
6063# AWS_ACCESS_KEY_ID="your-access-key"
6164# AWS_SECRET_ACCESS_KEY="your-secret-key"
62- #
65+ #
6366# -- S3 Root Directories (optional) -----------------------------------------
6467# DATA_ROOT_DIRECTORY="s3://your-bucket/cognee/data"
6568# SYSTEM_ROOT_DIRECTORY="s3://your-bucket/cognee/system"
66- #
69+ #
6770# -- Cache Directory (auto-configured for S3) -------------------------------
6871# When STORAGE_BACKEND=s3, cache automatically uses S3: s3://BUCKET/cognee/cache
6972# To override the automatic S3 cache location, uncomment:
@@ -176,7 +179,14 @@ ENABLE_BACKEND_ACCESS_CONTROL=False
176179
177180# Cognee Cloud API settings for syncing data to/from cloud infrastructure
178181COGNEE_CLOUD_API_URL = " http://localhost:8001"
179- COGNEE_CLOUD_AUTH_TOKEN = " your-auth-token"
182+ COGNEE_CLOUD_AUTH_TOKEN = " your-api-key"
183+
184+ # ###############################################################################
185+ # UI Settings
186+ # ###############################################################################
187+
188+ # URL where the frontend is served, defaults to http://localhost:3000
189+ UI_APP_URL = http://localhost:3000
180190
181191# ###############################################################################
182192# 🛠️ DEV Settings
@@ -196,6 +206,16 @@ LITELLM_LOG="ERROR"
196206# DEFAULT_USER_EMAIL=""
197207# DEFAULT_USER_PASSWORD=""
198208
209+ # ###############################################################################
210+ # 📂 AWS Settings
211+ # ###############################################################################
212+
213+ # AWS_REGION=""
214+ # AWS_ENDPOINT_URL=""
215+ # AWS_ACCESS_KEY_ID=""
216+ # AWS_SECRET_ACCESS_KEY=""
217+ # AWS_SESSION_TOKEN=""
218+
199219------------------------------- END OF POSSIBLE SETTINGS -------------------------------
200220
201221
0 commit comments