-
-
Notifications
You must be signed in to change notification settings - Fork 13.5k
✨ feat(models): Add Qwen Image Edit model #8851
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Reviewer's GuideAdds support for a dedicated Qwen Image Edit model by refining the existing image parameter schema and registering a new model entry with full configuration, including pricing and metadata. Entity relationship diagram for AIImageModelCard and parameter schemaserDiagram
AIImageModelCard {
string id
string displayName
string description
bool enabled
ModelParamsSchema parameters
object pricing
string releasedAt
string type
}
qwenEditParamsSchema {
float cfg
int height
string imageUrl
string prompt
int seed
int steps
int width
}
AIImageModelCard ||--o| qwenEditParamsSchema : has
Class diagram for the new Qwen Image Edit model parameter schemaclassDiagram
class qwenEditParamsSchema {
+float cfg (default: 4, min: 0, max: 20, step: 0.1)
+int height (default: 1328, min: 512, max: 1536, step: 1)
+string imageUrl (default: null)
+string prompt (default: '')
+int seed (default: null)
+int steps (default: 30, min: 2, max: 50, step: 1)
+int width (default: 1328, min: 512, max: 1536, step: 1)
}
Class diagram for updated falImageModels with Qwen Image Edit modelclassDiagram
class AIImageModelCard {
+string description
+string displayName
+bool enabled
+string id
+ModelParamsSchema parameters
+object pricing
+string releasedAt
+string type
}
class qwenEditParamsSchema
AIImageModelCard "1" -- "1" qwenEditParamsSchema : uses
AIImageModelCard : Qwen Edit
AIImageModelCard : Qwen Image
AIImageModelCard : FLUX.1
AIImageModelCard : other models
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
👍 @tjx666 Thank you for raising your pull request and contributing to our Community |
Claude encountered an error —— View job I'll analyze this and get back to you. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #8851 +/- ##
=========================================
Coverage 85.64% 85.64%
=========================================
Files 943 943
Lines 73405 73427 +22
Branches 4736 6662 +1926
=========================================
+ Hits 62866 62888 +22
Misses 10539 10539
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
❤️ Great PR @tjx666 ❤️ The growth of project is inseparable from user feedback and contribution, thanks for your contribution! If you are interesting with the lobehub developer community, please join our discord and then dm @arvinxx or @canisminor1990. They will invite you to our private developer channel. We are talking about the lobe-chat development or sharing ai newsletter around the world. |
## [Version 1.114.0](v1.113.3...v1.114.0) <sup>Released on **2025-08-19**</sup> #### ✨ Features - **models**: Add Qwen Image Edit model. <br/> <details> <summary><kbd>Improvements and Fixes</kbd></summary> #### What's improved * **models**: Add Qwen Image Edit model, closes [#8851](#8851) ([4d7a060](4d7a060)) </details> <div align="right"> [](#readme-top) </div>
🎉 This PR is included in version 1.114.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
## [Version 1.114.0](v1.113.1...v1.114.0) <sup>Released on **2025-08-19**</sup> #### ✨ Features - **models**: Add Qwen Image Edit model. <br/> <details> <summary><kbd>Improvements and Fixes</kbd></summary> #### What's improved * **models**: Add Qwen Image Edit model, closes [lobehub#8851](https://github.com/jaworldwideorg/OneJA-Bot/issues/8851) ([4d7a060](4d7a060)) </details> <div align="right"> [](#readme-top) </div>
💻 变更类型 | Change Type
🔀 变更说明 | Description of Change
Added Qwen Image Edit model to the fal.ai provider with comprehensive configuration:
New Features:
Technical Details:
qwenEditParamsSchema
with all required parametersParameters Supported:
prompt
: Editing instructionsimageUrl
: Input image URL (required)aspectRatio
: Image aspect ratio optionssteps
: Inference steps (2-50, default 30)seed
: Random seed for reproducibilitycfg
: Guidance scale (0-20, default 4)📝 补充信息 | Additional Information
This addition enables users to perform high-quality image editing tasks using Qwen's latest image editing model, which excels at text rendering and precise editing operations.
Summary by Sourcery
Add the Qwen Image Edit model to the fal.ai provider for advanced image editing tasks
New Features:
Enhancements: