Update chatclient.adoc

This commit is contained in:
Cameron Kirk
2024-06-02 08:45:38 -07:00
committed by Christian Tzolov
parent 7f8822fdea
commit b0a02778b9

View File

@@ -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]
----