class LLMRequestDetails { String endpoint; Map headers; String method; Map body; LLMRequestDetails({ required this.endpoint, required this.headers, required this.method, required this.body, }); }