omarsol's picture
026b63d1b2534d37e2985f31ecf11f13a01a9f2306fd8e798775233f180f8ea7
7677e00 verified
raw
history blame
457 Bytes
---
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.
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)
```