mirror of
https://github.com/BerriAI/litellm.git
synced 2026-08-28 05:25:59 +00:00
- New reusable workflow that spins up a LiteLLM container from the release image, exposes it via cloudflared tunnel, and triggers test runs on the Railway-hosted observatory - Integrates into ghcr_deploy.yml for RC and stable releases - Can also be triggered manually via workflow_dispatch - Add placeholder litellm_config.yaml for observatory test models Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
19 lines
623 B
YAML
19 lines
623 B
YAML
# LiteLLM Observatory Test Configuration
|
|
# This config is used by CI to spin up a temporary LiteLLM instance
|
|
# for running observatory tests against RC/stable releases.
|
|
#
|
|
# Add model definitions for the providers you want to test.
|
|
# Provider API keys are injected via environment variables in CI.
|
|
|
|
model_list:
|
|
- model_name: gpt-4o
|
|
litellm_params:
|
|
model: azure/gpt-4o
|
|
api_key: os.environ/AZURE_API_KEY
|
|
api_base: os.environ/AZURE_API_BASE
|
|
|
|
- model_name: gpt-4o-mini
|
|
litellm_params:
|
|
model: azure/gpt-4o-mini
|
|
api_key: os.environ/AZURE_API_KEY
|
|
api_base: os.environ/AZURE_API_BASE
|