forked from elizaOS/eliza
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathagent-settings.tsx
137 lines (122 loc) · 4.04 KB
/
agent-settings.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
import CharacterForm from '@/components/character-form';
import { useToast } from '@/hooks/use-toast';
import { useAgentUpdate } from '@/hooks/use-agent-update';
import { apiClient } from '@/lib/api';
import type { Agent, UUID } from '@elizaos/core';
import { useQueryClient } from '@tanstack/react-query';
import { useEffect } from 'react';
import { useNavigate } from 'react-router-dom';
import AvatarPanel from './avatar-panel';
import PluginsPanel from './plugins-panel';
import { SecretPanel } from './secret-panel';
export default function AgentSettings({ agent, agentId }: { agent: Agent; agentId: UUID }) {
const { toast } = useToast();
const navigate = useNavigate();
const queryClient = useQueryClient();
// Use our enhanced agent update hook for more intelligent handling of JSONb fields
const agentState = useAgentUpdate(agent);
// Log whenever agent state changes
useEffect(() => {}, [agentState.agent]);
const handleSubmit = async () => {
try {
if (!agentId) {
throw new Error('Agent ID is missing');
}
// Get only the fields that have changed
const changedFields = agentState.getChangedFields();
// No need to send update if nothing changed
if (Object.keys(changedFields).length === 0) {
toast({
title: 'No Changes',
description: 'No changes were made to the agent',
});
navigate('/');
return;
}
// Always include the ID
const partialUpdate = {
id: agentId,
...changedFields,
};
// Send the partial update
await apiClient.updateAgent(agentId, partialUpdate as Agent);
// Invalidate both the agent query and the agents list
queryClient.invalidateQueries({ queryKey: ['agent', agentId] });
queryClient.invalidateQueries({ queryKey: ['agents'] });
navigate('/');
toast({
title: 'Success',
description: 'Agent updated and restarted successfully',
});
} catch (error) {
toast({
title: 'Error',
description: error instanceof Error ? error.message : 'Failed to update agent',
variant: 'destructive',
});
throw error;
}
};
const handleDelete = async () => {
try {
await apiClient.deleteAgent(agentId);
queryClient.invalidateQueries({ queryKey: ['agents'] });
navigate('/');
toast({
title: 'Success',
description: 'Agent deleted successfully',
});
} catch (error) {
toast({
title: 'Error',
description: error instanceof Error ? error.message : 'Failed to delete agent',
variant: 'destructive',
});
}
};
return (
<CharacterForm
characterValue={agentState.agent}
setCharacterValue={agentState}
title="Character Settings"
description="Configure your AI character's behavior and capabilities"
onSubmit={handleSubmit}
onReset={agentState.reset}
onDelete={handleDelete}
isAgent={true}
customComponents={[
{
name: 'Plugins',
component: (
<PluginsPanel characterValue={agentState.agent} setCharacterValue={agentState} />
),
},
{
name: 'Secret',
component: (
<SecretPanel
characterValue={agentState.agent}
onChange={(updatedAgent) => {
if (updatedAgent.settings && updatedAgent.settings.secrets) {
// Create a new settings object with the updated secrets
const updatedSettings = {
...agentState.agent.settings,
secrets: updatedAgent.settings.secrets,
};
// Use updateSettings to properly handle the secrets
agentState.updateSettings(updatedSettings);
}
}}
/>
),
},
{
name: 'Avatar',
component: (
<AvatarPanel characterValue={agentState.agent} setCharacterValue={agentState} />
),
},
]}
/>
);
}