buildRequestBody abstract method
Build the request body for chat requests
Each provider should implement this to format requests according to their API
Implementation
Map<String, dynamic> buildRequestBody(
List<ChatMessage> messages,
List<Tool>? tools,
bool stream,
);