Update Interface.ts

code cleanup
This commit is contained in:
Henry Heng
2023-10-06 23:36:09 +01:00
committed by GitHub
parent 5288ea8155
commit 8ee4f0fc3c
-7
View File
@@ -1,7 +1,6 @@
/** /**
* Types * Types
*/ */
import { BaseCache } from 'langchain/schema'
export type NodeParamsType = export type NodeParamsType =
| 'asyncOptions' | 'asyncOptions'
@@ -177,9 +176,3 @@ export class VectorStoreRetriever {
this.vectorStore = fields.vectorStore this.vectorStore = fields.vectorStore
} }
} }
export interface LLMCacheBase {
name: string
description: string
baseCache: BaseCache
}