The official Python SDK for Toolhouse API
Project description
Toolhouse Python SDK
This is the Python SDK for Toolhouse.
Toolhouse allows you to unlock the best LLM knowledge and actions. It works across a wide ranges or LLMs and providers.
With Toolhouse, you can install tools from the Tool Store and execute them in the cloud, without the need to handling their execution locally.
For more details, you can check out our documentation.
Installation
With pip
:
pip install toolhouse
With poetry
:
poetry add toolhouse
Getting started
In order to use the SDK, you will need a Toolhouse API key. To get the API key:
- Sign up for Toolhouse or log in if you are an existing Toolhouse user.
- Go to your user ➡️ API Keys (direct link)
- Give your API key a name and click Generate.
Copy the API Key and save it where you save your secrets. We'll assume you have a .env file.
We suggest saving your API Key as TOOLHOUSE_API_KEY
in your environment file. This allows Toolhouse to pick up its value directly in your code.
TOOLHOUSE_API_KEY=<Your API Key value>
Alternatively, you can set the API key when you initialize the SDK. You can do this in the constructor:
tools = Toolhouse('YOUR_API_KEY')
You can also use the set_access_token
method:
tools = Toolhouse()
tools.set_access_token('YOUR_API_KEY')
Our Quick start guide has all you need to get you set up quickly.
Providers
Toolhouse works with the widest possible range of LLMs across different providers. By default, the Toolhouse API will work with any LLM that is compatible with the OpenAI chat completions API.
You can switch providers when initializing the SDK through the constructor:
from toolhouse import Toolhouse, Provider
tools = Toolhouse(provider=provider.ANTHROPIC)
If you are passing your API key:
from toolhouse import Toolhouse, Provider
tools = Toolhouse('YOUR_API_KEY', provider.ANTHROPIC)
Sample usage
In this example, we'll use the OpenAI SDK as well as dotenv.
pip install python-dotenv
Create a .env
and add your API keys there.
TOOLHOUSE_API_KEY=
OPENAI_API_KEY=
Head over to Toolhouse and install the Current time tool.
import os
from dotenv import load_dotenv
from toolhouse import Toolhouse
from openai import OpenAI
from typing import List
load_dotenv()
client = OpenAI()
tools = Toolhouse()
#Metadata to convert UTC time to your localtime
th.set_metadata("timezone", -7)
messages: List = [{
"role": "user",
"content": "What's the current time?"
}]
response = client.chat.completions.create(
model='gpt-4o',
messages=messages,
tools=tools.get_tools(),
tool_choice="auto"
)
messages += th.run_tools(response)
response = client.chat.completions.create(
model="gpt-4o-mini",
messages=messages,
tools=tools.get_tools(),
tool_choice="auto"
)
print(response.choices[0].message.content)
Contributing
We welcome pull requests that add meaningful additions to these code samples, particularly for issues that can expand compability.
You can submit issues (for example for feature requests or improvements) by using the Issues tab.
Publishing tools
Developers can also contribute to Toolhouse by publishing tools for the Tool Store. The Tool Store allows developers to submit their tools and monetize them every time they're executed. Developers and tools must go through an review and approval process, which includes adhering to the Toolhouse Privacy and Data Protection policy. If you're interested in becoming a publisher, submit your application.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file toolhouse-1.1.1.tar.gz
.
File metadata
- Download URL: toolhouse-1.1.1.tar.gz
- Upload date:
- Size: 26.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.8.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 37fade5a1febabb4a2b8cce92c67a2f47fea217dc48224069491c52618f2e766 |
|
MD5 | 761e2e31945725c89abd4b4933bcc2f9 |
|
BLAKE2b-256 | 3a38681a62cfe7e8869a1a517e655a7c17da1096eda9c07da141b1f39bf4586e |
File details
Details for the file toolhouse-1.1.1-py3-none-any.whl
.
File metadata
- Download URL: toolhouse-1.1.1-py3-none-any.whl
- Upload date:
- Size: 36.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.8.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2d6ea4f0750e697f01ad342a08529d9057fc8cfc776cff628284317706e9709c |
|
MD5 | 6e77a99655aa07940eb7fb26f8824378 |
|
BLAKE2b-256 | ab7a7d86cea68fd1aad09b7dc6464221a6179d5e81523ec8fad9e3a66d03f4c6 |