File size: 7,189 Bytes
c453128 | 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 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 | import { useState } from "react";
import type React from "react";
import type { AgentProfile, AgentPrototype, ReasoningEffort } from "../types";
import { AgentProfileModal } from "./AgentProfileModal";
import { GlobalDefaultPersonaEditor } from "./GlobalDefaultPersonaEditor";
import { modalOverlayStyle, modalPanelStyle } from "./modalStyles";
import { ENABLE_PROFILE_CREATE } from "../featureFlags";
const DEFAULT_PROFILE_KEY = "__default__";
const REASONING_OPTIONS: { value: ReasoningEffort; label: string }[] = [
{ value: "none", label: "off" },
{ value: "low", label: "low" },
{ value: "medium", label: "med" },
{ value: "high", label: "high" },
];
type Tab = "modify" | "create";
interface Props {
agents: AgentProfile[];
prototypes: AgentPrototype[];
defaultAgentId?: string;
verbose: boolean;
reasoningEffort: ReasoningEffort;
onVerboseToggle: () => void;
onReasoningChange: (v: ReasoningEffort) => void;
onClose: () => void;
onSaved: () => void;
}
export function DeskAgentCustomizeModal({
agents, prototypes, defaultAgentId,
verbose, reasoningEffort,
onVerboseToggle, onReasoningChange,
onClose, onSaved,
}: Props) {
const [tab, setTab] = useState<Tab>("modify");
const initialModifyId = !defaultAgentId
? DEFAULT_PROFILE_KEY
: agents.some((a) => a.id === defaultAgentId)
? defaultAgentId
: DEFAULT_PROFILE_KEY;
const [modifyAgentId, setModifyAgentId] = useState(initialModifyId);
const modifyAgent = modifyAgentId === DEFAULT_PROFILE_KEY
? null
: agents.find((a) => a.id === modifyAgentId) ?? null;
const btnStyle: React.CSSProperties = {
padding: "3px 7px", fontSize: 9, fontWeight: 500, cursor: "pointer",
borderRadius: 5, border: "1px solid #2a3558",
};
return (
<div
style={{ ...modalOverlayStyle, zIndex: 450 }}
onMouseDown={(e) => { if (e.target === e.currentTarget) onClose(); }}
>
<div style={{
...modalPanelStyle,
width: "min(920px, calc(100vw - 32px))",
maxHeight: "calc(100vh - 32px)",
overflow: "auto",
padding: "16px 20px 12px",
}}>
<div style={{ display: "flex", justifyContent: "space-between", alignItems: "center", marginBottom: 12 }}>
<div style={{ display: "flex", gap: 4 }}>
{(ENABLE_PROFILE_CREATE ? (["modify", "create"] as Tab[]) : (["modify"] as Tab[])).map((id) => (
<button
key={id}
type="button"
onClick={() => setTab(id)}
style={{
padding: "6px 12px", borderRadius: 6, fontSize: 11, fontWeight: 600,
cursor: "pointer", border: "1px solid #2a3558",
background: tab === id ? "#0f3048" : "#121828",
color: tab === id ? "var(--accent2)" : "var(--text-dim)",
textTransform: "capitalize",
}}
>
{id === "modify" ? "Modify existing" : "Create new"}
</button>
))}
</div>
<button type="button" onClick={onClose} style={ghostBtn}>✕</button>
</div>
<section style={sectionStyle}>
<div style={sectionTitleStyle}>Worker preferences</div>
<div style={{ display: "flex", alignItems: "center", gap: 14, flexWrap: "wrap" }}>
<div
onClick={onVerboseToggle}
title={verbose ? "High verbosity" : "Low verbosity"}
style={{
display: "flex", alignItems: "center", gap: 5, cursor: "pointer", userSelect: "none",
padding: "4px 10px", background: "#121828", borderRadius: 6, border: "1px solid #2a3558",
}}
>
<span style={{ fontSize: 10, color: "var(--text-dim)" }}>Verbose</span>
<span style={{ fontSize: 10, fontWeight: verbose ? 600 : 400, color: verbose ? "var(--text)" : "var(--text-dim)" }}>
{verbose ? "high" : "low"}
</span>
</div>
<div style={{ display: "flex", alignItems: "center", gap: 4 }}>
<span style={{ fontSize: 10, color: "var(--text-dim)", marginRight: 2 }}>Reasoning</span>
{REASONING_OPTIONS.map(({ value, label }) => (
<button
key={value}
type="button"
onClick={() => onReasoningChange(value)}
style={{
...btnStyle,
background: reasoningEffort === value ? "#0f3048" : "#121828",
color: reasoningEffort === value ? "var(--accent2)" : "var(--text-dim)",
}}
>
{label}
</button>
))}
</div>
</div>
</section>
{tab === "modify" ? (
<>
<label style={{ display: "flex", flexDirection: "column", gap: 4, marginBottom: 12 }}>
<span style={{ fontSize: 10, fontWeight: 700, color: "var(--text-dim)", textTransform: "uppercase" }}>
Profile to edit
</span>
<select
value={modifyAgentId}
onChange={(e) => setModifyAgentId(e.target.value)}
style={selectStyle}
>
<option value={DEFAULT_PROFILE_KEY}>Default (~/.hermes)</option>
{agents.map((a) => (
<option key={a.id} value={a.id}>{a.name || a.id}</option>
))}
</select>
</label>
{modifyAgentId === DEFAULT_PROFILE_KEY ? (
<GlobalDefaultPersonaEditor onClose={onClose} onSaved={onSaved} />
) : modifyAgent ? (
<AgentProfileModal
embedded
mode="edit"
agent={modifyAgent}
prototypes={prototypes}
onClose={onClose}
onSaved={onSaved}
onDeleted={onSaved}
/>
) : (
<div style={{ padding: 24, textAlign: "center", color: "var(--text-dim)", fontSize: 12 }}>
No agent profiles available. Switch to Create new.
</div>
)}
</>
) : (
<AgentProfileModal
embedded
mode="create"
prototypes={prototypes}
agents={agents}
onClose={onClose}
onSaved={onSaved}
/>
)}
</div>
</div>
);
}
const sectionStyle: React.CSSProperties = {
marginBottom: 16, padding: "12px 14px", borderRadius: 8,
background: "#0e1424", border: "1px solid #2a3558",
};
const sectionTitleStyle: React.CSSProperties = {
fontSize: 10, fontWeight: 700, letterSpacing: 0.6, textTransform: "uppercase",
color: "var(--text-dim)", marginBottom: 8,
};
const selectStyle: React.CSSProperties = {
fontSize: 12, padding: "6px 10px", borderRadius: 6,
background: "#121828", border: "1px solid #2a3558", color: "var(--text)",
};
const ghostBtn: React.CSSProperties = {
background: "transparent", border: "none", color: "var(--text-dim)", cursor: "pointer", fontSize: 14,
};
|