{"id":1694,"date":"2026-06-30T16:46:00","date_gmt":"2026-06-30T16:46:00","guid":{"rendered":"https:\/\/futurenews24.com\/index.php\/2026\/06\/30\/build-generative-ui-for-ai-agents-on-amazon-bedrock-agentcore-with-the-ag-ui-protocol\/"},"modified":"2026-06-30T16:59:09","modified_gmt":"2026-06-30T16:59:09","slug":"build-generative-ui-for-ai-agents-on-amazon-bedrock-agentcore-with-the-ag-ui-protocol","status":"publish","type":"post","link":"https:\/\/futurenews24.com\/index.php\/2026\/06\/30\/build-generative-ui-for-ai-agents-on-amazon-bedrock-agentcore-with-the-ag-ui-protocol\/","title":{"rendered":"Construct generative UI for AI brokers on Amazon Bedrock AgentCore with the AG-UI protocol"},"content":{"rendered":"<p><br \/>\n<\/p>\n<div id=\"\">\n<p>AI brokers can do greater than chat. With the precise protocol, an agent can render an interactive chart inline in your dialog, replace a shared canvas in actual time, or pause mid-execution to ask to your approval earlier than continuing. These interactions (generative UI, shared state, and human-in-the-loop) want a normal method for agent backends to speak dynamic occasions to frontends.<\/p>\n<p>AG-UI (Agent-Consumer Interplay Protocol) is an open protocol that defines this customary. It really works with a number of agent frameworks (Strands Brokers, LangGraph, CrewAI) and frontend libraries (React, Angular, Vue). With AG-UI, your agent code and your frontend code keep decoupled. You choose the most effective framework to your backend and the most effective library to your frontend, and AG-UI connects them.<\/p>\n<p>Amazon Bedrock AgentCore is a part of the Amazon Bedrock household of providers for generative AI. AgentCore is an agentic platform for constructing, deploying, and working AI brokers securely at scale, utilizing any framework and any mannequin.<\/p>\n<p>This put up walks by way of how AG-UI integrates into the Fullstack AgentCore Resolution Template (FAST) to construct interactive agent frontends on Amazon Bedrock AgentCore. We then present how CopilotKit extends this with generative UI, shared state, and human-in-the-loop interactions, all deployed on Amazon Bedrock AgentCore.<\/p>\n<h2 id=\"overview-of-solution\">Overview of answer<\/h2>\n<p>Amazon Bedrock AgentCore Runtime gives a safe, serverless, and purpose-built internet hosting atmosphere for deploying and operating AI brokers or instruments. AgentCore Runtime helps a number of agent protocols. Mannequin Context Protocol (MCP) connects brokers to instruments, Agent2Agent (A2A) connects brokers to different brokers, and AG-UI connects brokers to customers. While you deploy an agent container with the AG-UI protocol flag, AgentCore acts as a clear proxy. It handles authentication (Signature Model 4 [SigV4] or OAuth 2.0 by way of Amazon Cognito), session isolation, scaling, and observability. Your container exposes POST \/invocations for AG-UI requests and GET \/ping for well being checks on port 8080. AgentCore passes requests by way of unchanged. For extra particulars, see Deploy AGUI servers in AgentCore Runtime.<\/p>\n<p>FAST is a ready-to-deploy starter challenge. It connects AgentCore Runtime, Gateway, Identification, Reminiscence, and Code Interpreter with a React frontend and Amazon Cognito authentication, all outlined with AWS Cloud Growth Equipment (AWS CDK). It ships with agent patterns for Strands Brokers, LangGraph, and the Claude Agent SDK. FAST v0.4.1 added two AG-UI patterns (agui-strands-agent and agui-langgraph-agent) that share a single frontend parser. For a full walkthrough of FAST\u2019s structure and deployment, see Speed up agentic software improvement with a full-stack starter template for Amazon Bedrock AgentCore.<\/p>\n<p>The answer has two layers. AG-UI in FAST gives two new agent patterns and a single frontend parser that handles each, so the frontend doesn\u2019t must know which agent framework is operating. CopilotKit + FAST is a standalone pattern that replaces FAST\u2019s built-in chat UI with CopilotKit. It provides generative UI (inline charts and parts), bidirectional shared state (a todo canvas), and human-in-the-loop interactions (a gathering scheduler that pauses the agent and waits to your enter). Each layers deploy on AgentCore Runtime with Cognito authentication, AgentCore Gateway for MCP software connectivity, and AgentCore Reminiscence for persistent conversations.<\/p>\n<div id=\"attachment_134423\" style=\"width: 3335px\" class=\"wp-caption alignnone\">\n        <img decoding=\"async\" aria-describedby=\"caption-attachment-134423\" class=\"wp-image-134423 size-full\" src=\"https:\/\/d2908q01vomqb2.cloudfront.net\/f1f836cb4ea6efb2a0b1b99f41ad8b103eff4b59\/2026\/06\/25\/ml-20863-img1.png\" alt=\"Architecture overview. The frontend communicates with AgentCore Runtime through AG-UI events. AgentCore handles auth, scaling, and session isolation. The agent runtime translates framework-specific events into the AG-UI protocol.\" width=\"3325\" height=\"2765\"\/><\/p>\n<p id=\"caption-attachment-134423\" class=\"wp-caption-text\">Structure overview. The frontend communicates with AgentCore Runtime by way of AG-UI occasions. AgentCore handles auth, scaling, and session isolation. The agent runtime interprets framework-specific occasions into the AG-UI protocol.<\/p>\n<\/p><\/div>\n<h2 id=\"walkthrough\">Walkthrough<\/h2>\n<p>This walkthrough has two components. First, we present how the AG-UI patterns work in FAST and the way a single frontend parser handles each Strands and LangGraph backends. Second, we deploy the CopilotKit pattern to display generative UI, shared state, and human-in-the-loop on AgentCore.<\/p>\n<p>Supply code:<\/p>\n<h3 id=\"prerequisites\">Conditions<\/h3>\n<p>For this walkthrough, you must have the next conditions:<\/p>\n<p>        An AWS account with permissions for AWS CloudFormation, Amazon Elastic Container Registry (Amazon ECR), Amazon Bedrock AgentCore, Amazon Cognito, and AWS Amplify.<br \/>\n        AWS Command Line Interface (AWS CLI) v2 put in and configured.<br \/>\n        AWS CDK put in.<br \/>\n        Node.js 18 or later and Python 3.11 or later.<br \/>\n        Docker operating, for container builds.<br \/>\n        Mannequin entry enabled within the Amazon Bedrock console for the mannequin the agent makes use of.<\/p>\n<h3 id=\"ag-ui-in-fast-one-parser-two-frameworks\">AG-UI in FAST: One parser, two frameworks<\/h3>\n<p>The agui-strands-agent sample wraps a Strands Agent in StrandsAgent from the ag-ui-strands library. The wrapper interprets Strands streaming occasions into AG-UI Server-Despatched Occasions routinely.<\/p>\n<p>Every request creates a contemporary agent with Gateway MCP instruments. AgentCore Reminiscence is hooked up per thread by way of a session-manager supplier, so dialog historical past persists throughout AgentCore Runtime scaling. Reminiscence is opt-in: the supplier returns None when MEMORY_ID is unset:<\/p>\n<div>\n        # patterns\/agui-strands-agent\/agent.py<br \/>\nfrom ag_ui_strands import StrandsAgent, StrandsAgentConfig<br \/>\nfrom bedrock_agentcore.runtime import BedrockAgentCoreApp, RequestContext<br \/>\nfrom strands import Agent<\/p>\n<p>app = BedrockAgentCoreApp()<\/p>\n<p># Construct the mannequin and Code Interpreter as soon as at module load<br \/>\nMODEL = BedrockModel(model_id=&#8221;us.anthropic.claude-sonnet-4-5-20250929-v1:0&#8243;)<br \/>\nCODE_INTERPRETER = StrandsCodeInterpreterTools(REGION).execute_python_securely<\/p>\n<p>@app.entrypoint<br \/>\nasync def invocations(payload: dict, context: RequestContext):<br \/>\n    input_data = RunAgentInput.model_validate(payload)<br \/>\n    actor_id = extract_user_id_from_context(context)<br \/>\n    # Recent agent per request &#8212; picks up the caller&#8217;s id and instruments<br \/>\n    agent = Agent(<br \/>\n        mannequin=MODEL,<br \/>\n        system_prompt=SYSTEM_PROMPT,<br \/>\n        instruments=[create_gateway_mcp_client(actor_id), CODE_INTERPRETER],<br \/>\n        session_manager=get_memory_session_manager(actor_id, session_id),<br \/>\n    )<br \/>\n    agui_agent = StrandsAgent(<br \/>\n        agent=agent,<br \/>\n        title=&#8221;agui_strands_agent&#8221;,<br \/>\n        config=StrandsAgentConfig(<br \/>\n            session_manager_provider=make_memory_provider(actor_id),<br \/>\n            replay_history_into_strands=False,<br \/>\n        ),<br \/>\n    )<br \/>\n    async for occasion in agui_agent.run(input_data):<br \/>\n        yield occasion.model_dump(mode=&#8221;json&#8221;, by_alias=True, exclude_none=True)\n       <\/p><\/div>\n<p>BedrockAgentCoreApp reads the AgentCore Runtime headers (WorkloadAccessToken, Authorization, Session-Id) and populates context variables, so Gateway authentication and Reminiscence work the identical method because the HTTP patterns.<\/p>\n<p>The agui-langgraph-agent sample makes use of LangGraphAGUIAgent from the copilotkit library. It builds the compiled graph contemporary on each request, so every invocation will get MCP instruments scoped to the caller. AgentCore Reminiscence is opt-in right here too: the helper returns None when MEMORY_ID is unset, so you possibly can run the sample with out provisioning Reminiscence:<\/p>\n<div>\n        # patterns\/agui-langgraph-agent\/agent.py<br \/>\nfrom copilotkit import CopilotKitMiddleware, LangGraphAGUIAgent<\/p>\n<p>async def build_graph(actor_id: str):<br \/>\n    &#8220;&#8221;&#8221;Construct a contemporary LangGraph compiled graph with Gateway instruments.&#8221;&#8221;&#8221;<br \/>\n    mcp_client = await create_gateway_mcp_client(actor_id)<br \/>\n    instruments = await mcp_client.get_tools()<br \/>\n    instruments.append(CODE_INTERPRETER)<br \/>\n    return create_agent(<br \/>\n        mannequin=MODEL,<br \/>\n        instruments=instruments,<br \/>\n        checkpointer=get_memory_saver(),  # None when MEMORY_ID is unset<br \/>\n        middleware=[CopilotKitMiddleware()],<br \/>\n        system_prompt=SYSTEM_PROMPT,<br \/>\n    )<\/p>\n<p>@app.entrypoint<br \/>\nasync def invocations(payload: dict, context: RequestContext):<br \/>\n    input_data = RunAgentInput.model_validate(payload)<br \/>\n    actor_id = extract_user_id_from_context(context)<br \/>\n    graph = await build_graph(actor_id)<br \/>\n    agui_agent = LangGraphAGUIAgent(<br \/>\n        title=&#8221;agui_langgraph_agent&#8221;,<br \/>\n        graph=graph,<br \/>\n        config={&#8220;configurable&#8221;: {&#8220;actor_id&#8221;: actor_id}},<br \/>\n    )<br \/>\n    async for occasion in agui_agent.run(input_data):<br \/>\n        yield occasion.model_dump(mode=&#8221;json&#8221;, by_alias=True, exclude_none=True)\n       <\/p><\/div>\n<p>Each patterns produce the identical AG-UI occasions. The protocol defines a typed occasion stream over Server-Despatched Occasions. For instance, a single software name produces this sequence:<\/p>\n<div>\n        information: {&#8220;kind&#8221;: &#8220;RUN_STARTED&#8221;, &#8220;threadId&#8221;: &#8220;t1&#8221;, &#8220;runId&#8221;: &#8220;r1&#8221;}<br \/>\ninformation: {&#8220;kind&#8221;: &#8220;TEXT_MESSAGE_START&#8221;, &#8220;messageId&#8221;: &#8220;m1&#8221;, &#8220;function&#8221;: &#8220;assistant&#8221;}<br \/>\ninformation: {&#8220;kind&#8221;: &#8220;TEXT_MESSAGE_CONTENT&#8221;, &#8220;messageId&#8221;: &#8220;m1&#8221;, &#8220;delta&#8221;: &#8220;Let me test &#8220;}<br \/>\ninformation: {&#8220;kind&#8221;: &#8220;TEXT_MESSAGE_CONTENT&#8221;, &#8220;messageId&#8221;: &#8220;m1&#8221;, &#8220;delta&#8221;: &#8220;that for you.&#8221;}<br \/>\ninformation: {&#8220;kind&#8221;: &#8220;TEXT_MESSAGE_END&#8221;, &#8220;messageId&#8221;: &#8220;m1&#8221;}<br \/>\ninformation: {&#8220;kind&#8221;: &#8220;TOOL_CALL_START&#8221;, &#8220;toolCallId&#8221;: &#8220;tc1&#8221;, &#8220;toolCallName&#8221;: &#8220;get_weather&#8221;}<br \/>\ninformation: {&#8220;kind&#8221;: &#8220;TOOL_CALL_ARGS&#8221;, &#8220;toolCallId&#8221;: &#8220;tc1&#8221;, &#8220;delta&#8221;: &#8220;{&#8220;location&#8221;: &#8220;Seattle&#8221;}&#8221;}<br \/>\ninformation: {&#8220;kind&#8221;: &#8220;TOOL_CALL_END&#8221;, &#8220;toolCallId&#8221;: &#8220;tc1&#8221;}<br \/>\ninformation: {&#8220;kind&#8221;: &#8220;TOOL_CALL_RESULT&#8221;, &#8220;toolCallId&#8221;: &#8220;tc1&#8221;, &#8220;content material&#8221;: &#8220;{&#8220;temp&#8221;: 55}&#8221;}<br \/>\ninformation: {&#8220;kind&#8221;: &#8220;RUN_FINISHED&#8221;, &#8220;threadId&#8221;: &#8220;t1&#8221;, &#8220;runId&#8221;: &#8220;r1&#8221;}\n       <\/div>\n<p>The frontend parser maps every occasion to a frontend motion:<\/p>\n<div>\n        \/\/ frontend\/src\/lib\/agentcore-client\/parsers\/agui.ts<br \/>\nexport const parseAguiChunk: ChunkParser = (line, callback) =&gt; {<br \/>\n  if (!line.startsWith(&#8220;information: &#8220;)) return;<br \/>\n  const json = JSON.parse(line.substring(6).trim());<br \/>\n  swap (json.kind) {<br \/>\n    case &#8220;TEXT_MESSAGE_CONTENT&#8221;:<br \/>\n      callback({ kind: &#8220;textual content&#8221;, content material: json.delta ?? &#8220;&#8221; });<br \/>\n      break;<br \/>\n    case &#8220;TOOL_CALL_START&#8221;:<br \/>\n      callback({ kind: &#8220;tool_use_start&#8221;, toolUseId: json.toolCallId, title: json.toolCallName });<br \/>\n      break;<br \/>\n    case &#8220;TOOL_CALL_RESULT&#8221;:<br \/>\n      callback({ kind: &#8220;tool_result&#8221;, toolUseId: json.toolCallId, consequence: json.content material ?? &#8220;&#8221; });<br \/>\n      break;<br \/>\n    case &#8220;RUN_FINISHED&#8221;:<br \/>\n      callback({ kind: &#8220;consequence&#8221;, stopReason: &#8220;end_turn&#8221; });<br \/>\n  }<br \/>\n};\n       <\/div>\n<p>Examine this to the HTTP patterns, the place Strands, LangGraph, and Claude-agent-sdk every want a separate parser to deal with their totally different streaming codecs. With AG-UI, the backend framework is abstracted away. You may swap agui-strands-agent for agui-langgraph-agent in your configuration and the frontend doesn\u2019t change.<\/p>\n<p>To deploy, set the sample in infra-cdk\/config.yaml and run CDK:<\/p>\n<div>\n        backend:<br \/>\n  sample: agui-strands-agent  # or agui-langgraph-agent<br \/>\n  deployment_type: docker\n       <\/div>\n<div>\n        cd infra-cdk<br \/>\ncdk deploy &#8211;require-approval by no means<br \/>\npython3 ..\/scripts\/deploy-frontend.py\n       <\/div>\n<h3 id=\"copilotkit-fast-generative-ui-shared-state-and-human-in-the-loop\">CopilotKit + FAST: Generative UI, shared state, and human-in-the-loop<\/h3>\n<p>The bottom FAST frontend gives a purposeful chat interface, however AG-UI helps a lot richer interactions: brokers rendering customized UI parts, syncing state with the frontend, and pausing for person enter mid-execution. CopilotKit is a React library constructed particularly for these patterns. The CopilotKit workforce constructed a pattern software on prime of FAST that demonstrates these capabilities on AgentCore. It contains each LangGraph and Strands agent patterns, and also you choose one at deploy time.<\/p>\n<p>Generative UI spans a spectrum from excessive frontend management to excessive agent freedom. This pattern sits on the managed finish: the frontend owns prebuilt React parts, and the agent chooses which to render and provides the information over AG-UI occasions. Additional alongside the spectrum, brokers return declarative UI descriptions that the frontend renders, or full UI surfaces that the frontend embeds. AG-UI carries all three, as a result of it standardizes the occasion and state stream somewhat than the UI itself. The extra freedom you hand the agent, the extra you tackle: open-ended surfaces want sandboxing and enter validation.<\/p>\n<div id=\"attachment_134427\" style=\"width: 3010px\" class=\"wp-caption alignnone\">\n        <img decoding=\"async\" aria-describedby=\"caption-attachment-134427\" loading=\"lazy\" class=\"size-full wp-image-134427\" src=\"https:\/\/d2908q01vomqb2.cloudfront.net\/f1f836cb4ea6efb2a0b1b99f41ad8b103eff4b59\/2026\/06\/25\/ml-20863-img2-2.png\" alt=\"The CopilotKit sample architecture. The CopilotKit Runtime Lambda acts as a server-side bridge between the browser and AgentCore Runtime, handling AG-UI event parsing, generative UI routing, and authentication forwarding.\" width=\"3000\" height=\"1680\"\/><\/p>\n<p id=\"caption-attachment-134427\" class=\"wp-caption-text\">The CopilotKit pattern structure. The CopilotKit Runtime Lambda acts as a server-side bridge between the browser and AgentCore Runtime, dealing with AG-UI occasion parsing, generative UI routing, and authentication forwarding.<\/p>\n<\/p><\/div>\n<h4 id=\"generative-ui-agents-render-react-components\">Generative UI: Brokers render React parts<\/h4>\n<p>With CopilotKit, the agent renders customized React parts inline within the chat, not solely textual content. The frontend registers parts that the agent can invoke by way of AG-UI software name occasions:<\/p>\n<div>\n        \/\/ Register a pie chart the agent can render<br \/>\nuseComponent({<br \/>\n  title: &#8220;pieChart&#8221;,<br \/>\n  description: &#8220;Shows information as a pie chart.&#8221;,<br \/>\n  parameters: PieChartPropsSchema,<br \/>\n  render: PieChart,<br \/>\n});\n       <\/div>\n<p>When the agent calls the pieChart software, CopilotKit intercepts the TOOL_CALL_START and TOOL_CALL_ARGS occasions and renders the PieChart element instantly within the dialog. The agent first calls a query_data software to fetch information from a pattern comma-separated values (CSV) file, then passes the outcomes to the chart element.<\/p>\n<h4 id=\"shared-state-a-todo-canvas-synced-with-the-agent\">Shared state: A todo canvas synced with the agent<\/h4>\n<p>The pattern features a todo canvas that stays in sync between the agent and the UI bidirectionally. While you inform the agent \u201cAdd three duties: design the API, write checks, and deploy to staging,\u201d the agent calls manage_todos and the canvas updates in actual time by way of AG-UI STATE_SNAPSHOT occasions. It&#8217;s also possible to edit todos instantly within the UI. The agent sees the up to date state on its subsequent flip as a result of the Strands sample injects the present todos into the system immediate:<\/p>\n<div>\n        def state_context_builder(state: dict) -&gt; str:<br \/>\n    todos = state.get(&#8220;todos&#8221;, [])<br \/>\n    if todos:<br \/>\n        return f&#8221;nCurrent todos:n{json.dumps(todos, indent=2)}&#8221;<br \/>\n    return &#8220;&#8221;\n       <\/div>\n<h4 id=\"human-in-the-loop-the-agent-pauses-and-waits\">Human-in-the-loop: The agent pauses and waits<\/h4>\n<p>The pattern demonstrates a gathering scheduler the place the agent pauses mid-execution and renders a time picker. The person selects a time, and the agent continues with that choice:<\/p>\n<div>\n        useHumanInTheLoop({<br \/>\n  title: &#8220;scheduleTime&#8221;,<br \/>\n  description: &#8220;Schedule a gathering with the person.&#8221;,<br \/>\n  parameters: z.object({<br \/>\n    reasonForScheduling: z.string(),<br \/>\n    meetingDuration: z.quantity(),<br \/>\n  }),<br \/>\n  render: ({ reply, standing, args }) =&gt; (<\/p>\n<p>  ),<br \/>\n});\n       <\/p><\/div>\n<p>This works by way of AG-UI\u2019s software name circulation: the agent emits TOOL_CALL_START for scheduleTime, CopilotKit renders the picker as an alternative of executing a backend software, and the person\u2019s response flows again as a TOOL_CALL_RESULT.<\/p>\n<h4 id=\"deploying-the-copilotkit-sample\">Deploying the CopilotKit pattern<\/h4>\n<p>Clone the FAST Samples repository and deploy:<\/p>\n<div>\n        git clone https:\/\/github.com\/aws-samples\/sample-FAST-applications.git<br \/>\ncd sample-FAST-applications\/samples\/copilotkit-generative-ui<br \/>\ncp config.yaml.instance config.yaml<br \/>\n# Edit config.yaml &#8212; set stack_name_base and admin_user_email<br \/>\n.\/deploy-langgraph.sh  # or .\/deploy-strands.sh\n       <\/div>\n<p>The deploy script provisions the total stack: Amazon Cognito person pool, Amazon ECR repository, AgentCore Runtime, AgentCore Gateway, AgentCore Reminiscence, the CopilotKit Runtime Lambda with Amazon API Gateway, and AWS Amplify internet hosting. When it finishes, open the Amplify URL printed on the finish and log in. You\u2019ll land on the CopilotKit chat interface, the place a couple of fast checks affirm the deployment works:<\/p>\n<p>        Ask the agent for a pie chart from the pattern information. It renders inline within the dialog.<br \/>\n        Ask so as to add three duties to the todo canvas. The canvas updates in actual time.<br \/>\n        Ask to schedule a gathering. The agent pauses and exhibits a time picker.<\/p>\n<h3 id=\"cleaning-up\">Cleansing up<\/h3>\n<p>The walkthrough deploys two separate stacks. Tear down whichever you deployed in order that they cease incurring expenses.<\/p>\n<p>To take away the FAST deployment:<\/p>\n<div>\n        cd infra-cdk<br \/>\nnpx cdk destroy &#8211;all\n       <\/div>\n<p>To take away the CopilotKit pattern:<\/p>\n<div>\n        cd sample-FAST-applications\/samples\/copilotkit-generative-ui<br \/>\nnpx cdk destroy &#8211;all\n       <\/div>\n<p>If an Amazon ECR repository nonetheless holds container photos, delete it by hand, since some CDK configurations preserve repositories in place.<\/p>\n<h2 id=\"conclusion\">Conclusion<\/h2>\n<p>This put up confirmed learn how to construct interactive agent frontends on Amazon Bedrock AgentCore utilizing the AG-UI protocol. The AG-UI integration in FAST enables you to swap between Strands and LangGraph agent backends with out altering your frontend code. The CopilotKit pattern extends this with generative UI, shared state, and human-in-the-loop interactions, all operating on AgentCore with managed auth, scaling, and reminiscence.<\/p>\n<p>To be taught extra, discover the next sources:<\/p>\n<p>When you&#8217;ve got questions or suggestions, open a difficulty within the FAST repository or the FAST Samples repository.<\/p>\n<h2>In regards to the authors<\/h2>\n<div class=\"blog-author-box\">\n<div class=\"blog-author-image\">\n<p><img decoding=\"async\" loading=\"lazy\" class=\"alignleft size-full\" src=\"https:\/\/d2908q01vomqb2.cloudfront.net\/f1f836cb4ea6efb2a0b1b99f41ad8b103eff4b59\/2026\/06\/23\/ML-20863-4.png\" alt=\"Ryan Razkenari\" width=\"100\" height=\"100\"\/><\/p>\n<\/p><\/div>\n<h3 class=\"lb-h4\">Ryan Razkenari<\/h3>\n<p>Ryan is a Machine Studying Engineer on the AWS Generative AI Innovation Heart, the place he designs and builds AI options for enterprise clients. He focuses on making use of generative AI to resolve advanced enterprise challenges, with a deal with translating cutting-edge analysis into production-ready techniques.<\/p>\n<\/p><\/div>\n<div class=\"blog-author-box\">\n<div class=\"blog-author-image\">\n<p><img decoding=\"async\" loading=\"lazy\" class=\"alignleft size-full\" src=\"https:\/\/d2908q01vomqb2.cloudfront.net\/f1f836cb4ea6efb2a0b1b99f41ad8b103eff4b59\/2026\/06\/23\/ML-20863-5.png\" alt=\"Isaac Privitera\" width=\"100\" height=\"100\"\/><\/p>\n<\/p><\/div>\n<h3 class=\"lb-h4\">Isaac Privitera<\/h3>\n<p>Isaac is a Principal Knowledge Scientist with the AWS Generative AI Innovation Heart, the place he develops bespoke agentic AI-based options to handle clients\u2019 enterprise issues. His major focus lies in constructing accountable AI techniques, utilizing methods akin to RAG, multi-agent techniques, and mannequin fine-tuning. When not immersed on this planet of AI, Isaac will be discovered on the golf course, having fun with a soccer sport, or mountaineering trails together with his loyal canine companion, Barry.<\/p>\n<\/p><\/div>\n<div class=\"blog-author-box\">\n<div class=\"blog-author-image\">\n<p><img decoding=\"async\" loading=\"lazy\" class=\"alignleft size-full\" src=\"https:\/\/d2908q01vomqb2.cloudfront.net\/f1f836cb4ea6efb2a0b1b99f41ad8b103eff4b59\/2026\/06\/23\/ML-20863-6.png\" alt=\"David Kaleko\" width=\"100\" height=\"100\"\/><\/p>\n<\/p><\/div>\n<h3 class=\"lb-h4\">David Kaleko<\/h3>\n<p>David is a Senior Utilized Scientist on the AWS Generative AI Innovation Heart, the place he leads utilized analysis efforts into cutting-edge generative AI implementation methods for AWS clients. He holds a PhD in particle physics from Columbia College.<\/p>\n<\/p><\/div>\n<div class=\"blog-author-box\">\n<div class=\"blog-author-image\">\n<p><img decoding=\"async\" loading=\"lazy\" class=\"alignleft size-full\" src=\"https:\/\/d2908q01vomqb2.cloudfront.net\/f1f836cb4ea6efb2a0b1b99f41ad8b103eff4b59\/2026\/06\/23\/ML-20863-7.png\" alt=\"Tyler Slaton\" width=\"100\" height=\"100\"\/><\/p>\n<\/p><\/div>\n<h3 class=\"lb-h4\">Tyler Slaton<\/h3>\n<p>Tyler is the Head of Open-source at CopilotKit the place they work with their workforce to take care of the AG-UI and CopilotKit initiatives. They deal with the UI and UX of brokers in addition to constructing within the open. Exterior of labor they take pleasure in enjoying video video games and mountaineering.<\/p>\n<\/p><\/div>\n<div class=\"blog-author-box\">\n<div class=\"blog-author-image\">\n<p><img decoding=\"async\" loading=\"lazy\" class=\"alignleft size-full\" src=\"https:\/\/d2908q01vomqb2.cloudfront.net\/f1f836cb4ea6efb2a0b1b99f41ad8b103eff4b59\/2026\/06\/23\/ML-20863-8.png\" alt=\"Ran Shemtov\" width=\"100\" height=\"100\"\/><\/p>\n<\/p><\/div>\n<h3 class=\"lb-h4\">Ran Shemtov<\/h3>\n<p>Ran is a Founding Engineer at CopilotKit, the place he is likely one of the core makers and maintainers of AG-UI and the LangGraph integration, in addition to partnerships like with Amazon Net Companies.<\/p>\n<\/p><\/div><\/div>\n<p><br \/>\n<br \/><a href=\"https:\/\/aws.amazon.com\/blogs\/machine-learning\/build-generative-ui-for-ai-agents-on-amazon-bedrock-agentcore-with-the-ag-ui-protocol\/\">Source link <\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>AI brokers can do greater than chat. With the precise protocol, an agent can render an interactive chart inline in your dialog, replace a shared canvas in actual time, or pause mid-execution to ask to your approval earlier than continuing. These interactions (generative UI, shared state, and human-in-the-loop) want a normal method for agent backends [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":1696,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"fifu_image_url":"https:\/\/d2908q01vomqb2.cloudfront.net\/f1f836cb4ea6efb2a0b1b99f41ad8b103eff4b59\/2026\/06\/23\/20863.png","fifu_image_alt":"","jnews-multi-image_gallery":[],"jnews_single_post":[],"jnews_primary_category":[],"jnews_override_bookmark_settings":[],"jnews_social_meta":[],"jnews_override_counter":[],"footnotes":""},"categories":[7],"tags":[1753,210,2171,83,267,264,1586,342],"class_list":["post-1694","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-data-science-mlops","tag-agentcore","tag-agents","tag-agui","tag-amazon","tag-bedrock","tag-build","tag-generative","tag-protocol"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.7 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Construct generative UI for AI brokers on Amazon Bedrock AgentCore with the AG-UI protocol - Future News 24<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/futurenews24.com\/index.php\/2026\/06\/30\/build-generative-ui-for-ai-agents-on-amazon-bedrock-agentcore-with-the-ag-ui-protocol\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Construct generative UI for AI brokers on Amazon Bedrock AgentCore with the AG-UI protocol - Future News 24\" \/>\n<meta property=\"og:description\" content=\"AI brokers can do greater than chat. With the precise protocol, an agent can render an interactive chart inline in your dialog, replace a shared canvas in actual time, or pause mid-execution to ask to your approval earlier than continuing. These interactions (generative UI, shared state, and human-in-the-loop) want a normal method for agent backends [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/futurenews24.com\/index.php\/2026\/06\/30\/build-generative-ui-for-ai-agents-on-amazon-bedrock-agentcore-with-the-ag-ui-protocol\/\" \/>\n<meta property=\"og:site_name\" content=\"Future News 24\" \/>\n<meta property=\"article:published_time\" content=\"2026-06-30T16:46:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-06-30T16:59:09+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/d2908q01vomqb2.cloudfront.net\/f1f836cb4ea6efb2a0b1b99f41ad8b103eff4b59\/2026\/06\/23\/20863.png\" \/>\n<meta name=\"author\" content=\"Future News 24\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:image\" content=\"https:\/\/d2908q01vomqb2.cloudfront.net\/f1f836cb4ea6efb2a0b1b99f41ad8b103eff4b59\/2026\/06\/23\/20863.png\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Future News 24\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"13 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/futurenews24.com\\\/index.php\\\/2026\\\/06\\\/30\\\/build-generative-ui-for-ai-agents-on-amazon-bedrock-agentcore-with-the-ag-ui-protocol\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/futurenews24.com\\\/index.php\\\/2026\\\/06\\\/30\\\/build-generative-ui-for-ai-agents-on-amazon-bedrock-agentcore-with-the-ag-ui-protocol\\\/\"},\"author\":{\"name\":\"Future News 24\",\"@id\":\"https:\\\/\\\/futurenews24.com\\\/#\\\/schema\\\/person\\\/cecad1bde21cfc357cf70128144d6c83\"},\"headline\":\"Construct generative UI for AI brokers on Amazon Bedrock AgentCore with the AG-UI protocol\",\"datePublished\":\"2026-06-30T16:46:00+00:00\",\"dateModified\":\"2026-06-30T16:59:09+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/futurenews24.com\\\/index.php\\\/2026\\\/06\\\/30\\\/build-generative-ui-for-ai-agents-on-amazon-bedrock-agentcore-with-the-ag-ui-protocol\\\/\"},\"wordCount\":2563,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/futurenews24.com\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/futurenews24.com\\\/index.php\\\/2026\\\/06\\\/30\\\/build-generative-ui-for-ai-agents-on-amazon-bedrock-agentcore-with-the-ag-ui-protocol\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/d2908q01vomqb2.cloudfront.net\\\/f1f836cb4ea6efb2a0b1b99f41ad8b103eff4b59\\\/2026\\\/06\\\/23\\\/20863.png\",\"keywords\":[\"AgentCore\",\"Agents\",\"AGUI\",\"Amazon\",\"Bedrock\",\"build\",\"generative\",\"Protocol\"],\"articleSection\":[\"Data Science &amp; MLOps\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/futurenews24.com\\\/index.php\\\/2026\\\/06\\\/30\\\/build-generative-ui-for-ai-agents-on-amazon-bedrock-agentcore-with-the-ag-ui-protocol\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/futurenews24.com\\\/index.php\\\/2026\\\/06\\\/30\\\/build-generative-ui-for-ai-agents-on-amazon-bedrock-agentcore-with-the-ag-ui-protocol\\\/\",\"url\":\"https:\\\/\\\/futurenews24.com\\\/index.php\\\/2026\\\/06\\\/30\\\/build-generative-ui-for-ai-agents-on-amazon-bedrock-agentcore-with-the-ag-ui-protocol\\\/\",\"name\":\"Construct generative UI for AI brokers on Amazon Bedrock AgentCore with the AG-UI protocol - Future News 24\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/futurenews24.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/futurenews24.com\\\/index.php\\\/2026\\\/06\\\/30\\\/build-generative-ui-for-ai-agents-on-amazon-bedrock-agentcore-with-the-ag-ui-protocol\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/futurenews24.com\\\/index.php\\\/2026\\\/06\\\/30\\\/build-generative-ui-for-ai-agents-on-amazon-bedrock-agentcore-with-the-ag-ui-protocol\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/d2908q01vomqb2.cloudfront.net\\\/f1f836cb4ea6efb2a0b1b99f41ad8b103eff4b59\\\/2026\\\/06\\\/23\\\/20863.png\",\"datePublished\":\"2026-06-30T16:46:00+00:00\",\"dateModified\":\"2026-06-30T16:59:09+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/futurenews24.com\\\/index.php\\\/2026\\\/06\\\/30\\\/build-generative-ui-for-ai-agents-on-amazon-bedrock-agentcore-with-the-ag-ui-protocol\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/futurenews24.com\\\/index.php\\\/2026\\\/06\\\/30\\\/build-generative-ui-for-ai-agents-on-amazon-bedrock-agentcore-with-the-ag-ui-protocol\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/futurenews24.com\\\/index.php\\\/2026\\\/06\\\/30\\\/build-generative-ui-for-ai-agents-on-amazon-bedrock-agentcore-with-the-ag-ui-protocol\\\/#primaryimage\",\"url\":\"https:\\\/\\\/d2908q01vomqb2.cloudfront.net\\\/f1f836cb4ea6efb2a0b1b99f41ad8b103eff4b59\\\/2026\\\/06\\\/23\\\/20863.png\",\"contentUrl\":\"https:\\\/\\\/d2908q01vomqb2.cloudfront.net\\\/f1f836cb4ea6efb2a0b1b99f41ad8b103eff4b59\\\/2026\\\/06\\\/23\\\/20863.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/futurenews24.com\\\/index.php\\\/2026\\\/06\\\/30\\\/build-generative-ui-for-ai-agents-on-amazon-bedrock-agentcore-with-the-ag-ui-protocol\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/futurenews24.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Construct generative UI for AI brokers on Amazon Bedrock AgentCore with the AG-UI protocol\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/futurenews24.com\\\/#website\",\"url\":\"https:\\\/\\\/futurenews24.com\\\/\",\"name\":\"Future News 24\",\"description\":\"The Smart Hub for AI and Next-Gen Innovation\",\"publisher\":{\"@id\":\"https:\\\/\\\/futurenews24.com\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/futurenews24.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/futurenews24.com\\\/#organization\",\"name\":\"Future News 24\",\"url\":\"https:\\\/\\\/futurenews24.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/futurenews24.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/futurenews24.com\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/fn24-favicon.png\",\"contentUrl\":\"https:\\\/\\\/futurenews24.com\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/fn24-favicon.png\",\"width\":250,\"height\":250,\"caption\":\"Future News 24\"},\"image\":{\"@id\":\"https:\\\/\\\/futurenews24.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/futurenews24.com\\\/#\\\/schema\\\/person\\\/cecad1bde21cfc357cf70128144d6c83\",\"name\":\"Future News 24\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d57f07142d73cb5503ab2446ea7bc9ef3d0a5ba378d64a6157692311e42bf097?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d57f07142d73cb5503ab2446ea7bc9ef3d0a5ba378d64a6157692311e42bf097?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d57f07142d73cb5503ab2446ea7bc9ef3d0a5ba378d64a6157692311e42bf097?s=96&d=mm&r=g\",\"caption\":\"Future News 24\"},\"sameAs\":[\"https:\\\/\\\/futurenews24.com\"],\"url\":\"https:\\\/\\\/futurenews24.com\\\/index.php\\\/author\\\/mridulpahuja20\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Construct generative UI for AI brokers on Amazon Bedrock AgentCore with the AG-UI protocol - Future News 24","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/futurenews24.com\/index.php\/2026\/06\/30\/build-generative-ui-for-ai-agents-on-amazon-bedrock-agentcore-with-the-ag-ui-protocol\/","og_locale":"en_US","og_type":"article","og_title":"Construct generative UI for AI brokers on Amazon Bedrock AgentCore with the AG-UI protocol - Future News 24","og_description":"AI brokers can do greater than chat. With the precise protocol, an agent can render an interactive chart inline in your dialog, replace a shared canvas in actual time, or pause mid-execution to ask to your approval earlier than continuing. These interactions (generative UI, shared state, and human-in-the-loop) want a normal method for agent backends [&hellip;]","og_url":"https:\/\/futurenews24.com\/index.php\/2026\/06\/30\/build-generative-ui-for-ai-agents-on-amazon-bedrock-agentcore-with-the-ag-ui-protocol\/","og_site_name":"Future News 24","article_published_time":"2026-06-30T16:46:00+00:00","article_modified_time":"2026-06-30T16:59:09+00:00","og_image":[{"url":"https:\/\/d2908q01vomqb2.cloudfront.net\/f1f836cb4ea6efb2a0b1b99f41ad8b103eff4b59\/2026\/06\/23\/20863.png","type":"","width":"","height":""}],"author":"Future News 24","twitter_card":"summary_large_image","twitter_image":"https:\/\/d2908q01vomqb2.cloudfront.net\/f1f836cb4ea6efb2a0b1b99f41ad8b103eff4b59\/2026\/06\/23\/20863.png","twitter_misc":{"Written by":"Future News 24","Est. reading time":"13 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/futurenews24.com\/index.php\/2026\/06\/30\/build-generative-ui-for-ai-agents-on-amazon-bedrock-agentcore-with-the-ag-ui-protocol\/#article","isPartOf":{"@id":"https:\/\/futurenews24.com\/index.php\/2026\/06\/30\/build-generative-ui-for-ai-agents-on-amazon-bedrock-agentcore-with-the-ag-ui-protocol\/"},"author":{"name":"Future News 24","@id":"https:\/\/futurenews24.com\/#\/schema\/person\/cecad1bde21cfc357cf70128144d6c83"},"headline":"Construct generative UI for AI brokers on Amazon Bedrock AgentCore with the AG-UI protocol","datePublished":"2026-06-30T16:46:00+00:00","dateModified":"2026-06-30T16:59:09+00:00","mainEntityOfPage":{"@id":"https:\/\/futurenews24.com\/index.php\/2026\/06\/30\/build-generative-ui-for-ai-agents-on-amazon-bedrock-agentcore-with-the-ag-ui-protocol\/"},"wordCount":2563,"commentCount":0,"publisher":{"@id":"https:\/\/futurenews24.com\/#organization"},"image":{"@id":"https:\/\/futurenews24.com\/index.php\/2026\/06\/30\/build-generative-ui-for-ai-agents-on-amazon-bedrock-agentcore-with-the-ag-ui-protocol\/#primaryimage"},"thumbnailUrl":"https:\/\/d2908q01vomqb2.cloudfront.net\/f1f836cb4ea6efb2a0b1b99f41ad8b103eff4b59\/2026\/06\/23\/20863.png","keywords":["AgentCore","Agents","AGUI","Amazon","Bedrock","build","generative","Protocol"],"articleSection":["Data Science &amp; MLOps"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/futurenews24.com\/index.php\/2026\/06\/30\/build-generative-ui-for-ai-agents-on-amazon-bedrock-agentcore-with-the-ag-ui-protocol\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/futurenews24.com\/index.php\/2026\/06\/30\/build-generative-ui-for-ai-agents-on-amazon-bedrock-agentcore-with-the-ag-ui-protocol\/","url":"https:\/\/futurenews24.com\/index.php\/2026\/06\/30\/build-generative-ui-for-ai-agents-on-amazon-bedrock-agentcore-with-the-ag-ui-protocol\/","name":"Construct generative UI for AI brokers on Amazon Bedrock AgentCore with the AG-UI protocol - Future News 24","isPartOf":{"@id":"https:\/\/futurenews24.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/futurenews24.com\/index.php\/2026\/06\/30\/build-generative-ui-for-ai-agents-on-amazon-bedrock-agentcore-with-the-ag-ui-protocol\/#primaryimage"},"image":{"@id":"https:\/\/futurenews24.com\/index.php\/2026\/06\/30\/build-generative-ui-for-ai-agents-on-amazon-bedrock-agentcore-with-the-ag-ui-protocol\/#primaryimage"},"thumbnailUrl":"https:\/\/d2908q01vomqb2.cloudfront.net\/f1f836cb4ea6efb2a0b1b99f41ad8b103eff4b59\/2026\/06\/23\/20863.png","datePublished":"2026-06-30T16:46:00+00:00","dateModified":"2026-06-30T16:59:09+00:00","breadcrumb":{"@id":"https:\/\/futurenews24.com\/index.php\/2026\/06\/30\/build-generative-ui-for-ai-agents-on-amazon-bedrock-agentcore-with-the-ag-ui-protocol\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/futurenews24.com\/index.php\/2026\/06\/30\/build-generative-ui-for-ai-agents-on-amazon-bedrock-agentcore-with-the-ag-ui-protocol\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/futurenews24.com\/index.php\/2026\/06\/30\/build-generative-ui-for-ai-agents-on-amazon-bedrock-agentcore-with-the-ag-ui-protocol\/#primaryimage","url":"https:\/\/d2908q01vomqb2.cloudfront.net\/f1f836cb4ea6efb2a0b1b99f41ad8b103eff4b59\/2026\/06\/23\/20863.png","contentUrl":"https:\/\/d2908q01vomqb2.cloudfront.net\/f1f836cb4ea6efb2a0b1b99f41ad8b103eff4b59\/2026\/06\/23\/20863.png"},{"@type":"BreadcrumbList","@id":"https:\/\/futurenews24.com\/index.php\/2026\/06\/30\/build-generative-ui-for-ai-agents-on-amazon-bedrock-agentcore-with-the-ag-ui-protocol\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/futurenews24.com\/"},{"@type":"ListItem","position":2,"name":"Construct generative UI for AI brokers on Amazon Bedrock AgentCore with the AG-UI protocol"}]},{"@type":"WebSite","@id":"https:\/\/futurenews24.com\/#website","url":"https:\/\/futurenews24.com\/","name":"Future News 24","description":"The Smart Hub for AI and Next-Gen Innovation","publisher":{"@id":"https:\/\/futurenews24.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/futurenews24.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/futurenews24.com\/#organization","name":"Future News 24","url":"https:\/\/futurenews24.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/futurenews24.com\/#\/schema\/logo\/image\/","url":"https:\/\/futurenews24.com\/wp-content\/uploads\/2026\/06\/fn24-favicon.png","contentUrl":"https:\/\/futurenews24.com\/wp-content\/uploads\/2026\/06\/fn24-favicon.png","width":250,"height":250,"caption":"Future News 24"},"image":{"@id":"https:\/\/futurenews24.com\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/futurenews24.com\/#\/schema\/person\/cecad1bde21cfc357cf70128144d6c83","name":"Future News 24","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/d57f07142d73cb5503ab2446ea7bc9ef3d0a5ba378d64a6157692311e42bf097?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/d57f07142d73cb5503ab2446ea7bc9ef3d0a5ba378d64a6157692311e42bf097?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/d57f07142d73cb5503ab2446ea7bc9ef3d0a5ba378d64a6157692311e42bf097?s=96&d=mm&r=g","caption":"Future News 24"},"sameAs":["https:\/\/futurenews24.com"],"url":"https:\/\/futurenews24.com\/index.php\/author\/mridulpahuja20\/"}]}},"_links":{"self":[{"href":"https:\/\/futurenews24.com\/index.php\/wp-json\/wp\/v2\/posts\/1694","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/futurenews24.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/futurenews24.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/futurenews24.com\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/futurenews24.com\/index.php\/wp-json\/wp\/v2\/comments?post=1694"}],"version-history":[{"count":1,"href":"https:\/\/futurenews24.com\/index.php\/wp-json\/wp\/v2\/posts\/1694\/revisions"}],"predecessor-version":[{"id":1695,"href":"https:\/\/futurenews24.com\/index.php\/wp-json\/wp\/v2\/posts\/1694\/revisions\/1695"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/futurenews24.com\/index.php\/wp-json\/wp\/v2\/media\/1696"}],"wp:attachment":[{"href":"https:\/\/futurenews24.com\/index.php\/wp-json\/wp\/v2\/media?parent=1694"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/futurenews24.com\/index.php\/wp-json\/wp\/v2\/categories?post=1694"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/futurenews24.com\/index.php\/wp-json\/wp\/v2\/tags?post=1694"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}