From d8ac75ca50d28b0cdc6469f025fb1ef449de0af1 Mon Sep 17 00:00:00 2001 From: Emir Karabeg Date: Wed, 15 Jan 2025 12:16:53 -0800 Subject: [PATCH] Added agent properties --- blocks/configs/agent.ts | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/blocks/configs/agent.ts b/blocks/configs/agent.ts index 1ab93b5899..f14ebe8a65 100644 --- a/blocks/configs/agent.ts +++ b/blocks/configs/agent.ts @@ -25,6 +25,11 @@ export const AgentBlock: BlockConfig = { type: 'long-input', layout: 'full', }, + { + title: 'Context', + type: 'long-input', + layout: 'full', + }, { title: 'Model', type: 'dropdown', @@ -44,7 +49,12 @@ export const AgentBlock: BlockConfig = { layout: "full", placeholder: "Enter your API key", password: true - } + }, + { + title: 'Response Format', + type: 'code', + layout: 'full', + }, ], }, } \ No newline at end of file