mirror of
https://github.com/meta-llama/llama-stack.git
synced 2026-01-08 05:31:31 +00:00
report
This commit is contained in:
parent
edf56884a7
commit
684de1e6fd
1 changed files with 15 additions and 0 deletions
|
|
@ -29,6 +29,21 @@ def pytest_addoption(parser):
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
TEXT_MODEL = "meta-llama/Llama-3.1-8B-Instruct"
|
||||||
|
INFERENCE_MODEL = "meta-llama/Llama-3.2-11B-Vision-Instruct"
|
||||||
|
|
||||||
|
if config.getoption("--output"):
|
||||||
|
config.pluginmanager.register(Report())
|
||||||
|
|
||||||
|
|
||||||
|
def pytest_addoption(parser):
|
||||||
|
parser.addoption(
|
||||||
|
"--output",
|
||||||
|
action="store_false",
|
||||||
|
help="Knob to determine if we should generate report, e.g. --output=True",
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
TEXT_MODEL = "meta-llama/Llama-3.1-8B-Instruct"
|
TEXT_MODEL = "meta-llama/Llama-3.1-8B-Instruct"
|
||||||
INFERENCE_MODEL = "meta-llama/Llama-3.2-11B-Vision-Instruct"
|
INFERENCE_MODEL = "meta-llama/Llama-3.2-11B-Vision-Instruct"
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue