(
params: CreateAutonomyRunParams & { sourceId: string },
)
| 515 | } |
| 516 | |
| 517 | export async function createAutonomyRunIfNoActiveSource( |
| 518 | params: CreateAutonomyRunParams & { sourceId: string }, |
| 519 | ): Promise<AutonomyRunRecord | null> { |
| 520 | return createAutonomyRunCore(params, true) |
| 521 | } |
| 522 | |
| 523 | function buildManagedFlowStepPrompt( |
| 524 | flow: AutonomyFlowRecord, |
nothing calls this directly
no test coverage detected