mirror of
https://github.com/harivansh-afk/sandbox-agent.git
synced 2026-04-17 04:02:25 +00:00
Fix Foundry handoff creation flow
This commit is contained in:
parent
6d7e67fe72
commit
5e733e8b37
9 changed files with 30 additions and 15 deletions
|
|
@ -61,6 +61,7 @@ export const CreateHandoffInputSchema = z.object({
|
|||
task: z.string().min(1),
|
||||
explicitTitle: z.string().trim().min(1).optional(),
|
||||
explicitBranchName: z.string().trim().min(1).optional(),
|
||||
initialPrompt: z.string().optional(),
|
||||
providerId: ProviderIdSchema.optional(),
|
||||
agentType: AgentTypeSchema.optional(),
|
||||
onBranch: z.string().trim().min(1).optional()
|
||||
|
|
|
|||
|
|
@ -130,6 +130,7 @@ export interface HandoffWorkbenchCreateHandoffInput {
|
|||
title?: string;
|
||||
branch?: string;
|
||||
model?: WorkbenchModelId;
|
||||
initialPrompt?: string;
|
||||
}
|
||||
|
||||
export interface HandoffWorkbenchRenameInput {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue