We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5ac615 commit 3d47e76Copy full SHA for 3d47e76
1 file changed
core/src/tools/builtin/agentic_parse.rs
@@ -372,11 +372,10 @@ impl Tool for AgenticParseTool {
372
raw_text.clone()
373
};
374
375
- let system = format!(
376
- "You are a document analysis assistant. \
+ let system = "You are a document analysis assistant. \
377
The user will provide document content and ask you to extract information from it. \
378
Answer based solely on the provided content. Be concise."
379
- );
+ .to_string();
380
381
let user_msg = format!(
382
"Document: `{}`\nParse strategy: {}\n\n\
0 commit comments