Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/hyperpod_cli/validators/job_validator.py
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,8 @@ def validate_recipe_file(recipe: str):
elif "nova" in model_type and "evaluation" in recipe_data:
NovaEvaluationRecipeSchema(**recipe_data)
elif "nova" in model_type:
NovaRecipeSchema(**recipe_data)
return True # skip for beta release
# NovaRecipeSchema(**recipe_data)
else:
raise Exception("Unsupported model_type {model_type}. Make sure the recipe exists in src/hyperpod_cli/sagemaker_hyperpod_recipes/recipes_collection/recipes")
return True
Expand Down