Skip to content

fix: use thinking content in encode_conversations_with_harmony#400

Open
yurekami wants to merge 1 commit intounslothai:mainfrom
yurekami:fix/thinking-message-handling
Open

fix: use thinking content in encode_conversations_with_harmony#400
yurekami wants to merge 1 commit intounslothai:mainfrom
yurekami:fix/thinking-message-handling

Conversation

@yurekami
Copy link
Contributor

Summary

  • Fixes encode_conversations_with_harmony to properly use message["thinking"] instead of message["content"] when the "thinking" key is present
  • Also includes the final content with "final" channel when both thinking and content are present
  • Previously, the thinking/analysis content was completely lost

Related Issue

Fixes #246

Test plan

  • Verify messages with thinking key now properly encode the thinking content with "analysis" channel
  • Verify messages with both thinking and content include both pieces of content
  • Verify messages without thinking still work as expected

🤖 Generated with Claude Code

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>
@gemini-code-assist
Copy link
Contributor

Summary of Changes

Hello @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 encode_conversations_with_harmony function that previously led to the omission of critical 'thinking' content from assistant messages. The updated logic ensures that when an assistant message includes a 'thinking' key, its content is properly captured and channeled as 'analysis'. Furthermore, if a 'content' key is also present, it is now explicitly included as 'final' content, thereby preserving the full context of the assistant's response and preventing data loss.

Highlights

  • Corrected Thinking Content Usage: The encode_conversations_with_harmony function now correctly uses message["thinking"] for assistant messages when the 'thinking' key is present, ensuring this analytical content is not lost.
  • Inclusion of Final Content: When both 'thinking' and 'content' keys are present in an assistant message, the final content is now also included with a 'final' channel, providing a complete conversation record.
  • Bug Fix: This pull request fixes a bug where the 'thinking' or analysis content from assistant messages was previously completely lost during conversation encoding.

🧠 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 Assist

The 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 /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands on the current page.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in pull request comments and review comments.
Help /gemini help Displays a list of available commands.

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 .gemini/ folder in the base of the repository. Detailed instructions can be found here.

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

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

Copy link
Contributor

@gemini-code-assist gemini-code-assist bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

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:
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

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.

Suggested change
if "thinking" in message:
if "thinking" in message and message["thinking"]:

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

encode_conversation_with_harmony try to refer "content" when "thinking" in message.

1 participant