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.
Describe Your Changes
This pull request updates various references to the
tinyllama:gguf
model to use thetinyllama:1b
model instead. The changes span across multiple test files and configurations.Model Reference Updates:
docs/static/openapi/cortex.json
: Updated the example model identifier fromtinyllama:gguf
totinyllama:1b
.Test Files:
engine/e2e-test/api/model/test_api_model.py
: Replaced all occurrences oftinyllama:gguf
withtinyllama:1b
in thetest_models_start_stop_should_be_successful
method. [1] [2] [3]engine/e2e-test/api/model/test_api_model_import.py
: Updated the model identifier in multiple test methods totinyllama:1b
. [1] [2]engine/e2e-test/cli/model/test_cli_model.py
: Changed the model identifier totinyllama:1b
in CLI tests. [1] [2]engine/e2e-test/local_test.py
: Modified the model identifier totinyllama:1b
in setup and teardown configurations. [1] [2] [3] [4]engine/e2e-test/test_api_docker.py
: Updated therepo_branches
list to includetinyllama:1b
instead oftinyllama:gguf
.engine/e2e-test/utils/test_runner.py
: Changed the default model ID in thepull_model_if_needed
function totinyllama:1b
.C++ Test Files:
engine/test/components/test_event.cc
: Updated the model ID in theEventFromString
test totinyllama:1b
.engine/test/components/test_huggingface_utils.cc
: Modified the expected branches in theTestGetModelRepositoryBranches
test to reflect the new model identifiertinyllama:1b
.Fixes Issues
Self Checklist