mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-25 18:54:30 +00:00
* _initialize_remaining_budget_metrics * initialize_budget_metrics_cron_job * initialize_budget_metrics_cron_job * initialize_budget_metrics_cron_job * test_initialize_budget_metrics_cron_job * LITELLM_PROXY_ADMIN_NAME * fix code qa checks * test_initialize_budget_metrics_cron_job * test_initialize_budget_metrics_cron_job * pod lock manager allow dynamic cron job ID * fix pod lock manager * require cronjobid for PodLockManager * fix DB_SPEND_UPDATE_JOB_NAME acquire / release lock * add comment on prometheus logger * add debug statements for emitting key, team budget metrics * test_pod_lock_manager.py * test_initialize_budget_metrics_cron_job * initialize_budget_metrics_cron_job * initialize_remaining_budget_metrics * remove outdated test
51 lines
1.4 KiB
YAML
51 lines
1.4 KiB
YAML
model_list:
|
|
- model_name: fake-openai-endpoint
|
|
litellm_params:
|
|
model: openai/fake
|
|
api_key: fake-key
|
|
api_base: https://exampleopenaiendpoint-production.up.railway.app/
|
|
- model_name: openai/gpt-4o
|
|
litellm_params:
|
|
model: openai/gpt-4o
|
|
api_key: fake-key
|
|
|
|
litellm_settings:
|
|
prometheus_initialize_budget_metrics: true
|
|
callbacks: ["prometheus"]
|
|
|
|
mcp_tools:
|
|
- name: "get_current_time"
|
|
description: "Get the current time"
|
|
input_schema: {
|
|
"type": "object",
|
|
"properties": {
|
|
"format": {
|
|
"type": "string",
|
|
"description": "The format of the time to return",
|
|
"enum": ["short"]
|
|
}
|
|
}
|
|
}
|
|
handler: "mcp_tools.get_current_time"
|
|
- name: "get_current_date"
|
|
description: "Get the current date"
|
|
input_schema: {
|
|
"type": "object",
|
|
"properties": {
|
|
"format": {
|
|
"type": "string",
|
|
"description": "The format of the date to return",
|
|
"enum": ["short"]
|
|
}
|
|
}
|
|
}
|
|
handler: "mcp_tools.get_current_date"
|
|
default_team_settings:
|
|
- team_id: test_dev
|
|
success_callback: ["langfuse", "s3"]
|
|
langfuse_secret: secret-test-key
|
|
langfuse_public_key: public-test-key
|
|
- team_id: my_workflows
|
|
success_callback: ["langfuse", "s3"]
|
|
langfuse_secret: secret-workflows-key
|
|
langfuse_public_key: public-workflows-key
|