llmgrep 3.11.2

Smart grep over Magellan code maps with schema-aligned JSON output
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Shared output formatting utilities for all response types.

/// Format the "total: N" header for human-readable output
pub fn format_total_header(total: u64) -> String {
    format!("total: {}", total)
}

/// Format the "partial: true" footer for human-readable output
pub fn format_partial_footer() -> &'static str {
    "partial: true"
}