-
Notifications
You must be signed in to change notification settings - Fork 73
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
feat: add enableImportFromHuggingFace
option
#2709
feat: add enableImportFromHuggingFace
option
#2709
Conversation
Your org requires the Graphite merge queue for merging into mainAdd the label “flow:merge-queue” to the PR and Graphite will automatically add it to the merge queue when it’s ready to merge. Or use the label “flow:hotfix” to add to the merge queue as a hot fix. You must have a Graphite account and log in to Graphite in order to use the merge queue. Sign up using this link. |
This stack of pull requests is managed by Graphite. Learn more about stacking. Join @agatha197 and the rest of your teammates on Graphite |
77422f2
to
f9c9efd
Compare
3b0ef99
to
96dce7b
Compare
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.
LGTM
f9c9efd
to
d57d172
Compare
96dce7b
to
b4b1ee2
Compare
Merge activity
|
# Add support for importing models from Hugging Face This PR introduces a new feature that allows users to import models from Hugging Face. The changes include: - Added a new configuration option `enableImportFromHuggingFace` in `config.toml.sample` - Updated the `BackendAIConfig` type to include the new configuration option - Modified the `VFolderListPage` component to conditionally render the "Import from Hugging Face" button based on the new configuration - Updated the `BackendAILogin` component to handle the new configuration option and pass it to the global client configuration **Checklist:** - [ ] Documentation: Update user documentation to explain the new feature and how to enable it - [x] Minimum required manager version: Backend.AI 24.09 - [x] Test case: Verify that the "Import from Hugging Face" button appears when `enableImportFromHuggingFace` is set to true and is hidden when set to false
d57d172
to
c333321
Compare
b4b1ee2
to
be6db95
Compare
Add support for importing models from Hugging Face
This PR introduces a new feature that allows users to import models from Hugging Face. The changes include:
enableImportFromHuggingFace
inconfig.toml.sample
BackendAIConfig
type to include the new configuration optionVFolderListPage
component to conditionally render the "Import from Hugging Face" button based on the new configurationBackendAILogin
component to handle the new configuration option and pass it to the global client configurationChecklist:
enableImportFromHuggingFace
is set to true and is hidden when set to false