()
| 231 | |
| 232 | |
| 233 | def get_vision_language_model_path() -> str: |
| 234 | path = os.environ.get(VLM_MODEL_PATH_ENV_VAR) |
| 235 | if not path: |
| 236 | raise EnvironmentError( |
| 237 | f"Please set `export {VLM_MODEL_PATH_ENV_VAR}=<your_model_dir>` before running this test." |
| 238 | ) |
| 239 | return path |
| 240 | |
| 241 | |
| 242 | def get_alternative_vision_language_model_path() -> str: |