A string field indexed for full-text search.
string
fullTextSearch is what makes the field searchable, so it is required. Pass an empty object to accept the text analysis defaults, or set options explicitly.
fullTextSearch
import type { FullTextSearchStringField } from '@pinecone-database/pinecone';const field: FullTextSearchStringField = { type: 'string', fullTextSearch: {},}; Copy
import type { FullTextSearchStringField } from '@pinecone-database/pinecone';const field: FullTextSearchStringField = { type: 'string', fullTextSearch: {},};
A
stringfield indexed for full-text search.fullTextSearchis what makes the field searchable, so it is required. Pass an empty object to accept the text analysis defaults, or set options explicitly.