Skip to content

Commit d0c7de7

Browse files
committed
chore: in .env.example, add the examples to configure DATA_DIR and embedder settings
1 parent f2e72e9 commit d0c7de7

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.env.example

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,11 @@ ADK_DATABASE_URL=sqlite:///./chatkit.db
1010
gpt41_agent={"llm":{"model_name": "azure/gpt-4.1", "provider_args" : {"api_key": "xx", "api_base": "", "api_version": "2025-03-01-preview"}}}
1111
gpt41_mini_agent={"llm":{"model_name": "azure/gpt-4.1-mini", "provider_args" : {"api_key": "xx", "api_base": "", "api_version": "2025-03-01-preview"}}}
1212

13-
13+
# Directory to store data (used by Knowledge example)
1414
DATA_DIR=/workspaces/adk-chatkit/examples/data
15+
16+
# Configuration for the embedding model
17+
# Other possibilities are openai and azure_openai
18+
# See EmbedderSettings in examples/backend/src/_config.py
19+
embedder={"provider_type": "ollama", "model_name": "mxbai-embed-large:latest", "api_endpoint": "http://host.docker.internal:11434"}
20+
# embedder={"provider_type": "azure_openai", "api_version" : "2025-03-01-preview", "api_deployment" : "text-embedding-3-large", "api_key": "", "model_name": "text-embedding-3-large", "api_endpoint": ""}

0 commit comments

Comments
 (0)