bizytrd
bizytrd gives ComfyUI ready-to-use nodes for third-party generative models — video, image, audio, and text — served through the BizyAir platform. It also ships a standalone Python SDK (bizytrd_sdk) for calling the same models outside ComfyUI.
Wire a node into your graph, type a prompt, and get results back as native ComfyUI outputs. Media upload, task polling, and result conversion are handled for you.
Installation
pip install bizytrd
Requires Python 3.10+.
If you use ComfyUI, you normally get bizytrd through a BizyAir host plugin (for example BizyAir-CloudBerry or BizyAirCloudPlugin): their requirements.txt pulls in bizytrd automatically when the plugin is installed.
Note: importing
bizytrditself requires a ComfyUI runtime. To call the models from plain Python scripts or services, use the SDK instead — it has no ComfyUI dependency.
Configuration
Nodes authenticate against the BizyAir platform with a single API key — no per-node settings.
Pick one of the following (in order of recommendation):
-
Environment variable:
export BIZYAIR_API_KEY=sk-your-key
-
An
api_key.inifile on the search path (for example~/.bizytrd/api_key.inior next to your ComfyUI install):[auth] api_key = sk-your-key
-
Existing host-plugin config
~/.BizyAirPlus/apikey.iniis picked up automatically, so users of the BizyAirPlus plugin do not need to configure anything twice.
Advanced overrides (base URLs, timeouts, polling intervals) are listed in the SDK guide.
Supported models
The node catalog is generated from the BizyAir model catalog, so new models appear as they are enabled on the platform — no code change and no new release needed. Representative families currently available:
- Video — Wan 2.7, Seedance 2.0 (incl. mini / fast), Google Veo 3.1 (fast / lite / pro), Kling (o3 / 3.0), Vidu Q3 (pro / turbo), Grok Imagine, Skyreels v4, DreamActor 2.0, HappyHorse 1.0, Hailuo 2.3
- Image — GPT-Image 2, Qwen-Image 2.0 / Pro, Nano-Banana (2 / Pro), Seedream 4.5 / 5.0, Grok Image, Flux Klein, Ideogram 4, Z-Image / Z-Image Turbo, SeedVR2 upscale, and image-editing utilities (Birefnet, Kontext-Dev-LoRA)
- Music & audio — Mureka (v7.6 – v9, incl. song generation, lyrics, BGM), Ace-Step, Qwen3-TTS custom voice
- Text & vision LLM — Gemini 3.5 / 3.6 Flash (LLM / VLM), SiliconFlow chat & vision nodes, Joycaption3 captioning
- 3D — Tripo3D H3.1, Pixal3D
Each node appears in ComfyUI under the BizyTRD category, with localized (Chinese) names and tooltips when ComfyUI runs in a Chinese locale.
Python SDK quickstart
import asyncio
from bizytrd_sdk import AsyncBizyTRD
async def main():
async with AsyncBizyTRD(api_key="sk-your-key") as client:
task = await client.create_task(
"wan2.7-image",
{"model": "wan2.7-image-pro", "prompt": "a cinematic mountain lake at sunrise"},
)
result = await client.wait_for_task(task.request_id)
downloaded = await client.download_outputs(result.outputs)
print("urls:", downloaded.urls)
asyncio.run(main())
A matching sync client (BizyTRD) covers uploads and everything the async client does not. Full usage: SDK guide.
Using bizytrd from your own plugin
from pathlib import Path
from bizytrd import get_node_mappings, sync_web_assets
NODE_CLASS_MAPPINGS, NODE_DISPLAY_NAME_MAPPINGS = get_node_mappings()
sync_web_assets(Path(__file__).resolve().parent / "web")
This merges all BizyTRD nodes into your plugin's mappings and syncs the bundled frontend assets (price badges, auto-grow inputs, localization) into your plugin's web directory. See the development guide for the full integration API.
Project & docs
- SDK guide — complete SDK usage (clients, config, error types)
- Development guide — architecture, repository layout, release pipeline, roadmap (for contributors and integrators)
- AGENTS.md — engineering commands: environment setup, tests, lint, CI
Source: https://github.com/siliconflow/bizytrd. Releases are published to https://pypi.org/project/bizytrd/.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
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 bizytrd-0.1.17-py3-none-any.whl.
File metadata
- Download URL: bizytrd-0.1.17-py3-none-any.whl
- Upload date:
- Size: 119.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/7.0.0 CPython/3.12.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f6663ce1b9ab835ec6456dec0da03c7e19d2bf6a1f9389fde7e9a25d78a32a2d
|
|
| MD5 |
ae1b510a5b3c6d2246a452c11d6a7cb5
|
|
| BLAKE2b-256 |
9ca6d113b043be52308179634ea09125a06b9612fa4118f38d500aa969a183db
|