Skip to content

Next Gen UI BeeAI Framework Integration

This module is part of the Next Gen UI Agent project.

Module Category Module Status

Support for BeeAI Framework.

As A2A or MCP are the AI protocols used by BeeAI, UI Agent binding into assistant app should use these protocol bindings provided in other modules.

Provides

  • BeeAIInference - ability to use BeeAI framework exposed LLM for UI Agent

Installation

pip install -U next_gen_ui_beeai

Interface usage in A2A Agent

from next_gen_ui_a2a import NextGenUIA2AAgent
from next_gen_ui_beeai import BeeAIInference

agent = NextGenUIA2AAgent(
    component_system="rhds",
    inference=BeeAIInference(model="ollama:llama3.2"),
)