23 lines
896 B
Bash
23 lines
896 B
Bash
# Copy to showcase/.env and fill in.
|
|
# Picked up by docker-compose.local.yml via env_file for every showcase package container.
|
|
# Not committed to git.
|
|
|
|
OPENAI_API_KEY=
|
|
ANTHROPIC_API_KEY=
|
|
LANGSMITH_API_KEY=
|
|
|
|
# Optional: route LLM traffic through local aimock on the compose network.
|
|
# Most packages consume OPENAI_BASE_URL / ANTHROPIC_BASE_URL directly.
|
|
# Spring-AI splits base-url (host) + completions-path (/v1/chat/completions),
|
|
# so it needs the host without /v1 via SPRING_AI_OPENAI_BASE_URL.
|
|
# OPENAI_BASE_URL=http://aimock:4010/v1
|
|
# ANTHROPIC_BASE_URL=http://aimock:4010
|
|
# SPRING_AI_OPENAI_BASE_URL=http://aimock:4010
|
|
|
|
# Package-specific (only required for the packages that use them).
|
|
# ms-agent-dotnet: GitHub model provider token.
|
|
# Use any non-empty value for local dev (aimock doesn't validate tokens).
|
|
GitHubToken=gh-mock-local-dev
|
|
# google-adk / gemini-based demos.
|
|
GOOGLE_API_KEY=
|