BerriAI/litellm · error · ValueError

Vector store update is not supported for {custom_llm_provide

Error message

Vector store update is not supported for {custom_llm_provider}

What it means

Provider-support check when updating a vector store: the resolved provider has no update implementation in the vector-store config registry, so the mutation is rejected.

Source

Thrown at litellm/vector_stores/main.py:860

            custom_llm_provider = "openai"

        if "/" in custom_llm_provider:
            api_type, custom_llm_provider, _, _ = get_llm_provider(
                model=custom_llm_provider,
                custom_llm_provider=None,
                litellm_params=None,
            )
        else:
            api_type = None
            custom_llm_provider = custom_llm_provider

        vector_store_provider_config: Final = ProviderConfigManager.get_provider_vector_stores_config(
            provider=litellm.LlmProviders(custom_llm_provider),
            api_type=api_type,
        )

        if vector_store_provider_config is None:
            raise ValueError(f"Vector store update is not supported for {custom_llm_provider}")

        local_vars.update(kwargs)

        vector_store_update_optional_params: Final[VectorStoreCreateOptionalRequestParams] = (
            VectorStoreRequestUtils.get_requested_vector_store_create_optional_param(local_vars)
        )

        litellm_logging_obj.update_from_kwargs(
            kwargs=kwargs,
            model=None,
            optional_params={
                "vector_store_id": vector_store_id,
                "name": name,
                **vector_store_update_optional_params,
            },
            litellm_params={"litellm_call_id": litellm_call_id},
            custom_llm_provider=custom_llm_provider,
        )

View on GitHub (pinned to 77b7c6c40c)

Solutions

  1. Use a provider that supports updating vector stores, or implement it in a custom provider wrapper for {custom_llm_provider}.
Defensive patterns

Strategy: validation

When it happens

Trigger: Thrown at litellm/vector_stores/main.py:860 when the library encounters an invalid state.

Common situations: See trigger scenarios.


AI-assisted analysis of BerriAI/litellm@77b7c6c40c (2026-08-18). Data as JSON: /api/errors/2e06f75ea4a7de4d. Report an issue: GitHub.