feat(evaluation) 14/15: Evaluation tab on the admin System page - #825
feat(evaluation) 14/15: Evaluation tab on the admin System page#825Ahmath-Gadji wants to merge 1 commit into
Conversation
|
Warning Review limit reached
Next review available in: 59 minutes Enable usage-based reviews in Billing to review now. Otherwise, wait until the next included review is available. How can I continue?After more reviews become available, a review can be triggered using the To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews. How do review limits work?CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability. For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window. Please refer docs for additional details. Review details⚙️ Run configurationConfiguration used: Path: .coderabbit.yaml Review profile: CHILL Plan: Pro Plus Run ID: 📒 Files selected for processing (3)
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
abd1345 to
e578ca5
Compare
e969682 to
58c529a
Compare
|
@coderabbitai full review |
✅ Action performedFull review finished. Your included review limit is currently reached under our Fair Usage Limits Policy. This review may still proceed through usage-based billing if eligible. Your next included review will be available in 56 minutes. |
e578ca5 to
94070cb
Compare
58c529a to
cff68d6
Compare
94070cb to
45a23ee
Compare
cff68d6 to
958387a
Compare
45a23ee to
e6c0be8
Compare
958387a to
87f654b
Compare
`EvaluationTab` composes the dataset card and the run detail, and owns the run history table. The run list drives both the polling cadence and whether a new run may be started: runs are serialised server-side, so whether any run is active is a property of the list, not of the dataset card. Polling stops once nothing is active, rather than refetching a table that can no longer change. This is the point the feature becomes reachable.
e6c0be8 to
a8a3a05
Compare
87f654b to
7f1f006
Compare
Part 14 of 15 of the split of #811. Targets
eval/13-ui-components(#824). This is the point the feature becomes reachable — everything before it is inert.What
EvaluationTabcomposes the dataset card and the run detail, owns the run history table, and is registered as a tab on the admin System page.Notable
runActiveis computed here and passed down rather than derived twice.EVAL_POLL_MS/isActiveStatuspair from part 12, so the list and the detail view cannot drift apart on cadence.Testing
9 UI tests covering dataset listing, run start/cancel gating, the metric panels and error display. The full
uisuite is green here: 23 files / 167 tests, 0 failures, plustsc -bclean andeslintreporting only the warning already ondevelop.What's left
Part 15 is docs and the sample dataset only — no code.