Conversation
a3fa3c1 to
0e7f627
Compare
…tus check for prime eval logs.
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 2 potential issues.
Bugbot Autofix is OFF. To automatically fix reported issues with Cloud Agents, enable Autofix in the Cursor dashboard.
manveerxyz
reviewed
Feb 9, 2026
Comment on lines
+140
to
+143
| console.print( | ||
| f"[dim]Configuration: num_examples={config.num_examples}, " | ||
| f"rollouts_per_example={config.rollouts_per_example}[/dim]" | ||
| ) |
Member
There was a problem hiding this comment.
It would be nice to follow the same output structure as on prime rl run
(cli) cli % prime rl run test-dev.toml
Loading config from test-dev.toml
Configuration:
Model & Environment
Model: PrimeIntellect/Qwen3-0.6B-Reverse-Text-SFT
Environments: d42me/reverse-text
Training
Max Steps: 100
Batch Size: 128
Rollouts per Example: 8
Sampling
Max Tokens: 2048
Evaluation
Environments: manveerxyz/meow
Interval: 10
Checking Environment Actions...
✓ d42me/reverse-text (success)
Creating RL training run...
✓ Run created successfully!
Monitor run at:
https://<REDACTED>/dashboard/training/pbghzxpwjc6o6z4al5whc8md
View logs with:
prime rl logs pbghzxpwjc6o6z4al5whc8md -f
| console.print("[green]✓ Hosted evaluation started[/green]") | ||
| console.print(f"\n[cyan]Evaluation ID:[/cyan] {eval_id}") | ||
| console.print(f"\n[dim]View logs with:[/dim] prime eval logs {eval_id} -f") | ||
| console.print(f"[dim]Stop eval with:[/dim] prime eval stop {eval_id}") |
Member
Contributor
Author
|
Closing and merging features to #368 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Note
Medium Risk
Adds new CLI flows that create/cancel remote evaluations and handle polling/log streaming; risk is mainly around API contract correctness, error handling, and user-facing prompts, but changes are isolated to eval-related commands.
Overview
Adds hosted evaluation support to
prime eval/prime env eval: a new--hostedmode starts evaluations on the platform (resolvingowner/namefrom slug or local metadata, optionally prompting toprime env pushif missing), and supports streaming status/logs with polling plus hosted-only options (timeouts, sandbox/instances access, custom secrets, naming).Introduces new
prime evalmanagement commands for hosted runs:logs(tail/follow with status-aware termination + rate-limit handling),stop(cancel), andpull(export completed results into verifiersmetadata.json+results.jsonlon disk). Output UX is improved by standardizing viewer URLs viaget_eval_viewer_url, and tests add coverage for hosted log cleaning/streaming helpers and rename_load_eval_directoryto_load_verifiers_format.Written by Cursor Bugbot for commit 34cda1b. This will update automatically on new commits. Configure here.