ailixir-api / app /Http /Requests /ChemistryChatRequest.php
AILIXIR Bot
Auto-sync: 201d269f287526269b8ffded5f450ff36b46c740
907b200
Raw
History Blame Contribute Delete
387 Bytes
<?php
namespace App\Http\Requests;
use Illuminate\Foundation\Http\FormRequest;
class ChemistryChatRequest extends FormRequest
{
public function authorize(): bool
{
return true;
}
public function rules(): array
{
return [
'message' => 'required|string|max:5000',
'thread_id' => 'nullable|string|max:255',
];
}
}