We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Implement a command to help user import local gguf file to cortex.cpp Epic #1154
The import subcommand is added to the models command with the following options:
import
models
--model_id
--model_path
To import a model, users can now use the following command:
./your_cli_app models import --model_id <unique_model_id> --model_path /path/to/your/model.gguf
The text was updated successfully, but these errors were encountered:
nguyenhoangthuan99
Successfully merging a pull request may close this issue.
Implement a command to help user import local gguf file to cortex.cpp
Epic #1154
CLI Setup
The
import
subcommand is added to themodels
command with the following options:--model_id
: A required option to specify the unique identifier for the imported model--model_path
: A required option to specify the absolute path to the GGUF model fileUsage
To import a model, users can now use the following command:
The text was updated successfully, but these errors were encountered: