Pinecone TypeScript SDK - v8.1.0
    Preparing search index...

    Interface PreviewPatchIndexSchema

    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 PreviewPatchIndexSchema {
        fields: { [key: string]: PreviewPatchSemanticTextField };
    }
    Index
    fields: { [key: string]: PreviewPatchSemanticTextField }

    A map of semantic text field names to their updated parameters. Only fields of type semantic_text may be specified.

    PatchIndexSchema