Spaces:
Sleeping
Sleeping
Sync from enhance: d795216 feat: implement patch response parser for search and replace functionality
9bd4242 | import type { | |
| StudioAssistantMessage, | |
| StudioRun, | |
| StudioRuntimeTurnPlan, | |
| StudioSession, | |
| StudioWorkContext | |
| } from '../domain/types' | |
| export interface StudioTurnPlanResolveInput { | |
| projectId: string | |
| session: StudioSession | |
| run: StudioRun | |
| assistantMessage: StudioAssistantMessage | |
| inputText: string | |
| workContext?: StudioWorkContext | |
| } | |
| export type StudioTurnPlanResolver = ( | |
| input: StudioTurnPlanResolveInput | |
| ) => Promise<StudioRuntimeTurnPlan> | |