diff --git a/app/api/chat/route.ts b/app/api/chat/route.ts index 07deff7d0..b9c337eaa 100644 --- a/app/api/chat/route.ts +++ b/app/api/chat/route.ts @@ -120,10 +120,10 @@ When users request changes: - Provide clear feedback about what actions you've taken Use the following functions to modify the workflow: -1. Use the addBlock function to create new blocks -2. Use the addEdge function to connect blocks -3. Use the removeBlock function to remove blocks -4. Use the removeEdge function to remove connections +1. Use the addBlock function to create a new block +2. Use the addEdge function to connect one block to another +3. Use the removeBlock function to remove a block +4. Use the removeEdge function to remove a connection Only use the provided functions and respond naturally to the user's requests.` } diff --git a/blocks/blocks/agent.ts b/blocks/blocks/agent.ts index a50474b35..874b8bf47 100644 --- a/blocks/blocks/agent.ts +++ b/blocks/blocks/agent.ts @@ -158,7 +158,7 @@ export const AgentBlock: BlockConfig = { }, { id: 'context', - title: 'Context', + title: 'User Prompt', type: 'short-input', layout: 'full', placeholder: 'Enter context or user message...',