mirror of
https://github.com/hwchase17/langchain
synced 2024-10-29 17:07:25 +00:00
20 lines
714 B
Markdown
20 lines
714 B
Markdown
|
# Personal Assistants
|
||
|
|
||
|
.. note::
|
||
|
`Conceptual Guide <https://docs.langchain.com/docs/use-cases/personal-assistants>`_
|
||
|
|
||
|
|
||
|
We use "personal assistant" here in a very broad sense.
|
||
|
Personal assistants have a few characteristics:
|
||
|
|
||
|
- They can interact with the outside world
|
||
|
- They have knowledge of your data
|
||
|
- They remember your interactions
|
||
|
|
||
|
Really all of the functionality in LangChain is relevant for building a personal assistant.
|
||
|
Highlighting specific parts:
|
||
|
|
||
|
- [Agent Documentation](../modules/agents.rst) (for interacting with the outside world)
|
||
|
- [Index Documentation](../modules/indexes.rst) (for giving them knowledge of your data)
|
||
|
- [Memory](../modules/memory.rst) (for helping them remember interactions)
|