mirror of
https://github.com/vxcontrol/langchaingo.git
synced 2026-07-21 17:05:31 -04:00
55f772c21a
* Docs: fix comment typo * docs: a llm -> an LLM --------- Co-authored-by: Travis Cline <travis.cline@gmail.com>
10 lines
372 B
Go
10 lines
372 B
Go
/*
|
|
Package memory provides an interface for managing conversational data and
|
|
a variety of implementations for storing and retrieving that data.
|
|
|
|
The main components of this package are:
|
|
- ChatMessageHistory: a struct that stores chat messages.
|
|
- ConversationBuffer: a simple form of memory that remembers previous conversational back and forth directly.
|
|
*/
|
|
package memory
|