update yaml

This commit is contained in:
Ashwin Bharambe 2025-09-27 13:31:13 -07:00
parent bcbe5f32a5
commit 1372f2f24a
3 changed files with 45 additions and 109 deletions

View file

@ -625,9 +625,7 @@ class VectorIO(Protocol):
"""
...
@webmethod(
route="/vector_stores/{vector_store_id}/files/{file_id}", method="GET", level=LLAMA_STACK_API_V1
)
@webmethod(route="/vector_stores/{vector_store_id}/files/{file_id}", method="GET", level=LLAMA_STACK_API_V1)
async def openai_retrieve_vector_store_file(
self,
vector_store_id: str,
@ -659,9 +657,7 @@ class VectorIO(Protocol):
"""
...
@webmethod(
route="/vector_stores/{vector_store_id}/files/{file_id}", method="POST", level=LLAMA_STACK_API_V1
)
@webmethod(route="/vector_stores/{vector_store_id}/files/{file_id}", method="POST", level=LLAMA_STACK_API_V1)
async def openai_update_vector_store_file(
self,
vector_store_id: str,
@ -677,9 +673,7 @@ class VectorIO(Protocol):
"""
...
@webmethod(
route="/vector_stores/{vector_store_id}/files/{file_id}", method="DELETE", level=LLAMA_STACK_API_V1
)
@webmethod(route="/vector_stores/{vector_store_id}/files/{file_id}", method="DELETE", level=LLAMA_STACK_API_V1)
async def openai_delete_vector_store_file(
self,
vector_store_id: str,