feat(web): forgetting memory

This commit is contained in:
zhaoying
2026-01-07 20:37:34 +08:00
parent 75d5121234
commit a1e8d858a2
18 changed files with 717 additions and 83 deletions

View File

@@ -138,7 +138,7 @@ const Cluster = forwardRef<ClusterRef>((_props, ref) => {
</div>
<Form form={form} layout="vertical">
<Space size={20} direction="vertical" style={{width: '100%'}}>
<Card title={t('application.handoffs')}>
<Card title={t('application.collaboration')}>
<Form.Item
name="orchestration_mode"
noStyle

View File

@@ -88,11 +88,11 @@ export interface MultiAgentConfig {
app_id: string;
default_model_config_id?: string;
model_parameters: ModelConfig;
orchestration_mode: 'conditional' | 'sequential' | 'parallel';
sub_agents?: SubAgentItem[];
routing_rules: null;
orchestration_mode: 'supervisor' | 'collaboration';
execution_config: {
routing_mode: 'master' | 'handoffs'
sub_agent_execution_mode: 'sequential' | 'parallel';
};
aggregation_strategy: 'merge' | 'vote' | 'priority'
}