Class AzureCosmosDBNoSqlMemoryStore
java.lang.Object
dev.langchain4j.store.memory.azure.cosmos.nosql.AzureCosmosDBNoSqlMemoryStore
- All Implemented Interfaces:
ChatMemoryStore
-
Nested Class Summary
Nested Classes -
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionbuilder()
void
deleteMessages
(Object memoryId) Deletes all messages for a specified chat memory.getMessages
(Object memoryId) Retrieves messages for a specified chat memory.void
updateMessages
(Object memoryId, List<ChatMessage> messages) Updates messages for a specified chat memory.
-
Field Details
-
USER_AGENT
- See Also:
-
DEFAULT_DATABASE_NAME
- See Also:
-
DEFAULT_CONTAINER_NAME
- See Also:
-
DEFAULT_THROUGHPUT
-
DEFAULT_PARTITION_KEY_PATH
- See Also:
-
-
Method Details
-
getMessages
Description copied from interface:ChatMemoryStore
Retrieves messages for a specified chat memory.- Specified by:
getMessages
in interfaceChatMemoryStore
- Parameters:
memoryId
- The ID of the chat memory.- Returns:
- List of messages for the specified chat memory. Must not be null. Can be deserialized from JSON using
ChatMessageDeserializer
.
-
updateMessages
Description copied from interface:ChatMemoryStore
Updates messages for a specified chat memory.- Specified by:
updateMessages
in interfaceChatMemoryStore
- Parameters:
memoryId
- The ID of the chat memory.messages
- List of messages for the specified chat memory, that represent the current state of theChatMemory
. Can be serialized to JSON usingChatMessageSerializer
.
-
deleteMessages
Description copied from interface:ChatMemoryStore
Deletes all messages for a specified chat memory.- Specified by:
deleteMessages
in interfaceChatMemoryStore
- Parameters:
memoryId
- The ID of the chat memory.
-
builder
-