Skip to content

Commit

Permalink
Merge pull request #380 from Anush008/qdrant
Browse files Browse the repository at this point in the history
feat: Qdrant vector store node
  • Loading branch information
abrenneke authored Apr 29, 2024
2 parents 77ee66d + 3869602 commit 1c5bb4f
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 7 deletions.
17 changes: 17 additions & 0 deletions packages/app/src/assets/vendor_logos/qdrant.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
28 changes: 21 additions & 7 deletions packages/app/src/plugins.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ import GoogleLogo from './assets/vendor_logos/google-logo.png';
import PDF2MDLogo from './assets/vendor_logos/pdf2md-logo.png';
import TransformerLabLogo from './assets/vendor_logos/transformerlab-logo.svg';
import UtilitiesLogo from './assets/vendor_logos/utilities-logo.png';
import QdrantLogo from './assets/vendor_logos/qdrant.svg';

type SharedPluginInfo = {
id: string;
Expand Down Expand Up @@ -272,19 +273,32 @@ export const pluginInfos: PluginInfo[] = [
},
{
type: 'package',
id: "rivet-utilities-plugin@latest",
name: "Utilities",
id: 'rivet-utilities-plugin@latest',
name: 'Utilities',
description: dedent`
Adds several utilities nodes that help with concurrency, pipelines and iterations.
- Iterator node: The iterator Node will map an array of input objects through a provided graph. It allows for parallel execution with concurrency controls and caching.
- Pipeline node: The PipelineNode will take and input and run it through a pipeline of graphs (stages). Each stage's output will be the next graph's input. In addition, the pipeline node can have optional pre/post graph.
- Pinecone Search/Upsert node: These nodes will allow you to search or upsert documents in a pinecone collection. Allows for metadata, sparse vectors as optional inputs
`,
tag: "latest",
author: "Shravan S.",
github: "https://github.com/ShravanSunder/rivet-utilities-plugin",
package: "rivet-utilities-plugin",
logoImage: UtilitiesLogo
tag: 'latest',
author: 'Shravan S',
github: 'https://github.com/ShravanSunder/rivet-utilities-plugin',
package: 'rivet-utilities-plugin',
logoImage: UtilitiesLogo,
},
{
type: 'package',
id: 'rivet-plugin-qdrant@latest',
name: 'Qdrant',
description: dedent`
An integration to enable Qdrant - https://qdrant.tech to be used as a Vector Store.
`,
github: 'https://github.com/qdrant/rivet-plugin-qdrant',
author: 'Qdrant Team',
package: 'rivet-plugin-qdrant',
tag: 'latest',
logoImage: QdrantLogo,
}
];

0 comments on commit 1c5bb4f

Please sign in to comment.