Tencent | Flux | Srpo | Text to Image. Generate images from text prompts using Tencent Flux SRPO model. Triggers: tencent, flux, srpo, text to image, image generation
Scanned 9/8/2026
Install to Claude Code
npx -y skills add awesome-genmedia/skills --skill tencent-flux-srpo-text-to-image --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Tencent Flux Srpo Text To Image?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/awesome-genmedia-tencent-flux-srpo-text-to-image)More formats (shields.io, HTML) on the badges page.
---
name: tencent-flux-srpo-text-to-image
description: "Tencent | Flux | Srpo | Text to Image. Generate images from text prompts using Tencent Flux SRPO model. Triggers: tencent, flux, srpo, text to image, image generation"
allowed-tools: Bash(curl *), WebFetch
---
# Tencent | Flux | Srpo | Text to Image
Generate high-quality images from text descriptions using the Tencent Flux SRPO model. Supports acceleration modes, configurable guidance scale, multiple image sizes, and adjustable inference steps.
## Quick Start
> Requires an each::labs API key. Get one at [eachlabs.ai](https://eachlabs.ai).
```bash
curl -X POST https://api.eachlabs.ai/v1/prediction \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"model": "tencent-flux-srpo-text-to-image",
"version": "0.0.1",
"input": {
"prompt": "A photorealistic red sports car parked on a cliffside road overlooking the Mediterranean Sea at sunset",
"image_size": "landscape_16_9",
"num_images": 1,
"output_format": "jpeg"
}
}'
```
## Parameters
| Parameter | Type | Default | Description |
|-----------|------|---------|-------------|
| acceleration | string | none | Generation speed. enum: none, regular, high |
| enable_safety_checker | boolean | true | If set to true, the safety checker will be enabled |
| guidance_scale | number | 4.5 | CFG scale for prompt adherence |
| image_size | string | landscape_4_3 | The size of the generated image. enum: square_hd, square, portrait_4_3, portrait_16_9, landscape_4_3, landscape_16_9 |
| num_images | integer | 1 | The number of images to generate |
| num_inference_steps | integer | 28 | The number of inference steps to perform |
| output_format | string | jpeg | The format of the generated image. enum: jpeg, png |
| prompt | string | | The prompt to generate an image from |
| seed | string | | Seed for reproducible results |
## Examples
**High-quality portrait generation:**
```bash
curl -X POST https://api.eachlabs.ai/v1/prediction \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"model": "tencent-flux-srpo-text-to-image",
"version": "0.0.1",
"input": {
"prompt": "Close-up portrait of a wise elderly man with deep wrinkles and kind eyes, studio lighting, black and white photography",
"image_size": "portrait_4_3",
"guidance_scale": 5.0,
"num_inference_steps": 35,
"output_format": "png"
}
}'
```
**Fast batch generation:**
```bash
curl -X POST https://api.eachlabs.ai/v1/prediction \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"model": "tencent-flux-srpo-text-to-image",
"version": "0.0.1",
"input": {
"prompt": "Minimalist logo design of a mountain with a sun, clean vector style, white background",
"image_size": "square_hd",
"acceleration": "high",
"num_images": 4,
"seed": "12345"
}
}'
```
## Related Models
- [tencent-flux-srpo-image-to-image](../tencent-flux-srpo-image-to-image/) - Image to image transformation
- [tencent-flux-1-srpo-text-to-image](../tencent-flux-1-srpo-text-to-image/) - Flux 1 SRPO text to image
- [hunyuan-image-v3-text-to-image](../hunyuan-image-v3-text-to-image/) - Hunyuan text to image
## Documentation
- [each::labs Docs](https://docs.eachlabs.ai)
- [API Reference](https://docs.eachlabs.ai/api/overview)
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!