Pinecone TypeScript SDK - v9.0.0
    Preparing search index...

    Interface PatchIndexSchema

    Schema updates to apply to an existing index. Only semantic_text field parameters can be updated after index creation. The model itself cannot be changed once set; only write_parameters and read_parameters may be updated if the model stays the same.

    PatchIndexSchema

    interface PatchIndexSchema {
        fields: { [key: string]: PatchSemanticTextField };
    }
    Index
    fields: { [key: string]: PatchSemanticTextField }

    A map of semantic text field names to their updated parameters. Only fields of type semantic_text may be specified, and only one field per request.

    PatchIndexSchema