-
Notifications
You must be signed in to change notification settings - Fork 17
Add support for modelFile generate via model providers model_url #329
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
Open
avinashsingh77
wants to merge
5
commits into
modelpack:main
Choose a base branch
from
avinashsingh77:add-hf-support
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
63558c7
Add support for HF model_url
avinashsingh77 643b5a1
optimise as per gemini's review
avinashsingh77 6d7fb90
add modelprovider interface and providers
avinashsingh77 f455aed
optimise code
avinashsingh77 7bc9afd
Merge branch 'main' into add-hf-support
avinashsingh77 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,127 @@ | ||
| /* | ||
| * Copyright 2025 The CNAI Authors | ||
| * | ||
| * Licensed under the Apache License, Version 2.0 (the "License"); | ||
| * you may not use this file except in compliance with the License. | ||
| * You may obtain a copy of the License at | ||
| * | ||
| * http://www.apache.org/licenses/LICENSE-2.0 | ||
| * | ||
| * Unless required by applicable law or agreed to in writing, software | ||
| * distributed under the License is distributed on an "AS IS" BASIS, | ||
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| * See the License for the specific language governing permissions and | ||
| * limitations under the License. | ||
| */ | ||
|
|
||
| package huggingface | ||
|
|
||
| import ( | ||
| "fmt" | ||
| "io" | ||
| "net/url" | ||
| "os" | ||
| "os/exec" | ||
| "path/filepath" | ||
| "strings" | ||
| ) | ||
|
|
||
| const ( | ||
| huggingFaceBaseURL = "https://huggingface.co" | ||
| ) | ||
|
|
||
| // parseModelURL parses a HuggingFace model URL and extracts the owner and repository name | ||
| func parseModelURL(modelURL string) (owner, repo string, err error) { | ||
| // Handle both full URLs and short-form repo names | ||
| modelURL = strings.TrimSpace(modelURL) | ||
|
|
||
| // Remove trailing slashes | ||
| modelURL = strings.TrimSuffix(modelURL, "/") | ||
|
|
||
| // If it's a full URL, parse it | ||
| if strings.HasPrefix(modelURL, "http://") || strings.HasPrefix(modelURL, "https://") { | ||
| u, err := url.Parse(modelURL) | ||
| if err != nil { | ||
| return "", "", fmt.Errorf("invalid URL: %w", err) | ||
| } | ||
|
|
||
| // Expected format: https://huggingface.co/owner/repo | ||
| parts := strings.Split(strings.Trim(u.Path, "/"), "/") | ||
| if len(parts) < 2 { | ||
| return "", "", fmt.Errorf("invalid HuggingFace URL format, expected https://huggingface.co/owner/repo") | ||
| } | ||
|
|
||
| owner = parts[0] | ||
| repo = parts[1] | ||
| } else { | ||
| // Handle short-form like "owner/repo" | ||
| parts := strings.Split(modelURL, "/") | ||
| if len(parts) != 2 { | ||
| return "", "", fmt.Errorf("invalid model identifier, expected format: owner/repo") | ||
| } | ||
|
|
||
| owner = parts[0] | ||
| repo = parts[1] | ||
| } | ||
|
|
||
| if owner == "" || repo == "" { | ||
| return "", "", fmt.Errorf("owner and repository name cannot be empty") | ||
| } | ||
|
|
||
| return owner, repo, nil | ||
| } | ||
|
|
||
| // checkHuggingFaceAuth checks if the user is authenticated with HuggingFace | ||
| func checkHuggingFaceAuth() error { | ||
| // Try to find the HF token | ||
| token := os.Getenv("HF_TOKEN") | ||
| if token != "" { | ||
| return nil | ||
| } | ||
|
|
||
| // Check if the token file exists | ||
| homeDir, err := os.UserHomeDir() | ||
| if err != nil { | ||
| return fmt.Errorf("failed to get user home directory: %w", err) | ||
| } | ||
|
|
||
| tokenPath := filepath.Join(homeDir, ".huggingface", "token") | ||
| if _, err := os.Stat(tokenPath); err == nil { | ||
| return nil | ||
| } | ||
|
|
||
| // Try using whoami command | ||
| if _, err := exec.LookPath("huggingface-cli"); err == nil { | ||
| cmd := exec.Command("huggingface-cli", "whoami") | ||
| cmd.Stdout = io.Discard | ||
| cmd.Stderr = io.Discard | ||
| if err := cmd.Run(); err == nil { | ||
| return nil | ||
| } | ||
| } | ||
|
|
||
| return fmt.Errorf("not authenticated with HuggingFace. Please run: huggingface-cli login") | ||
| } | ||
|
|
||
| // getToken retrieves the HuggingFace token from environment or token file | ||
| func getToken() (string, error) { | ||
| // First check environment variable | ||
| token := os.Getenv("HF_TOKEN") | ||
| if token != "" { | ||
| return token, nil | ||
| } | ||
|
|
||
| // Then check the token file | ||
| homeDir, err := os.UserHomeDir() | ||
| if err != nil { | ||
| return "", fmt.Errorf("failed to get user home directory: %w", err) | ||
| } | ||
|
|
||
| tokenPath := filepath.Join(homeDir, ".huggingface", "token") | ||
| data, err := os.ReadFile(tokenPath) | ||
| if err != nil { | ||
| return "", fmt.Errorf("failed to read token file: %w", err) | ||
| } | ||
|
|
||
| return strings.TrimSpace(string(data)), nil | ||
| } |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Do we need to consider expose this temp dir to user? because in some limited environment, user may only have write access to specific dirs.
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.
Do you want users to specify which directory should be used to download models directly? As we are providing
""as thedirparameter's value toos.MkdirTemp, MkdirTemp uses the default directory for temporary files, as returned byTempDir.