2023-04-10 05:34:34 +00:00
# Personal Assistants (Agents)
2023-03-27 02:49:46 +00:00
2023-03-27 04:43:51 +00:00
> [Conceptual Guide](https://docs.langchain.com/docs/use-cases/personal-assistants)
2023-03-27 02:49:46 +00:00
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)
2023-04-10 05:34:34 +00:00
Specific examples of this include:
2023-04-12 06:52:14 +00:00
- [AI Plugins ](agents/custom_agent_with_plugin_retrieval.ipynb ): an implementation of an agent that is designed to be able to use all AI Plugins.
2023-04-26 15:09:34 +00:00
- [Plug-and-PlAI (Plugins Database) ](agents/custom_agent_with_plugin_retrieval_using_plugnplai.ipynb ): an implementation of an agent that is designed to be able to use all AI Plugins retrieved from PlugNPlAI.
2023-04-20 22:43:57 +00:00
- [Wikibase Agent ](agents/wikibase_agent.ipynb ): an implementation of an agent that is designed to interact with Wikibase.
2023-04-26 15:09:34 +00:00
- [Sales GPT ](agents/sales_agent_with_context.ipynb ): This notebook demonstrates an implementation of a Context-Aware AI Sales agent.