From 2a006cabaccf452d2a5266367c48b5835a56ad81 Mon Sep 17 00:00:00 2001 From: Ishaan Jaffer Date: Sat, 15 Nov 2025 16:11:31 -0800 Subject: [PATCH] docs fix --- .../release_notes/v1.80.0-stable/index.md | 25 +++++++++++++++++-- 1 file changed, 23 insertions(+), 2 deletions(-) diff --git a/docs/my-website/release_notes/v1.80.0-stable/index.md b/docs/my-website/release_notes/v1.80.0-stable/index.md index de07408db57..9ce0f42f712 100644 --- a/docs/my-website/release_notes/v1.80.0-stable/index.md +++ b/docs/my-website/release_notes/v1.80.0-stable/index.md @@ -97,7 +97,7 @@ litellm_settings: --- -### Vector Store Files API - Stable Release +### Vector Store Files API Complete OpenAI-compatible Vector Store Files API now stable, enabling full file lifecycle management within vector stores. @@ -120,7 +120,28 @@ curl --location 'http://localhost:4000/v1/vector_stores/vs_123/files' \ }' ``` -[Get Started with Vector Stores](../../docs/vector_stores) +[Get Started with Vector Stores](../../docs/vector_store_files) + +--- + +## New Providers and Endpoints + +### New Providers + +| Provider | Supported Endpoints | Description | +| -------- | ------------------- | ----------- | +| **[RunwayML](../../docs/providers/runwayml/videos)** | `/v1/videos`, `/v1/images/generations`, `/v1/audio/speech` | Gen-4 video generation, image generation, and text-to-speech | + +### New LLM API Endpoints + +| Endpoint | Method | Description | Documentation | +| -------- | ------ | ----------- | ------------- | +| `/v1/vector_stores/{vector_store_id}/files` | POST | Create vector store file | [Docs](../../docs/vector_store_files) | +| `/v1/vector_stores/{vector_store_id}/files` | GET | List vector store files | [Docs](../../docs/vector_store_files) | +| `/v1/vector_stores/{vector_store_id}/files/{file_id}` | GET | Retrieve vector store file | [Docs](../../docs/vector_store_files) | +| `/v1/vector_stores/{vector_store_id}/files/{file_id}/content` | GET | Retrieve file content | [Docs](../../docs/vector_store_files) | +| `/v1/vector_stores/{vector_store_id}/files/{file_id}` | DELETE | Delete vector store file | [Docs](../../docs/vector_store_files) | +| `/v1/vector_stores/{vector_store_id}` | DELETE | Delete vector store | [Docs](../../docs/vector_store_files) | ---