Suppress dead_code and unused_imports warnings in prompt_builder module

Module is scaffolded but not yet wired into callers — allow dead code
at the module level until integration is complete.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Ryan Ward
2026-06-01 15:56:23 -05:00
co-authored by Claude Opus 4.6
parent af1ad9491a
commit 259244863b
2 changed files with 2 additions and 0 deletions
+1
View File
@@ -17,6 +17,7 @@ pub(crate) mod attachment_utils;
pub mod aws_credentials;
#[cfg(not(target_family = "wasm"))]
pub mod bedrock;
#[allow(dead_code)]
pub mod prompt_builder;
pub(crate) mod block_context;
pub(crate) mod blocklist;
+1
View File
@@ -23,6 +23,7 @@ mod tools;
pub use context::PromptContext;
pub use mode::Mode;
pub use prompts::provider::Provider;
#[allow(unused_imports)]
pub use tools::tools_for_mode;
use crate::ai::bedrock::convert::ToolDefinition;