Hello, I’m new to Pinecone and AI in general, so please excuse me if this is obvious. I’ve created a Pinecone vector store using the Pinecone UI. My vector store is serverless with an integrated embedding of multilingual-e5-large. From my backend (js) code, I can call listIndexes() on my store, and I can call the query() method. But if I try to call search_records, I get the error “index.searc_records is not a function”. I’ve imported {Pinecone} from @pinecone-database/pinecone. Is there something I’m missing?
Hi @renee.rashid, welcome to Pinecone! As integrated embeddings (search_records
) is one of our newer features, we’re still working to add full support for it to all of our SDKs. Turns out, TypeScript/JS is up next! We expect it to be available in the next week or so. You can follow the TS SDK repo for updates.
Cheers,
Silas
Hey @renee.rashid - a quick update that we’ve released v5.1.0 of the TS SDK which should include support for working with searchRecords
with integrated indexes.
Awesome! Thank you, will try it out!