chore: Making name optional in openai_create_vector_store (#2858)

# What does this PR do?
chore: Making name optional in openai_create_vector_store


# Closes https://github.com/meta-llama/llama-stack/issues/2706

## Test Plan
CI and unit tests

Signed-off-by: Francisco Javier Arceo <farceo@redhat.com>
This commit is contained in:
Francisco Arceo 2025-07-22 13:31:31 -04:00 committed by GitHub
parent 8e1a2b4703
commit 20c3197952
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 2 additions and 7 deletions

View file

@ -161,7 +161,7 @@ class OpenAIVectorStoreMixin(ABC):
async def openai_create_vector_store(
self,
name: str,
name: str | None = None,
file_ids: list[str] | None = None,
expires_after: dict[str, Any] | None = None,
chunking_strategy: dict[str, Any] | None = None,