fix: use thinking content in encode_conversations_with_harmony#400
fix: use thinking content in encode_conversations_with_harmony#400yurekami wants to merge 1 commit intounslothai:mainfrom
Conversation
When a message contains "thinking", the code was using message["content"] instead of message["thinking"], causing the thinking/analysis content to be lost entirely. This fix: - Uses message["thinking"] for the "analysis" channel content - Also includes message["content"] with "final" channel when present Fixes unslothai#246 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Summary of ChangesHello @yurekami, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request resolves an issue within the Highlights
🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console. Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
There was a problem hiding this comment.
Code Review
This pull request correctly fixes an issue where thinking content in assistant messages was being ignored. The new logic properly encodes thinking content as an 'analysis' message and, if present, also includes the content as a 'final' message. My review includes a suggestion to ensure consistency by checking that thinking content is not empty before processing, similar to how content is handled. This will prevent the creation of empty 'analysis' messages.
| @@ -1345,8 +1345,16 @@ def encode_conversations_with_harmony( | |||
| ) | |||
| elif message["role"] == "assistant": | |||
| if "thinking" in message: | |||
There was a problem hiding this comment.
For consistency with how message["content"] is handled within this block (line 1353), you should also check if message["thinking"] is not empty before creating a message from it. This will prevent creating empty 'analysis' messages and makes the logic more robust.
| if "thinking" in message: | |
| if "thinking" in message and message["thinking"]: |
Summary
encode_conversations_with_harmonyto properly usemessage["thinking"]instead ofmessage["content"]when the "thinking" key is presentRelated Issue
Fixes #246
Test plan
thinkingkey now properly encode the thinking content with "analysis" channelthinkingandcontentinclude both pieces of contentthinkingstill work as expected🤖 Generated with Claude Code