Get phi example root
(llm_root, llm_venv)
| 34 | |
| 35 | @pytest.fixture(scope="module") |
| 36 | def phi_example_root(llm_root, llm_venv): |
| 37 | "Get phi example root" |
| 38 | example_root = os.path.join(llm_root, "examples", "models", "core", "phi") |
| 39 | llm_venv.run_cmd([ |
| 40 | "-m", "pip", "install", "-r", |
| 41 | os.path.join(example_root, "requirements.txt") |
| 42 | ]) |
| 43 | |
| 44 | return example_root |
| 45 | |
| 46 | |
| 47 | @skip_post_blackwell |