You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
langchain/docs/use_cases/personal_assistants.md

24 lines
1016 B
Markdown

# Personal Assistants (Agents)
> [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)
Specific examples of this include:
1 year ago
- [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.
1 year ago
- [Wikibase Agent](agents/wikibase_agent.ipynb): an implementation of an agent that is designed to interact with Wikibase.