mirror of
https://github.com/hwchase17/langchain
synced 2024-11-10 01:10:59 +00:00
77e3d58922
…marization prompt to maintain a key-value store of memory information cc @devennavani Co-authored-by: Harrison Chase <hw.chase.17@gmail.com>
31 lines
1.3 KiB
ReStructuredText
31 lines
1.3 KiB
ReStructuredText
How-To Guides
|
|
=============
|
|
|
|
The examples here all highlight how to use memory in different ways.
|
|
|
|
`Adding Memory <./examples/adding_memory.html>`_: How to add a memory component to any single input chain.
|
|
|
|
`ChatGPT Clone <./examples/chatgpt_clone.html>`_: How to recreate ChatGPT with LangChain prompting + memory components.
|
|
|
|
`Entity Memory <./examples/entity_summary_memory.html>`_: How to use a type of memory that organizes information by entity.
|
|
|
|
|
|
`Adding Memory to Multi-Input Chain <./examples/adding_memory_chain_multiple_inputs.html>`_: How to add a memory component to any multiple input chain.
|
|
|
|
`Conversational Memory Customization <./examples/conversational_customization.html>`_: How to customize existing conversation memory components.
|
|
|
|
`Custom Memory <./examples/custom_memory.html>`_: How to write your own custom memory component.
|
|
|
|
`Adding Memory to Agents <./examples/agent_with_memory.html>`_: How to add a memory component to any agent.
|
|
|
|
`Conversation Agent <./examples/conversational_agent.html>`_: Example of a conversation agent, which combines memory with agents and a conversation focused prompt.
|
|
|
|
`Multiple Memory <./examples/multiple_memory.html>`_: How to use multiple types of memory in the same chain.
|
|
|
|
|
|
.. toctree::
|
|
:maxdepth: 1
|
|
:glob:
|
|
:hidden:
|
|
|
|
./examples/* |