From 6d4e3a2be3e4797c2bf5dc6be7801a3965ad94e4 Mon Sep 17 00:00:00 2001 From: Yuan Tang Date: Thu, 20 Mar 2025 15:14:30 -0400 Subject: [PATCH] Fix commit Signed-off-by: Yuan Tang --- docs/_static/llama-stack-spec.html | 6 ++++++ docs/_static/llama-stack-spec.yaml | 4 ++++ 2 files changed, 10 insertions(+) diff --git a/docs/_static/llama-stack-spec.html b/docs/_static/llama-stack-spec.html index 3e3ca723f..cd514668f 100644 --- a/docs/_static/llama-stack-spec.html +++ b/docs/_static/llama-stack-spec.html @@ -4062,6 +4062,12 @@ "repetition_penalty": { "type": "number", "default": 1.0 + }, + "stop": { + "type": "array", + "items": { + "type": "string" + } } }, "additionalProperties": false, diff --git a/docs/_static/llama-stack-spec.yaml b/docs/_static/llama-stack-spec.yaml index 6261e9987..6c96c3805 100644 --- a/docs/_static/llama-stack-spec.yaml +++ b/docs/_static/llama-stack-spec.yaml @@ -2793,6 +2793,10 @@ components: repetition_penalty: type: number default: 1.0 + stop: + type: array + items: + type: string additionalProperties: false required: - strategy