From b07ac34d72c0a7f1dab04c8313f6b64ea49cefca Mon Sep 17 00:00:00 2001 From: Wassim Chegham Date: Mon, 25 Nov 2024 20:55:34 +0100 Subject: [PATCH] chore: fix lint AzureAISearchVectorStore --- .../src/storage/chatStore/AzureCosmosMongovCoreChatStore.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/llamaindex/src/storage/chatStore/AzureCosmosMongovCoreChatStore.ts b/packages/llamaindex/src/storage/chatStore/AzureCosmosMongovCoreChatStore.ts index 8f4d5fcebc..715816d62f 100644 --- a/packages/llamaindex/src/storage/chatStore/AzureCosmosMongovCoreChatStore.ts +++ b/packages/llamaindex/src/storage/chatStore/AzureCosmosMongovCoreChatStore.ts @@ -62,7 +62,7 @@ export class AzureCosmosVCoreChatStore< } private convertToChatMessage( - // eslint-disable-next-line @typescript-eslint/no-explicit-any + message: any, ): ChatMessage { return { @@ -74,7 +74,7 @@ export class AzureCosmosVCoreChatStore< private convertTovCoreMessage( message: ChatMessage, - ): // eslint-disable-next-line @typescript-eslint/no-explicit-any + ): any { return { content: message.content,