Conversation
optimize_parameters stripped the opening markdown fence with
text.index("\n"), which raises ValueError when the model replies with a
fence but no newline (e.g. ```{...}```). The function is meant to degrade
to a reasoning-only dict rather than raise, so fall back to dropping the
three backticks when no newline is present. Adds regression tests for
both the single-line fenced JSON and a bare-fence reply.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
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.
自动维护改动
类型:维护(小 bug 修复 + 回归测试)
改动:
optimize_parameters剥离 markdown 围栏时用text.index("\n"),模型返回不含换行的围栏回复(如```{...}```)会抛ValueError;改为无换行时直接去掉开头三个反引号,保持"解析失败降级为 reasoning-only"的既有语义。新增 2 个回归测试(修复前失败、修复后通过)。测试:通过(
tests/test_parameter_optimizer.py8 passed;本地全量 284 passed / 1 skipped;ruff check + format 通过)参考:无
本 PR 由每日维护任务生成,请人工 review 后再合并。
🤖 Generated with Claude Code