openllmetry-js
openllmetry-js copied to clipboard
chore(deps): bump @pinecone-database/pinecone from 2.2.2 to 5.1.1 in /packages/sample-app
Bumps @pinecone-database/pinecone from 2.2.2 to 5.1.1.
Release notes
Sourced from @pinecone-database/pinecone's releases.
Release v5.1.1
Fixes an issue where the typing for the
upsertRecordsmethod did not accept_idas an object argument. The_idand_scorevalues are now properly returned from thesearchRecordsmethod instead of mapped values.What's Changed
- Fix
_idand_scorein records APIs by@austin-denoblein pinecone-io/pinecone-ts-client#334Full Changelog: https://github.com/pinecone-io/pinecone-ts-client/compare/v5.1.0...v5.1.1
Release v5.1.0
Features
Indexes with Integrated Inference
This release adds a new
createIndexForModelmethod as well asupsertRecords, andsearchRecordsmethods. Together these methods provide a way for you to easily store your data and let us manage the process of creating embeddings. To learn about available models, see the Model Gallery.import { Pinecone } from '@pinecone-database/pinecone';// 1. Instantiate the Pinecone client const pc = new Pinecone();
// 2. Create an index configured for use with a particular model await pc.createIndexForModel({ name: 'my-integrated-index', cloud: 'aws', region: 'us-east-1', embed: { model: 'multilingual-e5-large', fieldMap: { text: 'chunk_text' }, }, waitUntilReady: true, });
// 3. Instantiate an Index client with a namespace const namespace = pc.index('my-integrated-index').namespace('my-namespace');
// 4. Upsert records await namespace.upsertRecords([ { id: 'rec1', chunk_text: "Apple's first product, the Apple I, was released in 1976 and was hand-built by co-founder Steve Wozniak.", category: 'product', }, { id: 'rec2', chunk_text: 'Apples are a great source of dietary fiber, which supports digestion and helps maintain a healthy gut.', category: 'nutrition', </tr></table>
... (truncated)
Commits
e5b39d7[skip ci] Publish release v5.1.17468566Fix_idand_scorein records APIs (#334)cec0392[skip ci] Publish release v5.1.0fe8bc96Implement additional Assistant features (#333)d43ed0bImplement integrated inference (#331)6af331e[skip ci] Publish release v5.0.261b923bremove unneeded check from integration testae7d691export additional Embedding types, reduce retry time for integration assertWi...e137e4c[skip ci] Publish release v5.0.1dc46f52RemoveEmbeddingsListcustom class (#330)- Additional commits viewable in compare view
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
The following labels could not be found: sample-app.
OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version or @dependabot ignore this minor version. You can also ignore all major, minor, or patch releases for a dependency by adding an ignore condition with the desired update_types to your config file.
If you change your mind, just re-open this PR and I'll resolve any conflicts on it.