diff --git a/apps/beeai-web/src/modules/home/Framework.tsx b/apps/beeai-web/src/modules/home/Framework.tsx index 22a0dbe44..0143dc27f 100644 --- a/apps/beeai-web/src/modules/home/Framework.tsx +++ b/apps/beeai-web/src/modules/home/Framework.tsx @@ -4,12 +4,11 @@ */ 'use client'; -import { Code, Constraint, FlowConnection, Plug, Shapes } from '@carbon/icons-react'; +import { Code, Cognitive, Constraint, Insert, Plug, Shapes } from '@carbon/icons-react'; import { FRAMEWORK_DOCS_LINK } from '@/constants'; import { LayoutContainer } from '@/layouts/LayoutContainer'; -import FileConfigYaml from './assets/file-config-yaml.svg'; import FrameworkGraphics from './assets/framework-diagram.svg'; import type { FeatureItem } from './components/FeaturesList'; import { FeaturesList } from './components/FeaturesList'; @@ -44,10 +43,10 @@ export function Framework() { const FEATURES_ITEMS: FeatureItem[] = [ { - icon: FlowConnection, - title: 'Dynamic workflows', + icon: Insert, + title: 'Extensible event-driven middleware', content: - 'Use simple decorators to design multi-agent systems with advanced patterns like parallelism, retries, and replanning.', + 'Hook into agent execution events to add logging, safety checks, or custom behavior consistently across all components without modifying code.', }, { icon: Constraint, @@ -56,9 +55,10 @@ const FEATURES_ITEMS: FeatureItem[] = [ "Preserve your agent's reasoning abilities while enforcing deterministic rules instead of suggesting behavior.", }, { - icon: FileConfigYaml, - title: 'Declarative orchestration', - content: 'Define complex agent systems in YAML for more predictable and maintainable orchestration.', + icon: Cognitive, + title: 'Built-in memory management', + content: + 'Swap between unbounded, summarized, or token-controlled memory implementations. Configure what to remember without changing agent code.', }, { icon: Plug, diff --git a/apps/beeai-web/src/modules/home/assets/file-config-yaml.svg b/apps/beeai-web/src/modules/home/assets/file-config-yaml.svg deleted file mode 100644 index 5455b1b12..000000000 --- a/apps/beeai-web/src/modules/home/assets/file-config-yaml.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file