From 7ca4d3bbcec72be649e1294a768bdf3707a5f518 Mon Sep 17 00:00:00 2001 From: Morgan Chen Date: Thu, 6 Jun 2024 12:51:58 -0700 Subject: [PATCH] fix bad end tags --- vertexai/VertexAISnippets/VertexAISnippets.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vertexai/VertexAISnippets/VertexAISnippets.swift b/vertexai/VertexAISnippets/VertexAISnippets.swift index 6e1f4f5..ab871d5 100644 --- a/vertexai/VertexAISnippets/VertexAISnippets.swift +++ b/vertexai/VertexAISnippets/VertexAISnippets.swift @@ -97,7 +97,7 @@ class Snippets { print(text) } } - // [START text_gen_text_only_prompt_streaming] + // [END text_gen_text_only_prompt_streaming] } func sendTextOnlyPromt() async throws { @@ -110,7 +110,7 @@ class Snippets { if let text = response.text { print(text) } - // [START text_gen_text_only_prompt] + // [END text_gen_text_only_prompt] } func sendMultimodalPromptStreaming() async throws {