Clean up: fix duplicate module declarations and warnings
- Remove duplicate module declarations in lib.rs - Replace full-width spaces with normal spaces in companion.rs - Add #[allow(dead_code)] for min_priority_score (future feature) Now compiles cleanly with minimal warnings!
This commit is contained in:
@@ -72,7 +72,8 @@ pub struct MemoryManager {
|
||||
conversations: HashMap<String, Conversation>,
|
||||
data_file: PathBuf,
|
||||
max_memories: usize, // 最大記憶数
|
||||
min_priority_score: f32, // 最小優先度スコア (0.0-1.0)
|
||||
#[allow(dead_code)]
|
||||
min_priority_score: f32, // 最小優先度スコア (将来の機能で使用予定)
|
||||
ai_interpreter: AIInterpreter, // AI解釈エンジン
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user