@@ -290,16 +290,6 @@ export function LoopForm({ loop }: LoopFormProps) {
290290
291291 < Divider />
292292
293- < Field label = "Behavior" >
294- < LoopBehaviorFields
295- behaviors = { values . behaviors }
296- disabled = { isSubmitting }
297- onChange = { ( behaviors ) => patch ( { behaviors } ) }
298- />
299- </ Field >
300-
301- < Divider />
302-
303293 < Field label = "Notifications" >
304294 < LoopNotificationsFields
305295 notifications = { values . notifications }
@@ -326,23 +316,32 @@ export function LoopForm({ loop }: LoopFormProps) {
326316 Advanced
327317 </ Text >
328318 < Text className = "text-[11.5px] text-gray-9" >
329- Model and reasoning
319+ Behavior, model and reasoning
330320 </ Text >
331321 </ button >
332322 { showAdvanced ? (
333- < LoopModelFields
334- adapter = { values . runtimeAdapter }
335- model = { values . model }
336- reasoningEffort = { values . reasoningEffort }
337- disabled = { isSubmitting }
338- onAdapterChange = { ( runtimeAdapter ) =>
339- patch ( { runtimeAdapter } )
340- }
341- onModelChange = { ( model ) => patch ( { model } ) }
342- onReasoningEffortChange = { ( reasoningEffort ) =>
343- patch ( { reasoningEffort } )
344- }
345- />
323+ < Flex direction = "column" gap = "4" >
324+ < Field label = "Behavior" >
325+ < LoopBehaviorFields
326+ behaviors = { values . behaviors }
327+ disabled = { isSubmitting }
328+ onChange = { ( behaviors ) => patch ( { behaviors } ) }
329+ />
330+ </ Field >
331+ < LoopModelFields
332+ adapter = { values . runtimeAdapter }
333+ model = { values . model }
334+ reasoningEffort = { values . reasoningEffort }
335+ disabled = { isSubmitting }
336+ onAdapterChange = { ( runtimeAdapter ) =>
337+ patch ( { runtimeAdapter } )
338+ }
339+ onModelChange = { ( model ) => patch ( { model } ) }
340+ onReasoningEffortChange = { ( reasoningEffort ) =>
341+ patch ( { reasoningEffort } )
342+ }
343+ />
344+ </ Flex >
346345 ) : null }
347346 </ Flex >
348347 </ Step >
0 commit comments