import { Bot, Key } from 'lucide-react'; import { ProvidersSettings } from './ProvidersSettings'; import { WorkerIndividualSettings } from './WorkerIndividualSettings'; interface AgentLayoutProps { agentTab: string; setAgentTab: (tab: string) => void; } export function AgentLayout({ agentTab, setAgentTab }: AgentLayoutProps) { return (
{/* Agent Inner Sidebar */}

Agents

{/* Agent Main Content */}
{agentTab === 'worker' && } {agentTab === 'providers' && }
); }