-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for http, https and file pulls
Summary by Sourcery Add support for pulling models using http, https, and file URLs, enabling direct execution of models from web or local sources. Update documentation and add tes ts to cover the new functionality. New Features: Add support for pulling models using http, https, and file URLs, allowing mo dels to be run directly from web sources or local files. Enhancements: Refactor the symlink creation process to use os.symlink directly instead of run_cmd. Documentation: Update documentation to include new URL syntax support for http, https, and file protocols, explaining how models can be pulled from these sources. Tests: Add system tests to verify the functionality of pulling models using file an d https URLs, ensuring they can be listed and removed correctly. Signed-off-by: Daniel J Walsh <[email protected]>
- Loading branch information
Showing
9 changed files
with
146 additions
and
41 deletions.
There are no files selected for viewing
This file contains 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 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 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 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 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 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,45 @@ | ||
import os | ||
from ramalama.common import download_file | ||
from ramalama.model import Model | ||
|
||
|
||
class URL(Model): | ||
def __init__(self, model): | ||
self.type = "" | ||
for prefix in ["file", "http", "https"]: | ||
if model.startswith(f"{prefix}://"): | ||
self.type = prefix | ||
model = model.removeprefix(f"{prefix}://") | ||
break | ||
|
||
super().__init__(model) | ||
split = self.model.rsplit("/", 1) | ||
self.directory = split[0].removeprefix("/") if len(split) > 1 else "" | ||
self.filename = split[1] if len(split) > 1 else split[0] | ||
|
||
def pull(self, args): | ||
model_path = self.model_path(args) | ||
directory_path = os.path.join(args.store, "repos", self.type, self.directory, self.filename) | ||
os.makedirs(directory_path, exist_ok=True) | ||
|
||
symlink_dir = os.path.dirname(model_path) | ||
os.makedirs(symlink_dir, exist_ok=True) | ||
|
||
target_path = os.path.join(directory_path, self.filename) | ||
|
||
if self.type == "file": | ||
if not os.path.exists(self.model): | ||
raise FileNotFoundError(f"{self.model} no such file") | ||
os.symlink(self.model, os.path.join(symlink_dir, self.filename)) | ||
os.symlink(self.model, target_path) | ||
else: | ||
url = self.type + "://" + self.model | ||
# Download the model file to the target path | ||
download_file(url, target_path, headers={}, show_progress=True) | ||
relative_target_path = os.path.relpath(target_path, start=os.path.dirname(model_path)) | ||
if self.check_valid_model_path(relative_target_path, model_path): | ||
# Symlink is already correct, no need to update it | ||
return model_path | ||
os.symlink(relative_target_path, model_path) | ||
|
||
return model_path |
This file contains 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 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 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