mirror of
https://github.com/hwchase17/langchain
synced 2024-11-08 07:10:35 +00:00
87e502c6bc
Co-authored-by: jacoblee93 <jacoblee93@gmail.com> Co-authored-by: Harrison Chase <hw.chase.17@gmail.com>
21 lines
833 B
Plaintext
21 lines
833 B
Plaintext
# Interacting with APIs
|
|
|
|
Lots of data and information is stored behind APIs.
|
|
This page covers all resources available in LangChain for working with APIs.
|
|
|
|
## Chains
|
|
|
|
If you are just getting started, and you have relatively simple apis, you should get started with chains.
|
|
Chains are a sequence of predetermined steps, so they are good to get started with as they give you more control and let you
|
|
understand what is happening better.
|
|
|
|
- [API Chain](/docs/modules/chains/how_to/api.html)
|
|
|
|
## Agents
|
|
|
|
Agents are more complex, and involve multiple queries to the LLM to understand what to do.
|
|
The downside of agents are that you have less control. The upside is that they are more powerful,
|
|
which allows you to use them on larger and more complex schemas.
|
|
|
|
- [OpenAPI Agent](/docs/modules/agents/tools/toolkits/examples/openapi.html)
|