From b0a02778b9367a176da2eb6c3e5b56f1f27d3dbf Mon Sep 17 00:00:00 2001 From: Cameron Kirk Date: Sun, 2 Jun 2024 08:45:38 -0700 Subject: [PATCH] Update chatclient.adoc --- .../src/main/antora/modules/ROOT/pages/api/chatclient.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-ai-docs/src/main/antora/modules/ROOT/pages/api/chatclient.adoc b/spring-ai-docs/src/main/antora/modules/ROOT/pages/api/chatclient.adoc index c90c2fab2..3494605f8 100644 --- a/spring-ai-docs/src/main/antora/modules/ROOT/pages/api/chatclient.adoc +++ b/spring-ai-docs/src/main/antora/modules/ROOT/pages/api/chatclient.adoc @@ -361,7 +361,7 @@ Two advisor implementations use the `ChatMemory` interface to advice the prompt * `VectorStoreChatMemoryAdvisor` : The construtor ` VectorStoreChatMemoryAdvisor(VectorStore vectorStore, String defaultConversationId, int chatHistoryWindowSize)` lets you specify the VectorStore to retrieve the chat history from, the unqiue conversation ID, the size of the chat history to be retreived in token size. -A sample `@Service` implementaiton that uses several advisors is shown below +A sample `@Service` implementation that uses several advisors is shown below [source,java] ----