diff --git a/docs/my-website/docs/batches.md b/docs/my-website/docs/batches.md index 269fee0310..9c21d8525f 100644 --- a/docs/my-website/docs/batches.md +++ b/docs/my-website/docs/batches.md @@ -7,7 +7,7 @@ Covers Batches, Files | Feature | Supported | Notes | |-------|-------|-------| -| Supported Providers | OpenAI, Azure, Vertex, Bedrock | - | +| Supported Providers | OpenAI, Azure, Vertex, Bedrock, vLLM | - | | ✨ Cost Tracking | ✅ | LiteLLM Enterprise only | | Logging | ✅ | Works across all logging integrations | @@ -430,6 +430,7 @@ All batch and file endpoints support model-based routing: ### [OpenAI](#quick-start) ### [Vertex AI](./providers/vertex#batch-apis) ### [Bedrock](./providers/bedrock_batches) +### [vLLM](./providers/vllm_batches) ## How Cost Tracking for Batches API Works diff --git a/provider_endpoints_support.json b/provider_endpoints_support.json index 1d44d35a62..cec9f9e37c 100644 --- a/provider_endpoints_support.json +++ b/provider_endpoints_support.json @@ -892,13 +892,14 @@ "chat_completions": true, "messages": true, "responses": true, - "embeddings": false, + "embeddings": true, "image_generations": false, "audio_transcriptions": false, "audio_speech": false, "moderations": false, - "batches": false, - "rerank": false, + "batches": true, + "files": true, + "rerank": true, "a2a": true } }, @@ -1766,13 +1767,14 @@ "chat_completions": true, "messages": true, "responses": true, - "embeddings": false, + "embeddings": true, "image_generations": false, "audio_transcriptions": false, "audio_speech": false, "moderations": false, - "batches": false, - "rerank": false, + "batches": true, + "files": true, + "rerank": true, "a2a": true } },