diff --git a/README.md b/README.md index df8b68d..1e3e892 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Llama Agent Creator +# Flow Maker, a visual agent builder for LlamaIndex This is a tool for visually creating and exporting agentic workflows powered by LlamaIndex. It provides a drag-and-drop interface to build complex workflows, run them interactively, and then compile them into standalone TypeScript code. diff --git a/app/layout.tsx b/app/layout.tsx index b91c1f3..4a46699 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -8,7 +8,7 @@ import { cn } from '@/lib/utils'; const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Llama Agent Creator", + title: "FlowMaker", description: "A visual agent builder for LlamaIndex", icons: { icon: "/favicon.ico", diff --git a/src/components/AgentBuilderSidebar.tsx b/src/components/AgentBuilderSidebar.tsx index 2af5ca9..3c3a1c3 100644 --- a/src/components/AgentBuilderSidebar.tsx +++ b/src/components/AgentBuilderSidebar.tsx @@ -66,15 +66,16 @@ const nodeTemplates = [ { type: 'promptAgent', label: 'Prompt Agent', description: 'Configure and prompt AI agents', icon: Bot }, { type: 'agentTool', label: 'Agent Tool', description: 'Tools and functions for agents', icon: Wrench }, { type: 'decision', label: 'Decision', description: 'Conditional branching logic', icon: GitBranch }, - { type: 'splitter', label: 'Splitter', description: 'Split flow into multiple paths', icon: Split }, - { type: 'collector', label: 'Collector', description: 'Merge multiple flows together', icon: Merge }, + // { type: 'splitter', label: 'Splitter', description: 'Split flow into multiple paths', icon: Split }, + // { type: 'collector', label: 'Collector', description: 'Merge multiple flows together', icon: Merge }, ]; const AgentBuilderSidebar = ({ onAddNode, onReset, settings, onUpdateSettings }: AgentBuilderSidebarProps) => { return (