Skip to content

remora-monorepo


remora-monorepo / viewer / StepEditorPanelProps

Interface: StepEditorPanelProps

Defined in: packages/ui/src/panels/step-editor-panel.tsx:21

Properties

allStepIds

allStepIds: string[]

Defined in: packages/ui/src/panels/step-editor-panel.tsx:24


availableToolNames

availableToolNames: string[]

Defined in: packages/ui/src/panels/step-editor-panel.tsx:23


diagnostics?

optional diagnostics: Diagnostic[]

Defined in: packages/ui/src/panels/step-editor-panel.tsx:26


onChange()

onChange: (updates) => void

Defined in: packages/ui/src/panels/step-editor-panel.tsx:29

Parameters

updates

Record<string, unknown>

Returns

void


onClose()

onClose: () => void

Defined in: packages/ui/src/panels/step-editor-panel.tsx:31

Returns

void


onWorkflowMetaChange()?

optional onWorkflowMetaChange: (updates) => void

Defined in: packages/ui/src/panels/step-editor-panel.tsx:30

Parameters

updates

Record<string, unknown>

Returns

void


step

step: { description: string; id: string; name: string; nextStepId?: string; params: { toolInput: {[x: string]: { type: "literal"; value: unknown; } | { expression: string; type: "jmespath"; } | { template: string; type: "template"; }; }; toolName: string; }; type: "tool-call"; } | { description: string; id: string; name: string; nextStepId?: string; params: { cases: object[]; switchOn: { type: "literal"; value: unknown; } | { expression: string; type: "jmespath"; } | { template: string; type: "template"; }; }; type: "switch-case"; } | { description: string; id: string; name: string; nextStepId?: string; params: { itemName: string; loopBodyStepId: string; target: { type: "literal"; value: unknown; } | { expression: string; type: "jmespath"; } | { template: string; type: "template"; }; }; type: "for-each"; } | { description: string; id: string; name: string; nextStepId?: string; params: { outputFormat: object; prompt: string; }; type: "llm-prompt"; } | { description: string; id: string; name: string; nextStepId?: string; params: { outputFormat: object; sourceData: { type: "literal"; value: unknown; } | { expression: string; type: "jmespath"; } | { template: string; type: "template"; }; }; type: "extract-data"; } | { description: string; id: string; name: string; nextStepId?: string; params: { durationMs: { type: "literal"; value: unknown; } | { expression: string; type: "jmespath"; } | { template: string; type: "template"; }; }; type: "sleep"; } | { description: string; id: string; name: string; nextStepId?: string; params: { backoffMultiplier?: { type: "literal"; value: unknown; } | { expression: string; type: "jmespath"; } | { template: string; type: "template"; }; condition: { type: "literal"; value: unknown; } | { expression: string; type: "jmespath"; } | { template: string; type: "template"; }; conditionStepId: string; intervalMs?: { type: "literal"; value: unknown; } | { expression: string; type: "jmespath"; } | { template: string; type: "template"; }; maxAttempts?: { type: "literal"; value: unknown; } | { expression: string; type: "jmespath"; } | { template: string; type: "template"; }; timeoutMs?: { type: "literal"; value: unknown; } | { expression: string; type: "jmespath"; } | { template: string; type: "template"; }; }; type: "wait-for-condition"; } | { description: string; id: string; name: string; nextStepId?: string; params: { instructions: string; maxSteps?: { type: "literal"; value: unknown; } | { expression: string; type: "jmespath"; } | { template: string; type: "template"; }; outputFormat: object; tools: string[]; }; type: "agent-loop"; } | { description: string; id: string; name: string; nextStepId?: string; type: "start"; } | { description: string; id: string; name: string; nextStepId?: string; params?: { output: { type: "literal"; value: unknown; } | { expression: string; type: "jmespath"; } | { template: string; type: "template"; }; }; type: "end"; }

Defined in: packages/ui/src/panels/step-editor-panel.tsx:22


toolSchemas?

optional toolSchemas: ToolDefinitionMap

Defined in: packages/ui/src/panels/step-editor-panel.tsx:25


workflowInputSchema?

optional workflowInputSchema: object

Defined in: packages/ui/src/panels/step-editor-panel.tsx:27


workflowOutputSchema?

optional workflowOutputSchema: object

Defined in: packages/ui/src/panels/step-editor-panel.tsx:28