🧪 Skills
hd-txt2img-v2L
Call Hidream txt2img async API with exposed auth and request parameters. Use when users need to generate images from text prompts, build runnable Python comm...
v1.0.0
Description
name: hd-txt2img-skill description: Call Hidream txt2img async API with exposed auth and request parameters. Use when users need to generate images from text prompts, build runnable Python command examples, enforce allowed resolution values, or troubleshoot Hidream task polling/results.
HD TXT2IMG Skill
Use Python script scripts/generate_image.py to submit txt2img tasks and wait for final images.
Required Endpoint
POST https://www.hidreamai.com/api-pub/gw/v3/image/txt2img/asyncGET https://www.hidreamai.com/api-pub/gw/v3/image/txt2img/async/results?task_id=...
Auth
- Header:
Authorization: Bearer {USER_Authorization} - Header:
Content-Type: application/json - Do not hardcode real token in repository files.
Exposed Parameters
authorization(string): token value only, withoutBearerprompt(string): text promptresolution(string): must be one of:1024*1024832*1248880*1168768*13601248*8321168*8801360*768
Execution Example
python3 hd-txt2img-skill/scripts/generate_image.py \
--authorization "sk-" \
--prompt "一个跳舞的小女孩" \
--resolution "1024*1024"
Script Behavior
- Build async txt2img request payload.
- Submit task and get
task_id. - Poll result API until task finishes.
- Return final structured result object from code and print JSON in CLI mode.
Reviews (0)
Sign in to write a review.
No reviews yet. Be the first to review!
Comments (0)
No comments yet. Be the first to share your thoughts!