Skip to content

Conversation

hezhijie0327
Copy link
Contributor

@hezhijie0327 hezhijie0327 commented Jul 25, 2025

๐Ÿ’ป ๅ˜ๆ›ด็ฑปๅž‹ | Change Type

  • โœจ feat
  • ๐Ÿ› fix
  • โ™ป๏ธ refactor
  • ๐Ÿ’„ style
  • ๐Ÿ‘ท build
  • โšก๏ธ perf
  • ๐Ÿ“ docs
  • ๐Ÿ”จ chore

๐Ÿ”€ ๅ˜ๆ›ด่ฏดๆ˜Ž | Description of Change

  1. ๅขžๅŠ  xai siliconcloud stepfun wenxin gitee volcengine ๆ–‡็”Ÿๅ›พๆจกๅž‹
  2. ไธบ้ƒจๅˆ†ๆจกๅž‹ๅขžๅŠ  seed ๅŠ step ๅ‚ๆ•ฐ
  3. ๆ›ดๆ–ฐๆจกๅž‹ๆ่ฟฐๅŠๅ‘ๅธƒๆ—ฅๆœŸ [TODO]
  4. ๅ›พๆ ‡ๆ›ดๆ–ฐ [Request] ๅฟซๆ‰‹ๅฏๅ›พ (Kolors) ๆ–‡็”Ÿๅ›พๆจกๅž‹ๅ›พๆ ‡ย lobe-icons#148 ๐Ÿ’„ style: support some T2I model iconsย lobe-icons#147

Note:

  1. xAI ไธๆ”ฏๆŒ่ฎพๅฎšๅ›พ็‰‡ๅคงๅฐ https://docs.x.ai/docs/guides/image-generations#parameters

Provider Model Screenshot
xAI grok-2-image-1212 image
Wenxin irag-1.0 image
Wenxin flux.1-schnell image
Stepfun step-2x-large image
Stepfun step-1x-medium image
Volcengine Doubao-Seedream-3.0-t2i image
Siliconcloud Kwai-Kolors/Kolors image
Gitee FLUX.1-dev image

๐Ÿ“ ่กฅๅ……ไฟกๆฏ | Additional Information

Summary by Sourcery

Add support for new image generation models across multiple AI providers by extending the configuration with AIImageModelCard definitions and updating exports.

New Features:

  • Add Wenxin image models: ERINE iRAG, Stable-Diffusion-XL, FLUX.1-schnell
  • Add StepFun image models: Step 2X Large, Step 1X Edit, Step 1X Medium
  • Add xAI image model: Grok 2 Image 1212
  • Add SiliconCloud image model: Kolors
  • Extend allModels exports to include both chat and image models

Enhancements:

  • Include image providers alongside chat models in the consolidated allModels export

Summary by Sourcery

Add and configure new text-to-image models across multiple AI providers by extending configuration files with AIImageModelCard entries, updating parameters, and merging image and chat model exports.

New Features:

  • Add support for GiteeAI image models including FLUX.1-dev, flux-1-schnell, multiple Stable Diffusion variants, Kolors, HunyuanDiT, and HiDream-I1
  • Add support for StepFun image models: Step 2X Large and Step 1X Medium
  • Add support for Wenxin image models: ERINE iRAG and FLUX.1-schnell
  • Add support for SiliconCloud image model Kolors
  • Add support for xAI image model Grok 2 Image 1212

Enhancements:

  • Introduce seed and steps parameters for applicable image models
  • Include image models alongside chat models in allModels exports
  • Update model descriptions and release dates for new image providers

Summary by Sourcery

Register multiple AIImageModelCard entries to extend text-to-image capabilities across various providers and enhance export consolidation.

New Features:

  • Add support for new text-to-image models for gitee.ai, StepFun, Wenxin, Volcengine, SiliconCloud, and xAI providers

Enhancements:

  • Introduce seed and steps parameters for applicable image models
  • Combine chat and image model exports in allModels for unified model listings

Copy link

vercel bot commented Jul 25, 2025

@hezhijie0327 is attempting to deploy a commit to the LobeHub OSS Team on Vercel.

A member of the Team first needs to authorize it.

Copy link
Contributor

sourcery-ai bot commented Jul 25, 2025

Reviewer's Guide

This PR extends the AI model configuration by introducing AIImageModelCard support across six provider modules, defining and exporting new text-to-image models, and enhancing their parameters with size, seed, steps, and release metadata.

ER diagram for AI model provider modules after image model addition

erDiagram
  GITEEAI_CHAT_MODELS ||--o{ GITEEAI_IMAGE_MODELS : includes
  STEPFUN_CHAT_MODELS ||--o{ STEPFUN_IMAGE_MODELS : includes
  WENXIN_CHAT_MODELS ||--o{ WENXIN_IMAGE_MODELS : includes
  VOLCENGINE_CHAT_MODELS ||--o{ VOLCENGINE_IMAGE_MODELS : includes
  SILICONCLOUD_CHAT_MODELS ||--o{ SILICONCLOUD_IMAGE_MODELS : includes
  XAI_CHAT_MODELS ||--o{ XAI_IMAGE_MODELS : includes

  GITEEAI_IMAGE_MODELS {
    string id
    string displayName
    string description
    object parameters
    string type
    string releasedAt
  }
  STEPFUN_IMAGE_MODELS {
    string id
    string displayName
    string description
    object parameters
    string type
    string releasedAt
  }
  WENXIN_IMAGE_MODELS {
    string id
    string displayName
    string description
    object parameters
    string type
    string releasedAt
  }
  VOLCENGINE_IMAGE_MODELS {
    string id
    string displayName
    string description
    object parameters
    string type
    string releasedAt
  }
  SILICONCLOUD_IMAGE_MODELS {
    string id
    string displayName
    string description
    object parameters
    string type
    string releasedAt
  }
  XAI_IMAGE_MODELS {
    string id
    string displayName
    string description
    object parameters
    string type
    string releasedAt
  }
Loading

Class diagram for updated AI model configuration types

classDiagram
  class AIChatModelCard {
    +string description
    +string displayName
    +boolean enabled
    +string id
    +object parameters
    +string type
    +string releasedAt
  }
  class AIImageModelCard {
    +string description
    +string displayName
    +boolean enabled
    +string id
    +object parameters
    +string type
    +string releasedAt
  }
  AIChatModelCard <|-- AIImageModelCard : extends/implements (structure)
Loading

Class diagram for provider model exports after image model integration

classDiagram
  class GiteeAI {
    +AIChatModelCard[] giteeaiChatModels
    +AIImageModelCard[] giteeaiImageModels
    +allModels: (giteeaiChatModels + giteeaiImageModels)
  }
  class StepFun {
    +AIChatModelCard[] stepfunChatModels
    +AIImageModelCard[] stepfunImageModels
    +allModels: (stepfunChatModels + stepfunImageModels)
  }
  class Wenxin {
    +AIChatModelCard[] wenxinChatModels
    +AIImageModelCard[] wenxinImageModels
    +allModels: (wenxinChatModels + wenxinImageModels)
  }
  class Volcengine {
    +AIChatModelCard[] doubaoChatModels
    +AIImageModelCard[] volcengineImageModels
    +allModels: (doubaoChatModels + volcengineImageModels)
  }
  class SiliconCloud {
    +AIChatModelCard[] siliconcloudChatModels
    +AIImageModelCard[] siliconcloudImageModels
    +allModels: (siliconcloudChatModels + siliconcloudImageModels)
  }
  class XAI {
    +AIChatModelCard[] xaiChatModels
    +AIImageModelCard[] xaiImageModels
    +allModels: (xaiChatModels + xaiImageModels)
  }
Loading

File-Level Changes

Change Details Files
Integrate AIImageModelCard and merge image models into exports
  • Add AIImageModelCard import alongside AIChatModelCard in each config
  • Declare imageModels arrays for each provider
  • Update allModels exports to include both chat and image models
src/config/aiModels/giteeai.ts
src/config/aiModels/stepfun.ts
src/config/aiModels/wenxin.ts
src/config/aiModels/volcengine.ts
src/config/aiModels/siliconcloud.ts
src/config/aiModels/xai.ts
Add new provider-specific image model definitions
  • Define multiple GiteeAI image models (FLUX variants, Stable Diffusion, Kolors, etc.)
  • Add Stepfun image models: Step 2X Large, Step 1X Medium, Step 1X Edit
  • Add Wenxin image models: ERINE iRAG, ERINE iRAG Edit, FLUX.1-schnell
  • Add Volcengine Doubao Seedream 3.0 image model
  • Add SiliconCloud Kolors model
  • Add xAI Grok 2 Image 1212 model
src/config/aiModels/giteeai.ts
src/config/aiModels/stepfun.ts
src/config/aiModels/wenxin.ts
src/config/aiModels/volcengine.ts
src/config/aiModels/siliconcloud.ts
src/config/aiModels/xai.ts
Enhance image model parameters with seed and steps
  • Introduce seed parameter with default null for applicable models
  • Add steps parameter with default, min, and max values
  • Adjust size enums per each providerโ€™s supported resolutions
src/config/aiModels/stepfun.ts
src/config/aiModels/wenxin.ts
src/config/aiModels/volcengine.ts
src/config/aiModels/siliconcloud.ts

Tips and commands

Interacting with Sourcery

  • Trigger a new review: Comment @sourcery-ai review on the pull request.
  • Continue discussions: Reply directly to Sourcery's review comments.
  • Generate a GitHub issue from a review comment: Ask Sourcery to create an
    issue from a review comment by replying to it. You can also reply to a
    review comment with @sourcery-ai issue to create an issue from it.
  • Generate a pull request title: Write @sourcery-ai anywhere in the pull
    request title to generate a title at any time. You can also comment
    @sourcery-ai title on the pull request to (re-)generate the title at any time.
  • Generate a pull request summary: Write @sourcery-ai summary anywhere in
    the pull request body to generate a PR summary at any time exactly where you
    want it. You can also comment @sourcery-ai summary on the pull request to
    (re-)generate the summary at any time.
  • Generate reviewer's guide: Comment @sourcery-ai guide on the pull
    request to (re-)generate the reviewer's guide at any time.
  • Resolve all Sourcery comments: Comment @sourcery-ai resolve on the
    pull request to resolve all Sourcery comments. Useful if you've already
    addressed all the comments and don't want to see them anymore.
  • Dismiss all Sourcery reviews: Comment @sourcery-ai dismiss on the pull
    request to dismiss all existing Sourcery reviews. Especially useful if you
    want to start fresh with a new review - don't forget to comment
    @sourcery-ai review to trigger a new review!

Customizing Your Experience

Access your dashboard to:

  • Enable or disable review features such as the Sourcery-generated pull request
    summary, the reviewer's guide, and others.
  • Change the review language.
  • Add, remove or edit custom review instructions.
  • Adjust other review settings.

Getting Help

@lobehubbot
Copy link
Member

๐Ÿ‘ @hezhijie0327

Thank you for raising your pull request and contributing to our Community
Please make sure you have followed our contributing guidelines. We will review it as soon as possible.
If you encounter any problems, please feel free to connect with us.
้žๅธธๆ„Ÿ่ฐขๆ‚จๆๅ‡บๆ‹‰ๅ–่ฏทๆฑ‚ๅนถไธบๆˆ‘ไปฌ็š„็คพๅŒบๅšๅ‡บ่ดก็Œฎ๏ผŒ่ฏท็กฎไฟๆ‚จๅทฒ็ป้ตๅพชไบ†ๆˆ‘ไปฌ็š„่ดก็ŒฎๆŒ‡ๅ—๏ผŒๆˆ‘ไปฌไผšๅฐฝๅฟซๅฎกๆŸฅๅฎƒใ€‚
ๅฆ‚ๆžœๆ‚จ้‡ๅˆฐไปปไฝ•้—ฎ้ข˜๏ผŒ่ฏท้šๆ—ถไธŽๆˆ‘ไปฌ่”็ณปใ€‚

Copy link

codecov bot commented Jul 25, 2025

Codecov Report

โœ… All modified and coverable lines are covered by tests.
โœ… Project coverage is 85.66%. Comparing base (9d7c601) to head (cd1da5d).
โš ๏ธ Report is 27 commits behind head on main.

Additional details and impacted files
@@            Coverage Diff             @@
##             main    #8573      +/-   ##
==========================================
+ Coverage   85.57%   85.66%   +0.09%     
==========================================
  Files         909      909              
  Lines       69019    69465     +446     
  Branches     6395     6628     +233     
==========================================
+ Hits        59060    59506     +446     
  Misses       9959     9959              
Flag Coverage ฮ”
app 85.66% <100.00%> (+0.09%) โฌ†๏ธ
server 96.26% <รธ> (รธ)

Flags with carried forward coverage won't be shown. Click here to find out more.

โ˜” View full report in Codecov by Sentry.
๐Ÿ“ข Have feedback on the report? Share it here.

๐Ÿš€ New features to boost your workflow:
  • โ„๏ธ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • ๐Ÿ“ฆ JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@hezhijie0327 hezhijie0327 marked this pull request as ready for review July 25, 2025 12:13
Copy link
Contributor

gru-agent bot commented Jul 25, 2025

TestGru Assignment

Summary

Link CommitId Status Reason
Detail ba974a6 ๐Ÿšซ Skipped No files need to be tested {"src/config/aiModels/giteeai.ts":"File path does not match include patterns.","src/config/aiModels/siliconcloud.ts":"File path does not match include patterns.","src/config/aiModels/stepfun.ts":"File path does not match include patterns.","src/config/aiModels/volcengine.ts":"File path does not match include patterns.","src/config/aiModels/wenxin.ts":"File path does not match include patterns.","src/config/aiModels/xai.ts":"File path does not match include patterns."}

History Assignment

Tip

You can @gru-agent and leave your feedback. TestGru will make adjustments based on your input

@dosubot dosubot bot added the size:L This PR changes 100-499 lines, ignoring generated files. label Jul 25, 2025
Copy link
Contributor

@sourcery-ai sourcery-ai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hey @hezhijie0327 - I've reviewed your changes - here's some feedback:

  • Thereโ€™s a lot of boilerplate in each provider for merging chat and image model arraysโ€”consider extracting that merge into a shared utility or base config to reduce repetition and enforce consistency.
  • Many image models define prompt, size, seed, and steps parameters inlineโ€”extract common parameter definitions into reusable fragments or helper functions to ensure consistency across providers and simplify future updates.
Prompt for AI Agents
Please address the comments from this code review:
## Overall Comments
- Thereโ€™s a lot of boilerplate in each provider for merging chat and image model arraysโ€”consider extracting that merge into a shared utility or base config to reduce repetition and enforce consistency.
- Many image models define prompt, size, seed, and steps parameters inlineโ€”extract common parameter definitions into reusable fragments or helper functions to ensure consistency across providers and simplify future updates.

Sourcery is free for open source - if you like our reviews please consider sharing them โœจ
Help me be more useful! Please click ๐Ÿ‘ or ๐Ÿ‘Ž on each comment and I'll use the feedback to improve your reviews.

@hezhijie0327 hezhijie0327 marked this pull request as draft July 25, 2025 12:29
@hezhijie0327 hezhijie0327 marked this pull request as ready for review July 25, 2025 13:58
Copy link
Contributor

@sourcery-ai sourcery-ai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hey @hezhijie0327 - I've reviewed your changes - here's some feedback:

  • Ensure each new image model ID is unique and matches its displayName (e.g. the HiDream-E1-Full entry currently reuses the HiDream-I1-Full ID).
  • Consider extracting common parameter schemas (prompt, size, seed, steps) into a shared helper or base config to reduce duplication across providers.
  • Standardize the presence of the releasedAt field for all image models or explicitly document when itโ€™s omitted to keep metadata consistent.
Prompt for AI Agents
Please address the comments from this code review:
## Overall Comments
- Ensure each new image model ID is unique and matches its displayName (e.g. the HiDream-E1-Full entry currently reuses the HiDream-I1-Full ID).
- Consider extracting common parameter schemas (prompt, size, seed, steps) into a shared helper or base config to reduce duplication across providers.
- Standardize the presence of the releasedAt field for all image models or explicitly document when itโ€™s omitted to keep metadata consistent.

## Individual Comments

### Comment 1
<location> `src/config/aiModels/giteeai.ts:385` </location>
<code_context>
+  {
+    description:
+      'HiDream-E1-Full ๆ˜ฏ็”ฑๆ™บ่ฑกๆœชๆฅ๏ผˆHiDream.ai๏ผ‰ๆŽจๅ‡บ็š„ไธ€ๆฌพ ๅผ€ๆบๅคšๆจกๆ€ๅ›พๅƒ็ผ–่พ‘ๅคงๆจกๅž‹๏ผŒๅŸบไบŽๅ…ˆ่ฟ›็š„ Diffusion Transformer ๆžถๆž„๏ผŒๅนถ็ป“ๅˆๅผบๅคง็š„่ฏญ่จ€็†่งฃ่ƒฝๅŠ›๏ผˆๅ†…ๅตŒ LLaMA 3.1-8B-Instruct๏ผ‰๏ผŒๆ”ฏๆŒ้€š่ฟ‡่‡ช็„ถ่ฏญ่จ€ๆŒ‡ไปค่ฟ›่กŒๅ›พๅƒ็”Ÿๆˆใ€้ฃŽๆ ผ่ฟ็งปใ€ๅฑ€้ƒจ็ผ–่พ‘ๅ’Œๅ†…ๅฎน้‡็ป˜๏ผŒๅ…ทๅค‡ๅ‡บ่‰ฒ็š„ๅ›พๆ–‡็†่งฃไธŽๆ‰ง่กŒ่ƒฝๅŠ›ใ€‚',
+    displayName: 'HiDream-E1-Full',
+    enabled: true,
+    id: 'HiDream-I1-Full',
+    parameters: {
+      imageUrl: { default: null },
</code_context>

<issue_to_address>
The id for 'HiDream-E1-Full' is set to 'HiDream-I1-Full', which may be a copy-paste error.

Please confirm whether the id should be 'HiDream-E1-Full' to match the displayName, or if the current value is intentional.
</issue_to_address>

### Comment 2
<location> `src/config/aiModels/wenxin.ts:571` </location>
<code_context>
+  {
+    description:
+      '็™พๅบฆ่‡ช็ ”็š„iRAG๏ผˆimage based RAG๏ผ‰๏ผŒๆฃ€็ดขๅขžๅผบ็š„ๆ–‡็”Ÿๅ›พๆŠ€ๆœฏ๏ผŒๅฐ†็™พๅบฆๆœ็ดข็š„ไบฟ็บงๅ›พ็‰‡่ต„ๆบ่ทŸๅผบๅคง็š„ๅŸบ็ก€ๆจกๅž‹่ƒฝๅŠ›็›ธ็ป“ๅˆ๏ผŒๅฐฑๅฏไปฅ็”Ÿๆˆๅ„็ง่ถ…็œŸๅฎž็š„ๅ›พ็‰‡๏ผŒๆ•ดไฝ“ๆ•ˆๆžœ่ฟœ่ฟœ่ถ…่ฟ‡ๆ–‡็”Ÿๅ›พๅŽŸ็”Ÿ็ณป็ปŸ๏ผŒๅŽปๆމไบ†AIๅ‘ณๅ„ฟ๏ผŒ่€Œไธ”ๆˆๆœฌๅพˆไฝŽใ€‚iRAGๅ…ทๅค‡ๆ— ๅนป่ง‰ใ€่ถ…็œŸๅฎžใ€็ซ‹็ญ‰ๅฏๅ–็ญ‰็‰น็‚นใ€‚',
+    displayName: 'ERINE iRAG',
+    enabled: true,
+    id: 'irag-1.0',
+    parameters: {
+      prompt: {
</code_context>

<issue_to_address>
Potential typo in displayName: 'ERINE iRAG' vs. 'ERNIE iRAG'.

Please verify if 'ERINE iRAG' should be 'ERNIE iRAG' to match the description and Baidu's branding.
</issue_to_address>

<suggested_fix>
<<<<<<< SEARCH
    displayName: 'ERINE iRAG',
=======
    displayName: 'ERNIE iRAG',
>>>>>>> REPLACE

</suggested_fix>

### Comment 3
<location> `src/config/aiModels/siliconcloud.ts:839` </location>
<code_context>
+      'Kolors ๆ˜ฏ็”ฑๅฟซๆ‰‹ Kolors ๅ›ข้˜Ÿๅผ€ๅ‘็š„ๅŸบไบŽๆฝœๅœจๆ‰ฉๆ•ฃ็š„ๅคง่ง„ๆจกๆ–‡ๆœฌๅˆฐๅ›พๅƒ็”Ÿๆˆๆจกๅž‹ใ€‚่ฏฅๆจกๅž‹้€š่ฟ‡ๆ•ฐๅไบฟๆ–‡ๆœฌ-ๅ›พๅƒๅฏน็š„่ฎญ็ปƒ๏ผŒๅœจ่ง†่ง‰่ดจ้‡ใ€ๅคๆ‚่ฏญไน‰ๅ‡†็กฎๆ€งไปฅๅŠไธญ่‹ฑๆ–‡ๅญ—็ฌฆๆธฒๆŸ“ๆ–น้ขๅฑ•็Žฐๅ‡บๆ˜พ่‘—ไผ˜ๅŠฟใ€‚ๅฎƒไธไป…ๆ”ฏๆŒไธญ่‹ฑๆ–‡่พ“ๅ…ฅ๏ผŒๅœจ็†่งฃๅ’Œ็”Ÿๆˆไธญๆ–‡็‰นๅฎšๅ†…ๅฎนๆ–น้ขไนŸ่กจ็Žฐๅ‡บ่‰ฒ',
+    displayName: 'Kolors',
+    enabled: true,
+    id: 'Kwai-Kolors/Kolors',
+    parameters: {
+      prompt: {
</code_context>

<issue_to_address>
The id 'Kwai-Kolors/Kolors' contains a slash, which may cause issues in downstream systems.

Consider replacing the slash with a hyphen or another separator to avoid potential issues in URLs, file paths, or object keys.
</issue_to_address>

<suggested_fix>
<<<<<<< SEARCH
    id: 'Kwai-Kolors/Kolors',
=======
    id: 'Kwai-Kolors-Kolors',
>>>>>>> REPLACE

</suggested_fix>

Sourcery is free for open source - if you like our reviews please consider sharing them โœจ
Help me be more useful! Please click ๐Ÿ‘ or ๐Ÿ‘Ž on each comment and I'll use the feedback to improve your reviews.

@dosubot dosubot bot added size:XL This PR changes 500-999 lines, ignoring generated files. ๐ŸŒ  Feature Request New feature or request | ็‰นๆ€งไธŽๅปบ่ฎฎ and removed size:L This PR changes 100-499 lines, ignoring generated files. labels Jul 25, 2025
Copy link

vercel bot commented Jul 26, 2025

The latest updates on your projects. Learn more about Vercel for Git โ†—๏ธŽ

Name Status Preview Comments Updated (UTC)
lobe-chat-database โœ… Ready (Inspect) Visit Preview ๐Ÿ’ฌ Add feedback Jul 26, 2025 9:07am

@lobehubbot
Copy link
Member

โค๏ธ Great PR @hezhijie0327 โค๏ธ

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.
้กน็›ฎ็š„ๆˆ้•ฟ็ฆปไธๅผ€็”จๆˆทๅ้ฆˆๅ’Œ่ดก็Œฎ๏ผŒๆ„Ÿ่ฐขๆ‚จ็š„่ดก็Œฎ! ๅฆ‚ๆžœๆ‚จๅฏน LobeHub ๅผ€ๅ‘่€…็คพๅŒบๆ„Ÿๅ…ด่ถฃ๏ผŒ่ฏทๅŠ ๅ…ฅๆˆ‘ไปฌ็š„ discord๏ผŒ็„ถๅŽ็งไฟก @arvinxx ๆˆ– @canisminor1990ใ€‚ไป–ไปฌไผš้‚€่ฏทๆ‚จๅŠ ๅ…ฅๆˆ‘ไปฌ็š„็งๅฏ†ๅผ€ๅ‘่€…้ข‘้“ใ€‚ๆˆ‘ไปฌๅฐ†ไผš่ฎจ่ฎบๅ…ณไบŽ Lobe Chat ็š„ๅผ€ๅ‘๏ผŒๅˆ†ไบซๅ’Œ่ฎจ่ฎบๅ…จ็ƒ่Œƒๅ›ดๅ†…็š„ AI ๆถˆๆฏใ€‚

@canisminor1990
Copy link
Member

@hezhijie0327 icon ๅŠ ไบ†๏ผŒไธ่ฟ‡ไฝ ่ฆๅ† pr ไธ‹ๆญฃๅˆ™ๅŒน้…

@lobehubbot
Copy link
Member

Bot detected the issue body's language is not English, translate it automatically. ๐Ÿ‘ฏ๐Ÿ‘ญ๐Ÿป๐Ÿง‘โ€๐Ÿคโ€๐Ÿง‘๐Ÿ‘ซ๐Ÿง‘๐Ÿฟโ€๐Ÿคโ€๐Ÿง‘๐Ÿป๐Ÿ‘ฉ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฟ๐Ÿ‘ฌ๐Ÿฟ


@hezhijie0327 icon added, but you need to add regular matches to pr

github-actions bot pushed a commit that referenced this pull request Jul 29, 2025
### [Version&nbsp;1.105.2](v1.105.1...v1.105.2)
<sup>Released on **2025-07-29**</sup>

#### โ™ป Code Refactoring

- **misc**: Clean mcp sitemap, refactor jose-JWT to xor obfuscation.

#### ๐Ÿ’„ Styles

- **misc**: Add more OpenAI SDK Text2Image providers, update i18n.

<br/>

<details>
<summary><kbd>Improvements and Fixes</kbd></summary>

#### Code refactoring

* **misc**: Clean mcp sitemap, closes [#8596](#8596) ([b9e3e66](b9e3e66))
* **misc**: Refactor jose-JWT to xor obfuscation, closes [#8595](#8595) ([be98d56](be98d56))

#### Styles

* **misc**: Add more OpenAI SDK Text2Image providers, closes [#8573](#8573) ([403aebd](403aebd))
* **misc**: Update i18n, closes [#8593](#8593) ([356cf0c](356cf0c))

</details>

<div align="right">

[![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)

</div>
@lobehubbot
Copy link
Member

๐ŸŽ‰ This PR is included in version 1.105.2 ๐ŸŽ‰

The release is available on:

Your semantic-release bot ๐Ÿ“ฆ๐Ÿš€

github-actions bot pushed a commit to jaworldwideorg/OneJA-Bot that referenced this pull request Jul 29, 2025
### [Version&nbsp;1.104.1](v1.104.0...v1.104.1)
<sup>Released on **2025-07-29**</sup>

#### โ™ป Code Refactoring

- **misc**: Clean mcp sitemap, refactor jose-JWT to xor obfuscation.

#### ๐Ÿ’„ Styles

- **misc**: Add more OpenAI SDK Text2Image providers, support more Text2Image from Qwen, update i18n.

<br/>

<details>
<summary><kbd>Improvements and Fixes</kbd></summary>

#### Code refactoring

* **misc**: Clean mcp sitemap, closes [lobehub#8596](https://github.com/jaworldwideorg/OneJA-Bot/issues/8596) ([b9e3e66](b9e3e66))
* **misc**: Refactor jose-JWT to xor obfuscation, closes [lobehub#8595](https://github.com/jaworldwideorg/OneJA-Bot/issues/8595) ([be98d56](be98d56))

#### Styles

* **misc**: Add more OpenAI SDK Text2Image providers, closes [lobehub#8573](https://github.com/jaworldwideorg/OneJA-Bot/issues/8573) ([403aebd](403aebd))
* **misc**: Support more Text2Image from Qwen, closes [lobehub#8574](https://github.com/jaworldwideorg/OneJA-Bot/issues/8574) ([b8c0e2d](b8c0e2d))
* **misc**: Update i18n, closes [lobehub#8593](https://github.com/jaworldwideorg/OneJA-Bot/issues/8593) ([356cf0c](356cf0c))

</details>

<div align="right">

[![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)

</div>
@hezhijie0327 hezhijie0327 deleted the text2image branch July 29, 2025 09:20
bbbugg pushed a commit to bbbugg/lobe-chat that referenced this pull request Aug 14, 2025
bbbugg pushed a commit to bbbugg/lobe-chat that referenced this pull request Aug 14, 2025
### [Version&nbsp;1.105.2](lobehub/lobe-chat@v1.105.1...v1.105.2)
<sup>Released on **2025-07-29**</sup>

#### โ™ป Code Refactoring

- **misc**: Clean mcp sitemap, refactor jose-JWT to xor obfuscation.

#### ๐Ÿ’„ Styles

- **misc**: Add more OpenAI SDK Text2Image providers, update i18n.

<br/>

<details>
<summary><kbd>Improvements and Fixes</kbd></summary>

#### Code refactoring

* **misc**: Clean mcp sitemap, closes [lobehub#8596](lobehub#8596) ([9715349](lobehub@9715349))
* **misc**: Refactor jose-JWT to xor obfuscation, closes [lobehub#8595](lobehub#8595) ([06b7164](lobehub@06b7164))

#### Styles

* **misc**: Add more OpenAI SDK Text2Image providers, closes [lobehub#8573](lobehub#8573) ([221488e](lobehub@221488e))
* **misc**: Update i18n, closes [lobehub#8593](lobehub#8593) ([89d4059](lobehub@89d4059))

</details>

<div align="right">

[![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)

</div>
cy948 pushed a commit to cy948/lobe-chat that referenced this pull request Aug 23, 2025
cy948 pushed a commit to cy948/lobe-chat that referenced this pull request Aug 23, 2025
### [Version&nbsp;1.105.2](lobehub/lobe-chat@v1.105.1...v1.105.2)
<sup>Released on **2025-07-29**</sup>

#### โ™ป Code Refactoring

- **misc**: Clean mcp sitemap, refactor jose-JWT to xor obfuscation.

#### ๐Ÿ’„ Styles

- **misc**: Add more OpenAI SDK Text2Image providers, update i18n.

<br/>

<details>
<summary><kbd>Improvements and Fixes</kbd></summary>

#### Code refactoring

* **misc**: Clean mcp sitemap, closes [lobehub#8596](lobehub#8596) ([b9e3e66](lobehub@b9e3e66))
* **misc**: Refactor jose-JWT to xor obfuscation, closes [lobehub#8595](lobehub#8595) ([be98d56](lobehub@be98d56))

#### Styles

* **misc**: Add more OpenAI SDK Text2Image providers, closes [lobehub#8573](lobehub#8573) ([403aebd](lobehub@403aebd))
* **misc**: Update i18n, closes [lobehub#8593](lobehub#8593) ([356cf0c](lobehub@356cf0c))

</details>

<div align="right">

[![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)

</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
๐ŸŒ  Feature Request New feature or request | ็‰นๆ€งไธŽๅปบ่ฎฎ released size:XL This PR changes 500-999 lines, ignoring generated files.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants