Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps-dev): bump @pinecone-database/pinecone from 2.2.2 to 5.1.1 in /packages/instrumentation-pinecone #564

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 10, 2025

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 upsertRecords method did not accept _id as an object argument. The _id and _score values are now properly returned from the searchRecords method instead of mapped values.

What's Changed

Full Changelog: pinecone-io/pinecone-ts-client@v5.1.0...v5.1.1

Release v5.1.0

Features

Indexes with Integrated Inference

This release adds a new createIndexForModel method as well as upsertRecords, and searchRecords methods. 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.1
  • 7468566 Fix _id and _score in records APIs (#334)
  • cec0392 [skip ci] Publish release v5.1.0
  • fe8bc96 Implement additional Assistant features (#333)
  • d43ed0b Implement integrated inference (#331)
  • 6af331e [skip ci] Publish release v5.0.2
  • 61b923b remove unneeded check from integration test
  • ae7d691 export additional Embedding types, reduce retry time for integration assertWi...
  • e137e4c [skip ci] Publish release v5.0.1
  • dc46f52 Remove EmbeddingsList custom class (#330)
  • Additional commits viewable in compare view

Dependabot compatibility score

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 rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will 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 version will 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 dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [@pinecone-database/pinecone](https://github.com/pinecone-io/pinecone-ts-client) from 2.2.2 to 5.1.1.
- [Release notes](https://github.com/pinecone-io/pinecone-ts-client/releases)
- [Commits](pinecone-io/pinecone-ts-client@v2.2.2...v5.1.1)

---
updated-dependencies:
- dependency-name: "@pinecone-database/pinecone"
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Copy link
Contributor Author

dependabot bot commented on behalf of github Mar 10, 2025

The following labels could not be found: instrumentation-pinecone.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants