From 8ee4f0fc3c71971d7408c65d91d9b9f3f7735c46 Mon Sep 17 00:00:00 2001 From: Henry Heng Date: Fri, 6 Oct 2023 23:36:09 +0100 Subject: [PATCH] Update Interface.ts code cleanup --- packages/components/src/Interface.ts | 7 ------- 1 file changed, 7 deletions(-) diff --git a/packages/components/src/Interface.ts b/packages/components/src/Interface.ts index 76dc7354..e883d056 100644 --- a/packages/components/src/Interface.ts +++ b/packages/components/src/Interface.ts @@ -1,7 +1,6 @@ /** * Types */ -import { BaseCache } from 'langchain/schema' export type NodeParamsType = | 'asyncOptions' @@ -177,9 +176,3 @@ export class VectorStoreRetriever { this.vectorStore = fields.vectorStore } } - -export interface LLMCacheBase { - name: string - description: string - baseCache: BaseCache -}