TextInput::make('Prompt')
->label(__('AI Assistant'))
->afterStateUpdated(function (Set $set,) {
$set('content', 'Foobar');
})
->live(onBlur: 500)
->columnSpan(2),
RichEditor::make('content')
->required()
->columnSpanFull(),