langchain/docs/modules/agents.rst
Harrison Chase 985496f4be
Docs refactor (#480)
Big docs refactor! Motivation is to make it easier for people to find
resources they are looking for. To accomplish this, there are now three
main sections:

- Getting Started: steps for getting started, walking through most core
functionality
- Modules: these are different modules of functionality that langchain
provides. Each part here has a "getting started", "how to", "key
concepts" and "reference" section (except in a few select cases where it
didnt easily fit).
- Use Cases: this is to separate use cases (like summarization, question
answering, evaluation, etc) from the modules, and provide a different
entry point to the code base.

There is also a full reference section, as well as extra resources
(glossary, gallery, etc)

Co-authored-by: Shreya Rajpal <ShreyaR@users.noreply.github.com>
2023-01-02 08:24:09 -08:00

30 lines
1.2 KiB
ReStructuredText

Agents
==========================
Some applications will require not just a predetermined chain of calls to LLMs/other tools,
but potentially an unknown chain that depends on the user input.
In these types of chains, there is a “agent” which has access to a suite of tools.
Depending on the user input, the agent can then decide which, if any, of these tools to call.
The following sections of documentation are provided:
- `Getting Started <agents/getting_started.html>`_: A notebook to help you get started working with agents as quickly as possible.
- `Key Concepts <agents/key_concepts.html>`_: A conceptual guide going over the various concepts related to agents.
- `How-To Guides <agents/how_to_guides.html>`_: A collection of how-to guides. These highlight how to integrate various types of tools, how to work with different types of agent, and how to customize agents.
- `Reference </reference/modules/agents.html>`_: API reference documentation for all Agent classes.
.. toctree::
:maxdepth: 1
:caption: Agents
:name: Agents
:hidden:
agents/getting_started.ipynb
agents/key_concepts.md
agents/how_to_guides.rst
Reference</reference/modules/agents.rst>