跳到主要内容

支持的文生图模型

Ideon 当前支持以下模型 ID:

  • black-forest-labs/flux-schnell (default)
  • black-forest-labs/flux-2-pro
  • bytedance/seedream-4
  • google/nano-banana-pro
  • prunaai/z-image-turbo

覆盖参数处理

用户提供的 t2i.inputOverrides 会在运行前进行清洗:

  • 不允许用户配置的字段会被移除
  • 按类型进行值转换与校验
  • 非法值会被忽略

由流水线管理的字段

根据模型能力,Ideon 可能会自动设置以下流水线字段:

  • aspect_ratio
  • width
  • height

这样可以保持图像尺寸与版式意图的稳定性。

选择建议

  • 优先从默认 flux-schnell 开始,以获得更快速度
  • 在基线稳定后再逐步提高偏质量的参数
  • 在实际图像调用前先用 dry-run 验证编排流程

实际权衡

ModelSpeedTypical QualityBest Use
black-forest-labs/flux-schnellFastGood baselineIteration, high-throughput drafts
black-forest-labs/flux-2-proMediumHigher fidelityHero visuals, polished cover images
bytedance/seedream-4MediumStrong compositionBalanced speed/quality workflows
google/nano-banana-proMediumStyle-consistent outputsBrand-like variation and consistency
prunaai/z-image-turboFastLightweightQuick exploratory rendering

常见覆盖参数模式

当你需要模型特定调优时,可使用 t2i.inputOverrides

  • 输出格式调优(例如 pngwebp
  • 在支持时使用模型原生质量参数
  • 在允许时控制数量/变体参数

示例:

{
"settings": {
"t2i": {
"modelId": "black-forest-labs/flux-schnell",
"inputOverrides": {
"output_format": "png"
}
}
}
}

如果某个覆盖参数不适用于所选模型,Ideon 会在校验阶段将其丢弃。