ファイル参照を与えた際に自動的に読ませる実装

This commit is contained in:
2026-04-30 21:58:10 +09:00
parent bc81dc1513
commit d7bc7ab3dd
12 changed files with 399 additions and 36 deletions
+1 -1
View File
@@ -713,7 +713,7 @@ mod tests {
assert_eq!(content.len(), 1);
match &content[0] {
llm_worker::ContentPart::Text { text } => {
assert_eq!(text, "see line1\nline2[unresolved file ref: src/main.rs]");
assert_eq!(text, "see line1\nline2@src/main.rs");
}
other => panic!("unexpected content: {other:?}"),
}