Skip to repository content42 lines · 1.6 KB · rust
tenant.openagents/omega
No repository description is available.
OpenAgents Git authority 2026-07-28T03:05:18.806Z Public web read
NIP-34 coordinate
30617:7649603503856e5148d571eac2766b288a8ff1e9e35d380337a1d2b0015b4f92:omegaMaintainersHidden in public view
References2 branches · 1 tag
Read-only clone
git clone https://openagents.com/git/tenant.openagents/omega.gitBrowse files
edit_prediction_metrics.rs
1mod jumps;
2mod kept_rate;
3mod patch;
4mod patch_metrics;
5mod prediction_score;
6mod reversal;
7mod summary;
8mod tokenize;
9#[cfg(feature = "tree-sitter")]
10mod tree_sitter;
11
12pub use jumps::{
13 EditableContextCoverage, Excerpt, LineFileClassification, PatchLocationMatch,
14 editable_context_coverage, patch_location_match,
15};
16pub use kept_rate::AnnotatedToken;
17pub use kept_rate::KeptRateResult;
18pub use kept_rate::TokenAnnotation;
19pub use kept_rate::annotate_kept_rate_tokens;
20pub use kept_rate::compute_kept_rate;
21pub use patch_metrics::ClassificationMetrics;
22pub use patch_metrics::Counts;
23pub use patch_metrics::DeltaChrFMetrics;
24pub use patch_metrics::TokenChangeCounts;
25pub use patch_metrics::braces_disbalance;
26pub use patch_metrics::count_patch_token_changes;
27pub use patch_metrics::delta_chr_f;
28pub use patch_metrics::delta_chr_f_beta;
29pub use patch_metrics::exact_lines_match;
30pub use patch_metrics::extract_changed_lines_from_diff;
31pub use patch_metrics::has_isolated_whitespace_changes;
32pub use patch_metrics::is_editable_region_correct;
33pub use patch_metrics::reconstruct_texts_from_diff;
34pub use prediction_score::{
35 ActualPredictionCursor, PredictionReversalContext, PredictionScore, PredictionScoringInput,
36 PrepareExpectedPatchError, PreparedExpectedPatch, prepare_expected_patches, score_prediction,
37};
38pub use reversal::compute_prediction_reversal_ratio_from_history;
39pub use summary::{PredictionSummaryInput, QaSummaryData, SummaryJson, compute_summary};
40#[cfg(feature = "tree-sitter")]
41pub use tree_sitter::count_tree_sitter_errors;
42