-
-
Notifications
You must be signed in to change notification settings - Fork 4.5k
feat(explorer): add config for intelligence level to client #103873
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #103873 +/- ##
===========================================
+ Coverage 80.58% 80.59% +0.01%
===========================================
Files 9292 9296 +4
Lines 396718 396887 +169
Branches 25286 25286
===========================================
+ Hits 319681 319870 +189
+ Misses 76577 76557 -20
Partials 460 460 |
| self.user = user | ||
| self.artifact_schema = artifact_schema | ||
| self.custom_tools = custom_tools or [] | ||
| self.intelligence_level = intelligence_level |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So do we pick the model on the based on the intelligence_level level? Like 2.5 Flash-lite for low or Sonnet 4.5 / Opus 4 for high?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yeah
Adds the ability to configure intelligence in the explorer client. We don't expose specific LLM configs but allow the dev to pick between low, medium, and high (reason for this is LLM landscape is constantly changing and there's a lot of stuff we don't want the average dev in
sentryto think about; it'll be up to theseerplatform to decide the best models for each level).Also tacking on some comment cleanup.
Requires https://github.com/getsentry/seer/pull/4098. Closes AIML-1660