Official Python SDK for the Fetch Hive API
Project description
fetch-hive-sdk
Official Python SDK for Fetch Hive — invoke AI prompts, workflows, and agents from your application.
Installation
pip install fetch-hive-sdk
Quick start
from fetch_hive_sdk import FetchHive
client = FetchHive(api_key="fhk_...")
# or: client = FetchHive() # reads FETCH_HIVE_API_KEY env var
Get your API key from the Fetch Hive dashboard.
Invoke a prompt
result = client.invoke_prompt(
deployment="my-prompt",
inputs={"name": "Alice", "topic": "machine learning"},
)
print(result["response"])
Invoke a prompt (streaming)
for chunk in client.invoke_prompt_stream(
deployment="my-prompt",
inputs={"name": "Alice"},
):
if chunk.get("type") == "response":
print(chunk.get("response", ""), end="", flush=True)
elif chunk.get("type") == "usage":
print("\nUsage:", chunk["usage"])
Invoke a workflow
run = client.invoke_workflow(
deployment="my-workflow",
inputs={"customer_id": "42"},
)
print(run["status"], run.get("output"))
Invoke a workflow (async)
run = client.invoke_workflow(
deployment="my-workflow",
inputs={"customer_id": "42"},
async_mode=True,
callback_url="https://example.com/webhook",
)
print("Queued:", run["run_id"])
Invoke an agent
reply = client.invoke_agent(
agent="my-agent",
message="What is the weather in London?",
)
print(reply["response"])
Invoke an agent (streaming)
for chunk in client.invoke_agent_stream(
agent="my-agent",
message="What is the weather in London?",
thread_id="session-abc123", # optional — persist conversation history
):
if chunk.get("type") == "response":
print(chunk.get("response", ""), end="", flush=True)
elif chunk.get("type") == "tool":
print(f"\n[Calling tool: {chunk.get('tool')}]")
elif chunk.get("type") == "usage":
print("\nUsage:", chunk["usage"])
Multimodal (image) inputs
result = client.invoke_agent(
agent="vision-agent",
message="Describe this image",
image_urls=["https://example.com/photo.jpg"],
)
print(result["response"])
Async streaming
import asyncio
async def main():
async for chunk in client.ainvoke_agent_stream(
agent="my-agent",
message="Hello",
thread_id="session-abc123",
):
if chunk.get("type") == "response":
print(chunk.get("response", ""), end="", flush=True)
elif chunk.get("type") == "tool":
print(f"\n[Calling tool: {chunk.get('tool')}]")
elif chunk.get("type") == "usage":
print("\nUsage:", chunk["usage"])
asyncio.run(main())
Authentication
Pass the API key to the constructor or set the environment variable:
export FETCH_HIVE_API_KEY=fhk_...
client = FetchHive() # picks up FETCH_HIVE_API_KEY automatically
Configuration
| Option | Default | Description |
|---|---|---|
api_key |
FETCH_HIVE_API_KEY env var |
Bearer token from the Fetch Hive dashboard |
base_url |
https://api.fetchhive.com/v1 |
Override the API base URL |
timeout |
120 |
Request timeout in seconds |
Links
Version
0.2.4
License
MIT — see LICENSE.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
fetch_hive_sdk-0.2.4.tar.gz
(41.5 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file fetch_hive_sdk-0.2.4.tar.gz.
File metadata
- Download URL: fetch_hive_sdk-0.2.4.tar.gz
- Upload date:
- Size: 41.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.15
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1e9623f8b3c40c9c151dafe97e9637a932620f9035c01d025f14874d6247d0ac
|
|
| MD5 |
788bc593d71031bcf6904169271cd835
|
|
| BLAKE2b-256 |
8ff8135295464e448c5997fa25072cb57477e014ae7684fe59dc6579d75ab42f
|
File details
Details for the file fetch_hive_sdk-0.2.4-py3-none-any.whl.
File metadata
- Download URL: fetch_hive_sdk-0.2.4-py3-none-any.whl
- Upload date:
- Size: 5.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.15
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
51d224bc2a9052cc38488f2033f4ea20fa7294cb6658a1e4a0df14bc7f4811cb
|
|
| MD5 |
a17e0bd0420cddfbdb77d41ca24ca19b
|
|
| BLAKE2b-256 |
ff585c83e77e3ad98cf9d0a0551ce32690e65bf00af6ec139625f734312c9631
|