diff --git a/docs/api_documentation.md b/docs/api_documentation.md index 7767e49..264ad79 100644 --- a/docs/api_documentation.md +++ b/docs/api_documentation.md @@ -37,6 +37,9 @@ | recipe_container_command_args | string | No | Container init arguments to pass. Each recipe has specific container arguments that it expects. See the Blueprint Arguments section below for details. Example: `["--model","$(Model_Path)","--tensor-parallel-size","$(tensor_parallel_size)"]` | | recipe_container_env | string | No | Values of the recipe container init arguments. See the Blueprint Arguments section below for details. Example: `[{"key": "tensor_parallel_size","value": "2"},{"key": "model_name","value": "NousResearch/Meta-Llama-3.1-8B-Instruct"},{"key": "Model_Path","value": "/models/NousResearch/Meta-Llama-3.1-8B-Instruct"}]` | | skip_capacity_validation | boolean | No | Determines whether validation checks on shape capacity are performed before initiating deployment. If your deployment is failing validation due to capacity errors but you believe this not to be true, you should set `skip_capacity_validation` to be `true` in the recipe JSON to bypass all checks for Shape capacity. | +| "recipe_worker_subnet_nsg_ocid" | string | No | OCID of network security group for worker node communication (if exists) | +| "recipe_pod_subnet_ocid" | string | No | OCID of pod subnet (if exists or is different from worker nodes) | +| "recipe_pod_subnet_nsg_ocid" | string | No | OCID of network security group for pod subnet (if exists) | For autoscaling parameters, visit [autoscaling](sample_blueprints/model_serving/auto_scaling/README.md).