-
-
Notifications
You must be signed in to change notification settings - Fork 98
💄 style: support v0 (Vercel) provider & model icons #124
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 the v0 (Vercel) provider and its model icons by extending the provider enum, introducing a combined Vercel & V0 icon entry in provider mappings, and adding a V0 model icon mapping. ER diagram for provider and model icon mappings with V0 supporterDiagram
MODEL_PROVIDER ||--o{ PROVIDER_MAPPING : maps
MODEL_PROVIDER ||--o{ MODEL_MAPPING : maps
PROVIDER_MAPPING {
string Icon
string Combine
float combineMultiple
string[] keywords
}
MODEL_MAPPING {
string Icon
string[] keywords
}
MODEL_PROVIDER {
string name
}
Class diagram for updated ModelProvider enum and icon mappingsclassDiagram
class ModelProvider {
+TencentCloud
+TogetherAI
+Upstage
+V0
+VLLM
+VertexAI
+Volcengine
...
}
class ProviderMapping {
+Icon
+Combine
+combineMultiple
+keywords
}
class ModelMapping {
+Icon
+keywords
}
ModelProvider <.. ProviderMapping : keywords
ModelProvider <.. ModelMapping : keywords
ProviderMapping o-- Vercel : Icon
ProviderMapping o-- V0 : Combine, Icon
ModelMapping o-- V0 : Icon
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
👍 @hezhijie0327 |
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #124 +/- ##
=========================================
+ Coverage 0.00% 3.12% +3.12%
=========================================
Files 520 1514 +994
Lines 13448 33577 +20129
Branches 520 1514 +994
=========================================
+ Hits 0 1048 +1048
- Misses 12928 32063 +19135
+ Partials 520 466 -54 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
commit: |
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.
Hey @hezhijie0327 - I've reviewed your changes and they look great!
Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.
❤️ Great PR @hezhijie0327 ❤️ |
## [Version 2.5.0](v2.4.0...v2.5.0) <sup>Released on **2025-06-20**</sup> #### ✨ Features - **auto**: Auto build static icons. #### 💄 Styles - **misc**: Support v0 (Vercel) provider & model icons. <br/> <details> <summary><kbd>Improvements and Fixes</kbd></summary> #### What's improved * **auto**: Auto build static icons ([49adad2](49adad2)) #### Styles * **misc**: Support v0 (Vercel) provider & model icons, closes [#124](#124) ([019f7b6](019f7b6)) </details> <div align="right"> [](#readme-top) </div>
🎉 This PR is included in version 2.5.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
🎉 This PR is included in version 1.48.0 🎉 The release is available on npm package (@latest dist-tag) Your semantic-release bot 📦🚀 |
## [Version 1.49.0](https://github.com/lobehub/lobe-icons/compare/@lobehub/[email protected]...@lobehub/[email protected]) <sup>Released on **2025-06-23**</sup> #### ✨ Features - **auto**: Auto build static icons. #### 💄 Styles - **misc**: Support v0 (Vercel) provider & model icons, Update Dify and ComfyUI new Brand Logo. <br/> <details> <summary><kbd>Improvements and Fixes</kbd></summary> #### What's improved * **auto**: Auto build static icons ([a6bc41c](a6bc41c)) #### Styles * **misc**: Support v0 (Vercel) provider & model icons, closes [#124](#124) ([019f7b6](019f7b6)) * **misc**: Update Dify and ComfyUI new Brand Logo ([a8e6d46](a8e6d46)) </details> <div align="right"> [](#readme-top) </div>
🎉 This PR is included in version 1.49.0 🎉 The release is available on npm package (@latest dist-tag) Your semantic-release bot 📦🚀 |
## [Version 1.48.0](https://github.com/lobehub/lobe-icons/compare/@lobehub/[email protected]...@lobehub/[email protected]) <sup>Released on **2025-06-23**</sup> #### ✨ Features - **auto**: Auto build static icons. #### 💄 Styles - **misc**: Support v0 (Vercel) provider & model icons, Update Dify and ComfyUI new Brand Logo. <br/> <details> <summary><kbd>Improvements and Fixes</kbd></summary> #### What's improved * **auto**: Auto build static icons ([a6bc41c](a6bc41c)) #### Styles * **misc**: Support v0 (Vercel) provider & model icons, closes [#124](#124) ([019f7b6](019f7b6)) * **misc**: Update Dify and ComfyUI new Brand Logo ([a8e6d46](a8e6d46)) </details> <div align="right"> [](#readme-top) </div>
🎉 This PR is included in version 1.48.0 🎉 The release is available on npm package (@latest dist-tag) Your semantic-release bot 📦🚀 |
💻 变更类型 | Change Type
🔀 变更说明 | Description of Change
📝 补充信息 | Additional Information
Summary by Sourcery
Add support for the new v0 (Vercel) provider and model icons
Enhancements: