From ee557a45623f6565393c875b37d4ac902009641b Mon Sep 17 00:00:00 2001 From: Ido Salomon Date: Wed, 10 Dec 2025 02:41:42 +0200 Subject: [PATCH] fix: ui/message accepts message array --- specification/draft/apps.mdx | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/specification/draft/apps.mdx b/specification/draft/apps.mdx index 112fea5c..7c8d8a3b 100644 --- a/specification/draft/apps.mdx +++ b/specification/draft/apps.mdx @@ -506,10 +506,12 @@ Host SHOULD open the URL in the user's default browser or a new tab. method: "ui/message", params: { role: "user", - content: { - type: "text", - text: string - } + content: [ + { + type: "text", + text: string + } + ] } }