mirror of
https://github.com/foss42/apidash.git
synced 2025-12-03 19:39:25 +08:00
14 lines
258 B
Dart
14 lines
258 B
Dart
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,
|
|
});
|
|
}
|