mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
5abf0409a8
- Rewrite cmd-test.sh to use harness CLI for D5 probes - Add run-e2e-with-aimock.sh helper (removed stale version) - Update fail-baseline hash for D5 coverage - Fix provider base URLs in .env.example - Update local-ports.json for spring-ai - Remove eval tier system (superseded by D5 depth probes) - Add D5 debugging runbook
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=
|