Developer Tools > Test a Conversation Prompt Updated to use 4.1#2438
Merged
smian1 merged 2 commits intoBasedHardware:mainfrom May 24, 2025
Merged
Developer Tools > Test a Conversation Prompt Updated to use 4.1#2438smian1 merged 2 commits intoBasedHardware:mainfrom
smian1 merged 2 commits intoBasedHardware:mainfrom
Conversation
…1) for Developer Tools > Test a Conversation Prompt
|
@smian1 is attempting to deploy a commit to the kodjima33's projects Team on Vercel. A member of the Team first needs to authorize it. |
Contributor
There was a problem hiding this comment.
Pull Request Overview
Refactors the summary generation function to use the upgraded llm_medium_experiment (4.1) model instead of llm_mini.
- Swaps out the LLM invocation in
generate_summary_with_prompt - Redirects summary calls to the new
llm_medium_experimentinterface
Comments suppressed due to low confidence (2)
backend/utils/llm/conversation_processing.py:260
- Add or update unit tests to verify that
generate_summary_with_promptcorrectly invokesllm_medium_experimentand returns its response, ensuring behavior remained consistent after the model swap.
response = llm_medium_experiment.invoke(prompt)
backend/utils/llm/conversation_processing.py:260
- [nitpick] Switching to a higher-capability model may increase latency or cost; consider documenting this trade-off or implementing a timeout/retry strategy if needed.
response = llm_medium_experiment.invoke(prompt)
Glucksberg
pushed a commit
to Glucksberg/omi-local
that referenced
this pull request
Apr 28, 2026
…dHardware#2438) Refactor conversation processing to utilize llm_medium_experiment (4.1) for Developer Tools > Test a Conversation Prompt
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.
Refactor conversation processing to utilize llm_medium_experiment (4.1) for Developer Tools > Test a Conversation Prompt