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:
co-authored by
Claude Opus 4.6
parent
af1ad9491a
commit
259244863b
@@ -17,6 +17,7 @@ pub(crate) mod attachment_utils;
|
|||||||
pub mod aws_credentials;
|
pub mod aws_credentials;
|
||||||
#[cfg(not(target_family = "wasm"))]
|
#[cfg(not(target_family = "wasm"))]
|
||||||
pub mod bedrock;
|
pub mod bedrock;
|
||||||
|
#[allow(dead_code)]
|
||||||
pub mod prompt_builder;
|
pub mod prompt_builder;
|
||||||
pub(crate) mod block_context;
|
pub(crate) mod block_context;
|
||||||
pub(crate) mod blocklist;
|
pub(crate) mod blocklist;
|
||||||
|
|||||||
@@ -23,6 +23,7 @@ mod tools;
|
|||||||
pub use context::PromptContext;
|
pub use context::PromptContext;
|
||||||
pub use mode::Mode;
|
pub use mode::Mode;
|
||||||
pub use prompts::provider::Provider;
|
pub use prompts::provider::Provider;
|
||||||
|
#[allow(unused_imports)]
|
||||||
pub use tools::tools_for_mode;
|
pub use tools::tools_for_mode;
|
||||||
|
|
||||||
use crate::ai::bedrock::convert::ToolDefinition;
|
use crate::ai::bedrock::convert::ToolDefinition;
|
||||||
|
|||||||
Reference in New Issue
Block a user