From 5385b9fed6524e383837691fdae22908972e29b4 Mon Sep 17 00:00:00 2001 From: Wassim Chegham Date: Mon, 25 Nov 2024 21:50:08 +0100 Subject: [PATCH] chore: fix format AzureAISearchVectorStore --- .../src/storage/chatStore/AzureCosmosMongovCoreChatStore.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/packages/llamaindex/src/storage/chatStore/AzureCosmosMongovCoreChatStore.ts b/packages/llamaindex/src/storage/chatStore/AzureCosmosMongovCoreChatStore.ts index 715816d62f..3e295fa97b 100644 --- a/packages/llamaindex/src/storage/chatStore/AzureCosmosMongovCoreChatStore.ts +++ b/packages/llamaindex/src/storage/chatStore/AzureCosmosMongovCoreChatStore.ts @@ -62,7 +62,6 @@ export class AzureCosmosVCoreChatStore< } private convertToChatMessage( - message: any, ): ChatMessage { return { @@ -74,8 +73,7 @@ export class AzureCosmosVCoreChatStore< private convertTovCoreMessage( message: ChatMessage, - ): - any { + ): any { return { content: message.content, role: message.role,