diff options
| author | Adam Malczewski <[email protected]> | 2026-06-28 22:23:25 +0900 |
|---|---|---|
| committer | Adam Malczewski <[email protected]> | 2026-06-28 22:23:25 +0900 |
| commit | 81e9e7ee9064b98e06a5f947c67a6ec73b7e578d (patch) | |
| tree | a7bbc8d912ab0746af16e4ccfd1623f0f990c828 /packages/cli/src/message.ts | |
| parent | 1ea99dd6e2cdcdd6e4f581f3908719d8fa3fc780 (diff) | |
| parent | 8175a3df065155c5a164e29bd1c47aad392ae555 (diff) | |
| download | dispatch-81e9e7ee9064b98e06a5f947c67a6ec73b7e578d.tar.gz dispatch-81e9e7ee9064b98e06a5f947c67a6ec73b7e578d.zip | |
Merge branch 'feature/summon-title' into predev
Diffstat (limited to 'packages/cli/src/message.ts')
| -rw-r--r-- | packages/cli/src/message.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/cli/src/message.ts b/packages/cli/src/message.ts index ddbec6b..5db9966 100644 --- a/packages/cli/src/message.ts +++ b/packages/cli/src/message.ts @@ -39,6 +39,7 @@ interface ChatCmd { readonly conversationId?: string | undefined; readonly reasoningEffort?: ReasoningEffort | undefined; readonly workspaceId?: string | undefined; + readonly title?: string | undefined; readonly showReasoning: boolean; } @@ -55,5 +56,6 @@ export function buildChatRequest(cmd: ChatCmd, ctx: BuildCtx): ChatRequest { ...(cmd.cwd !== undefined ? { cwd: cmd.cwd } : { cwd: ctx.cwd }), ...(cmd.reasoningEffort !== undefined && { reasoningEffort: cmd.reasoningEffort }), ...(cmd.workspaceId !== undefined && { workspaceId: cmd.workspaceId }), + ...(cmd.title !== undefined && { title: cmd.title }), }; } |
