add autogpt, readfile and writefile tools

This commit is contained in:
Henry
2023-04-22 15:06:13 +01:00
parent 237eca2fd0
commit 4c576db1eb
12 changed files with 204 additions and 11 deletions
@@ -22,7 +22,7 @@ class Pinecone_Existing_VectorStores implements INode {
this.icon = 'pinecone.png'
this.category = 'Vector Stores'
this.description = 'Load existing index from Pinecone (i.e: Document has been upserted)'
this.baseClasses = [this.type, 'BaseRetriever']
this.baseClasses = [this.type, 'VectorStoreRetriever', 'BaseRetriever']
this.inputs = [
{
label: 'Embeddings',
@@ -49,7 +49,7 @@ class Pinecone_Existing_VectorStores implements INode {
{
label: 'Pinecone Retriever',
name: 'retriever',
baseClasses: [this.type, 'BaseRetriever']
baseClasses: this.baseClasses
},
{
label: 'Pinecone Vector Store',