feat: allow specifying reasoning level for Slack integration#640
Closed
feat: allow specifying reasoning level for Slack integration#640
Conversation
Add an optional reasoning effort selector to the Slack integration settings that appears when the selected model supports reasoning_effort. The setting is stored in the integration metadata and passed through to the OpenRouter API when the Slack bot processes messages.
Most models (e.g. Claude, Gemini) advertise reasoning support via 'reasoning' in supported_parameters rather than 'reasoning_effort'. Both accept the reasoning.effort field in the OpenRouter API.
Thread the reasoning effort setting through the entire cloud-agent-next stack so that when the Slack bot spawns a Cloud Agent session, the configured reasoning level is forwarded to the Kilo CLI.
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.
Summary
reasoning_effort(detected viasupported_parameters)platform_integrationsmetadata JSONB columnreasoning.effortfield when the Slack bot processes messagesChanges
Service layer (
slack-service.ts)updateModel()now accepts an optionalreasoningEffortparameter and persists it in metadatagetModel()→getModelConfig()returning aSlackModelConfigwith bothmodelSlugandreasoningEfforttRPC router (
slack-router.ts)getInstallationresponse includesreasoningEffort(validated viaReasoningEffortSchema)updateModelmutation accepts optionalreasoningEffortinputBot engine (
run-bot.ts)BotRunInputaccepts optionalreasoning: OpenRouterReasoningConfigSlack bot runtime (
slack-bot.ts)getModelConfig()and builds anOpenRouterReasoningConfigrunBot()via the newreasoningparameterUI (
SlackIntegrationDetails.tsx)<Select>(None / Low / Medium / High) when the model supports it