Add Infino integration (provider, vector store, registry)#4625
Open
Pratyush Lokhande (pratyushlokhande) wants to merge 8 commits into
Open
Add Infino integration (provider, vector store, registry)#4625Pratyush Lokhande (pratyushlokhande) wants to merge 8 commits into
Pratyush Lokhande (pratyushlokhande) wants to merge 8 commits into
Conversation
Ran every snippet against a real embeddings backend. Corrected the hybrid demo (pure-vector does not miss the exact code; the genuine divergence is BM25 missing a keyword-free paraphrase), replaced guessed outputs with captured ones, and noted memory:// lacks delete/update.
|
Thanks for contributing a new integration docs page, Pratyush Lokhande (@pratyushlokhande)! We receive a large number of PRs and review them as quickly as we can. Please bear with us as we work through the queue. If you have already tagged a maintainer on this PR, do not tag them again. |
Contributor
|
Thanks for opening a docs PR, Pratyush Lokhande (@pratyushlokhande)! When it's ready for review, please add the relevant reviewers:
|
Author
|
Hi Mason Daugherty (@mdrxy), this PR adds the Infino integration (provider + vector store + registry). All CI green. Ready for review when you have a moment, thanks! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Overview
Adds the Infino integration to the Python integrations docs. Infino is a retrieval engine that runs vector, full-text (BM25), hybrid (RRF), and SQL search over one copy of your data in Apache Parquet on object storage, so there is no separate vector database and search cluster to keep in sync.
Three changes:
packages.yml— registerslangchain-infino(Python packagelangchain-infino, JS package@infino-ai/langchain-infino) so it appears in the partner package table.src/oss/python/integrations/providers/infino.mdx— provider overview page: install/setup, vector store, retrievers (BM25, hybrid, self-query translator), and the semantic LLM cache.src/oss/python/integrations/vectorstores/infino.mdx— fullInfinoVectorStorewalkthrough with vector, filtered, MMR, and hybrid retrieval, plus a vector-vs-BM25-vs-hybrid comparison. Examples were run against the live engine and show real outputs.Type of change
Type: New documentation page
Related issues/PRs
Checklist
docs devsrc/docs.jsonif neededAdditional notes
Code examples were verified against a running Infino engine; outputs shown in the docs are real. Prose passes
make lint_prose(Vale). Disclosure: this PR was prepared with AI assistance (Claude Code).