This repository was archived by the owner on Aug 6, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 63
fix(canvas): send model when generating CONTEXT.md with agent #3389
Merged
benjackwhite
merged 1 commit into
main
from
posthog-code/fix-context-md-generation-model
Jul 13, 2026
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,4 @@ | ||
| import { DEFAULT_GATEWAY_MODEL } from "@posthog/agent/gateway-models"; | ||
| import { | ||
| TASK_SERVICE, | ||
| type TaskService, | ||
|
|
@@ -42,6 +43,11 @@ export function useGenerateContext(channelId: string, channelName: string) { | |
| // test a local build of these features before merging. | ||
| workspaceMode, | ||
| allowNoRepo: true, | ||
| // A cloud run pairs a runtime adapter with a model, and the API | ||
| // rejects one without the other. Since this flow lets the agent pick | ||
| // its repo at runtime, it never surfaces a model picker, so pin the | ||
| // default gateway model here to match the adapter the saga defaults to. | ||
| model: DEFAULT_GATEWAY_MODEL, | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This call now sends |
||
| }, | ||
| (output) => invalidateTasks(output.task), | ||
| ); | ||
|
|
||
Oops, something went wrong.
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.
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.
When the gateway does not advertise
claude-opus-4-8for a user, org, or region, this flow still sends that fixed model instead of falling back through the existing model resolver. The generate-context run can then fail validation or startup even though the request now includes amodelfield.