Files
langchain/docs/versioned_docs/version-0.2.x/how_to/toolkits.mdx
Harrison Chase 66b2ac62eb cr
2024-04-24 17:07:56 -07:00

23 lines
563 B
Plaintext

---
sidebar_position: 3
---
# How to use toolkits
Toolkits are collections of tools that are designed to be used together for specific tasks. They have convenient loading methods.
For a complete list of available ready-made toolkits, visit [Integrations](/docs/integrations/toolkits/).
All Toolkits expose a `get_tools` method which returns a list of tools.
You can therefore do:
```python
# Initialize a toolkit
toolkit = ExampleTookit(...)
# Get list of tools
tools = toolkit.get_tools()
# Create agent
agent = create_agent_method(llm, tools, prompt)
```