From 8ee49e821e9f94903ca524254582ec8397e7b6e0 Mon Sep 17 00:00:00 2001 From: sigoden Date: Fri, 12 Jul 2024 07:24:23 +0800 Subject: [PATCH] refactor: template of including files (#706) --- src/config/input.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config/input.rs b/src/config/input.rs index c6d0c62..e1f6abd 100644 --- a/src/config/input.rs +++ b/src/config/input.rs @@ -73,7 +73,7 @@ impl Input { texts.push(String::new()); } for (path, contents) in files { - texts.push(format!("`{path}`:\n\n{contents}\n\n")); + texts.push(format!("{path}:\n{contents}\n")); } let (role, with_session, with_agent) = resolve_role(&config.read(), role); Ok(Self {