Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ impl Config {
let mut hasher = Sha256::new();
hasher.update(path.as_bytes());
let result = hasher.finalize();
hex::encode(&result[..8]) // First 8 bytes = 16 hex chars
hex::encode(result) // Use full SHA256 hash (32 bytes = 64 hex chars)
}

/// Get full path to embedding model
Expand Down
Loading