chore: bump synalinks to >=0.8.33 - #23
Merged
Merged
Conversation
Picks up the new operational latency metrics (AvgLatency, AvgRewardLatency, AvgEmbeddingLatency, AvgOptimizerLatency) and FailedCalls, which resolve through the existing metrics pipeline with no code change. uv.lock also reflects transitive updates (litellm 1.83.14 -> 1.87.1, synaops 0.2.0 -> 0.2.1). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates the project’s Python dependency floor for synalinks to ensure newer operational latency/token metrics are available via the existing metrics-resolution pipeline, and refreshes the resolved dependency set in uv.lock.
Changes:
- Bump
synalinksminimum version inpyproject.tomlfrom>=0.8.32to>=0.8.33. - Regenerate
uv.lock, updatingsynalinksto0.8.33and reflecting transitive upgrades (notablylitellmandsynaops).
Reviewed changes
Copilot reviewed 1 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
pyproject.toml |
Raises the declared minimum synalinks version to >=0.8.33. |
uv.lock |
Updates the lock to resolve synalinks==0.8.33 (and transitive versions such as litellm==1.87.1, synaops==0.2.1). |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
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.
What
Bumps the
synalinksfloor from>=0.8.32to>=0.8.33inpyproject.tomland regeneratesuv.lock.Why
0.8.33 introduces new operational latency metrics that we want available in arena configs:
AvgLatency,AvgEmbeddingLatency,AvgRewardLatency,AvgOptimizerLatencyFailedCalls(+ reward/embedding/optimizer variants)AvgTotalTokensPerCall,AvgReasoningTokensPerCall, …)Verification
No code change was needed — the metrics resolve through the existing pipeline. Confirmed both:
synalinks.metrics.get(...)resolves each new metric in the bare-name and{class_name, config}dict forms.MetricEntry → _instantiate_metricspath (src/evaluate.py) instantiates them with aliases/directions intact.Note
uv.lockalso reflects transitive updates pulled in by the sync:litellm1.83.14 → 1.87.1,synaops0.2.0 → 0.2.1.🤖 Generated with Claude Code