Skip to content

Commit

Permalink
feat: Qdrant vector store
Browse files Browse the repository at this point in the history
  • Loading branch information
Anush008 committed Apr 29, 2024
1 parent 238e0a4 commit be8635d
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 8 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.
30 changes: 22 additions & 8 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,15 +273,28 @@ export const pluginInfos: PluginInfo[] = [
},
{
type: 'package',
id: "rivet-utilities-plugin@latest",
name: "Utilities",
id: 'rivet-utilities-plugin@latest',
name: 'Utilities',
description: dedent`
Adds a variety of utility nodes to help with common tasks. Currently has Iterator nodes that let you map over arrays and call a graph reference for each element.
`,
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 be8635d

Please sign in to comment.