genai: Created Package & implemented LLM Config, Manager & Request

This commit is contained in:
Manas Hejmadi
2025-06-22 23:01:06 +05:30
parent 92bf9d9aa7
commit effe414268
11 changed files with 282 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
class LLMRequestDetails {
String endpoint;
Map<String, String> headers;
String method;
Map<String, dynamic> body;
LLMRequestDetails({
required this.endpoint,
required this.headers,
required this.method,
required this.body,
});
}