Update left pane labels and system message text

This commit is contained in:
akhisud3195 2025-02-14 12:35:16 +05:30
parent 4862a6273d
commit 6ff14a6008
2 changed files with 5 additions and 9 deletions

View file

@ -50,14 +50,14 @@ export default function Menu({
/> */}
<NavLink
href={`/projects/${projectId}/workflow`}
label="Workflow"
label="Build"
collapsed={collapsed}
icon={<WorkflowIcon size={16} />}
selected={pathname.startsWith(`/projects/${projectId}/workflow`)}
/>
<NavLink
href={`/projects/${projectId}/simulation`}
label="Simulation"
label="Test"
collapsed={collapsed}
icon={<PlayIcon size={16} />}
selected={pathname.startsWith(`/projects/${projectId}/simulation`)}
@ -71,7 +71,7 @@ export default function Menu({
/>}
<NavLink
href={`/projects/${projectId}/config`}
label="Config"
label="Integrate"
collapsed={collapsed}
icon={<SettingsIcon size={16} />}
selected={pathname.startsWith(`/projects/${projectId}/config`)}

View file

@ -654,17 +654,13 @@ function SystemMessage({
<div className="border border-gray-300 p-2 rounded-lg flex flex-col gap-2">
<EditableField
light
label="System message"
label="Context"
value={content}
onChange={onChange}
multiline
markdown
locked={locked}
placeholder={`Use this space to simulate user information provided to the assistant at start of chat. Example:
- userName: John Doe
- email: john@gmail.com
This is intended for testing only.`}
placeholder={`Provide context about the user (e.g. user ID, user name) to the assistant at the start of chat, for testing purposes.`}
/>
</div>
);