From a0df5e00fed7b4c984e7bce8c8d28c3b4b9886a1 Mon Sep 17 00:00:00 2001 From: Kevin Hermawan <84965338+kevinhermawan@users.noreply.github.com> Date: Sat, 28 Sep 2024 23:21:30 +0700 Subject: [PATCH] chore(Playground): adds multimodal example to OpenAI-compatible section (#3) --- Playground/Playground/Views/AppView.swift | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Playground/Playground/Views/AppView.swift b/Playground/Playground/Views/AppView.swift index 67411a3..031ac52 100644 --- a/Playground/Playground/Views/AppView.swift +++ b/Playground/Playground/Views/AppView.swift @@ -54,6 +54,13 @@ struct AppView: View { } } + NavigationLink("Multimodal") { + MultimodalView() + .onAppear { + viewModel.isUsingCustomApi = true + } + } + NavigationLink("Tool Calling") { ToolCallingView() .onAppear {