From a0f18e67ca38850010c3d35024250fa17786a846 Mon Sep 17 00:00:00 2001 From: Mark Daoust Date: Wed, 17 Jul 2024 14:58:44 -0700 Subject: [PATCH] Fix region tag. --- samples/FunctionCalling.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/FunctionCalling.swift b/samples/FunctionCalling.swift index 020d5d4..d4fe423 100644 --- a/samples/FunctionCalling.swift +++ b/samples/FunctionCalling.swift @@ -31,7 +31,7 @@ final class FunctionCallingSnippets: XCTestCase { } func testFunctionCalling() async throws { - // [BEGIN function_calling] + // [START function_calling] // Calls a hypothetical API to control a light bulb and returns the values that were set. func controlLight(brightness: Double, colorTemperature: String) -> JSONObject { return ["brightness": .number(brightness), "colorTemperature": .string(colorTemperature)]