Files
langchaingo/memory/doc.go
T
chyroc 55f772c21a Docs: fix comment typo (#442)
* Docs: fix comment typo

* docs: a llm -> an LLM

---------

Co-authored-by: Travis Cline <travis.cline@gmail.com>
2023-12-20 19:57:37 +00:00

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