protected function getFormSchema(): array
{
// dd($this->conversation);
return [
FilamentForms\Repeater::make('history')
->schema([
FilamentForms\TextInput::make('name')
->readOnly(true)
->label('')
])
->addable(false)
->model($this->conversation)
->statePath('data')
];
}