-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.json
More file actions
28 lines (28 loc) · 1005 Bytes
/
plugin.json
File metadata and controls
28 lines (28 loc) · 1005 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
"name": "workflow-plugin-vectorstore",
"version": "0.1.0",
"description": "Vector database integration (Pinecone, Milvus) for RAG pipelines",
"author": "GoCodeAlone",
"license": "MIT",
"type": "external",
"tier": "community",
"private": false,
"minEngineVersion": "0.3.56",
"keywords": ["vector", "vectorstore", "pinecone", "milvus", "rag", "embeddings", "similarity-search"],
"homepage": "https://github.com/GoCodeAlone/workflow-plugin-vectorstore",
"repository": "https://github.com/GoCodeAlone/workflow-plugin-vectorstore",
"capabilities": {
"configProvider": false,
"moduleTypes": ["vectorstore.provider"],
"stepTypes": [
"step.vector_upsert",
"step.vector_query",
"step.vector_fetch",
"step.vector_delete",
"step.vector_create_index",
"step.vector_list_indexes",
"step.vector_describe_index"
],
"triggerTypes": []
}
}