mirror of
https://github.com/foss42/apidash.git
synced 2025-12-04 20:13:56 +08:00
genai: Created Package & implemented LLM Config, Manager & Request
This commit is contained in:
13
packages/genai/lib/llm_request.dart
Normal file
13
packages/genai/lib/llm_request.dart
Normal 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,
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user