From 67561e5c0e38373656752751578b692015eafec7 Mon Sep 17 00:00:00 2001 From: Saumya Date: Mon, 11 Aug 2025 10:00:22 +0530 Subject: [PATCH] feat: copy suna system prompt to newly created agents (further configurable) --- frontend/src/hooks/react-query/agents/utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/hooks/react-query/agents/utils.ts b/frontend/src/hooks/react-query/agents/utils.ts index 3f202dc0..5708d921 100644 --- a/frontend/src/hooks/react-query/agents/utils.ts +++ b/frontend/src/hooks/react-query/agents/utils.ts @@ -81,7 +81,7 @@ export type ThreadAgentResponse = { export type AgentCreateRequest = { name: string; description?: string; - system_prompt: string; + system_prompt?: string; configured_mcps?: Array<{ name: string; config: Record;