Next Gen UI BeeAI Framework Integration
This module is part of the Next Gen UI Agent project.
Support for BeeAI Framework.
As ACP
is the agentic protocol used by BeeAI, UI Agent binding into assistant app should use ACP protocol binding provided in another module.
Provides
BeeAIInference
- ability to use BeeAI framework exposed LLM for UI Agent
Installation
Interface usage in ACP Agent
from next_gen_ui_acp import NextGenUIACPAgent
from next_gen_ui_beeai import BeeAIInference
agent = NextGenUIACPAgent(
component_system="rhds",
inference=BeeAIInference(model="ollama:llama3.2"),
)