litellm/litellm/proxy
Ryan Crabbe fdd2672e93
feat: add POST /team/permissions_bulk_update endpoint
Adds a new endpoint to bulk-update team_member_permissions across
teams. Supports apply_to_all_teams (with cursor-based pagination)
or a specific list of team_ids. Merges new permissions into each
team's existing set rather than overwriting.

Also fixes test isolation bug in test_get_prompt_info_by_base_id
where leaked prisma_client state from other tests caused a
TypeError on await.
2026-04-06 17:45:35 -07:00
..
_experimental chore: update Next.js build artifacts (2026-04-04 23:58 UTC, node v22.16.0) (#25158) 2026-04-04 17:01:48 -07:00
agent_endpoints
analytics_endpoints
anthropic_endpoints Litellm ishaan march 20 (#24303) 2026-03-21 12:40:11 -07:00
auth Litellm ishaan march30 (#24887) (#25151) 2026-04-04 14:44:07 -07:00
batches_endpoints Merge pull request #23957 from Sameerlite/litellm_vertex-cancel-batch 2026-03-20 23:32:50 +05:30
client
common_utils Litellm ishaan april4 2 (#25150) 2026-04-04 23:09:42 +00:00
config_management_endpoints
container_endpoints
credential_endpoints
custom_hooks
db cherry-pick: tag query fix + MCP metadata support (#25145) 2026-04-04 16:44:02 -07:00
discovery_endpoints feat: add control plane for multi-proxy worker management 2026-03-19 22:50:19 -07:00
example_config_yaml Litellm fix update bedrock models (#24947) 2026-04-01 19:22:54 -07:00
fine_tuning_endpoints
google_endpoints
guardrails Merge remote-tracking branch 'origin/main' into litellm_feat-add-guardrail 2026-04-04 16:17:38 -07:00
health_check_utils Litellm ishaan april4 2 (#25150) 2026-04-04 23:09:42 +00:00
health_endpoints Litellm ishaan april4 2 (#25150) 2026-04-04 23:09:42 +00:00
hooks Litellm ishaan march30 (#24887) (#25151) 2026-04-04 14:44:07 -07:00
image_endpoints
management_endpoints feat: add POST /team/permissions_bulk_update endpoint 2026-04-06 17:45:35 -07:00
management_helpers Litellm ishaan march23 - MCP Toolsets + GCP Caching fix (#25146) (#25155) 2026-04-04 16:23:21 -07:00
middleware
ocr_endpoints
openai_evals_endpoints
openai_files_endpoints [Staging] - Ishaan March 17th (#23903) 2026-03-18 15:09:01 -07:00
pass_through_endpoints feat(proxy): add project_alias tracking through callback metadata pipeline 2026-03-23 10:44:17 -07:00
policy_engine Litellm ishaan april4 2 (#25150) 2026-04-04 23:09:42 +00:00
prompts Litellm ishaan april1 try2 (#25110) 2026-04-03 14:57:44 -07:00
public_endpoints feat(ui): expose Azure Entra ID credential fields in provider form 2026-04-04 11:19:45 -07:00
rag_endpoints
realtime_endpoints
rerank_endpoints
response_api_endpoints fix: address Greptile review comments 2026-03-19 14:10:58 +05:30
response_polling feat(polling): check rate limits before creating polling ID 2026-03-19 13:59:59 +05:30
search_endpoints
spend_tracking Litellm ishaan march30 (#24887) (#25151) 2026-04-04 14:44:07 -07:00
swagger
test_prompts
types_utils
ui_crud_endpoints [Fix] Remove "API" from custom key description text 2026-03-16 22:35:44 -07:00
vector_store_endpoints
vector_store_files_endpoints
vertex_ai_endpoints
video_endpoints [Staging] - Ishaan March 17th (#23903) 2026-03-18 15:09:01 -07:00
__init__.py
_logging.py
_new_new_secret_config.yaml
_new_secret_config.yaml fix: fix responses cost calc 2026-03-18 19:52:59 -07:00
_super_secret_config.yaml
_types.py Merge pull request #25038 from BerriAI/litellm_feat-add-guardrail 2026-04-04 16:48:43 -07:00
.gitignore
cached_logo.jpg
caching_routes.py
common_request_processing.py fix(guardrails): return HTTP 400 instead of 500 for Model Armor streaming blocks (#24693) 2026-04-02 21:28:52 -07:00
compliance_checks.py
custom_auth_auto.py
custom_prompt_management.py
custom_sso.py
custom_validate.py
dd_span_tagger.py
enterprise
health_check.py Litellm ishaan april4 2 (#25150) 2026-04-04 23:09:42 +00:00
lambda.py
litellm_pre_call_utils.py Litellm team model group name routing fix (#25148) (#25154) 2026-04-04 15:13:54 -07:00
llamaguard_prompt.txt
logo.jpg
mcp_registry.json
mcp_tools.py
model_config.yaml
openapi_registry.json
openapi.json
post_call_rules.py
prisma_migration.py
prometheus_cleanup.py
proxy_cli.py feat(proxy): use AZURE_DEFAULT_API_VERSION for proxy --api_version default 2026-03-19 15:57:03 +05:30
proxy_config.yaml
proxy_server.py cherry-pick: tag query fix + MCP metadata support (#25145) 2026-04-04 16:44:02 -07:00
README.md
route_llm_request.py style: apply black formatting to fix CI lint check 2026-03-17 18:52:57 +00:00
schema.prisma Litellm ishaan march23 - MCP Toolsets + GCP Caching fix (#25146) (#25155) 2026-04-04 16:23:21 -07:00
start.sh
utils.py cherry-pick: tag query fix + MCP metadata support (#25145) 2026-04-04 16:44:02 -07:00

litellm-proxy

A local, fast, and lightweight OpenAI-compatible server to call 100+ LLM APIs.

usage

$ pip install litellm
$ litellm --model ollama/codellama 

#INFO: Ollama running on http://0.0.0.0:8000

replace openai base

import openai # openai v1.0.0+
client = openai.OpenAI(api_key="anything",base_url="http://0.0.0.0:8000") # set proxy to base_url
# request sent to model set on litellm proxy, `litellm --model`
response = client.chat.completions.create(model="gpt-3.5-turbo", messages = [
    {
        "role": "user",
        "content": "this is a test request, write a short poem"
    }
])

print(response)

See how to call Huggingface,Bedrock,TogetherAI,Anthropic, etc.


Folder Structure

Routes

  • proxy_server.py - all openai-compatible routes - /v1/chat/completion, /v1/embedding + model info routes - /v1/models, /v1/model/info, /v1/model_group_info routes.
  • health_endpoints/ - /health, /health/liveliness, /health/readiness
  • management_endpoints/key_management_endpoints.py - all /key/* routes
  • management_endpoints/team_endpoints.py - all /team/* routes
  • management_endpoints/internal_user_endpoints.py - all /user/* routes
  • management_endpoints/ui_sso.py - all /sso/* routes