-
Notifications
You must be signed in to change notification settings - Fork 156
feat(server)!: replace individual properties with SendMessageRequest in RequestContext #581
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
Merged
JakubWorek
merged 4 commits into
epic/1.0_breaking_changes
from
jakubworek/use-send-message-request-in-request-context
Jul 16, 2026
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
fa4fa87
feat(server): encapsulate SendMessageRequest in RequestContext to imp…
JakubWorek 2c40d21
fix: apply suggestion
JakubWorek 7a174c8
refactor: inline RequestContextParams interface into RequestContext c…
JakubWorek 203fcec
refactor: change interface and update migration docs with breaking ch…
JakubWorek 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
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,36 +1,40 @@ | ||
| import { Message, Task } from '../../index.js'; | ||
| import { Message, SendMessageRequest, Task } from '../../index.js'; | ||
| import { ServerCallContext } from '../context.js'; | ||
|
|
||
| /** | ||
| * Holds information about the current request being processed by the server. | ||
| * | ||
| * Wraps the incoming {@link SendMessageRequest} so agent executors can reach | ||
| * the full payload (message, configuration, metadata, tenant) via `request`. | ||
| */ | ||
| export class RequestContext { | ||
| public readonly userMessage: Message; | ||
| public readonly request: SendMessageRequest; | ||
| public readonly taskId: string; | ||
| public readonly contextId: string; | ||
| public readonly context: ServerCallContext; | ||
| public readonly task?: Task; | ||
| public readonly referenceTasks?: Task[]; | ||
| public readonly context: ServerCallContext; | ||
| /** | ||
| * The request-level metadata from the originating `SendMessageRequest`, | ||
| * when provided. This is the spec's "flexible key-value map for passing | ||
| * additional context or parameters" and is distinct from | ||
| * `userMessage.metadata`. | ||
| */ | ||
| public readonly metadata?: Record<string, unknown>; | ||
|
|
||
| constructor( | ||
| userMessage: Message, | ||
| request: SendMessageRequest, | ||
| taskId: string, | ||
| contextId: string, | ||
| context: ServerCallContext, | ||
| task?: Task, | ||
| referenceTasks?: Task[], | ||
| metadata?: Record<string, unknown> | ||
| referenceTasks?: Task[] | ||
| ) { | ||
| this.userMessage = userMessage; | ||
| if (!request.message) { | ||
| throw new Error('RequestContext requires request.message to be set.'); | ||
| } | ||
| this.request = structuredClone(request); | ||
| this.taskId = taskId; | ||
| this.contextId = contextId; | ||
| this.context = context; | ||
| this.task = task; | ||
| this.referenceTasks = referenceTasks; | ||
| this.metadata = metadata ? structuredClone(metadata) : undefined; | ||
| } | ||
|
|
||
| get userMessage(): Message { | ||
| return this.request.message!; | ||
| } | ||
| } |
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
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
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.
Uh oh!
There was an error while loading. Please reload this page.