mirror of
https://github.com/aljazceru/Auto-GPT.git
synced 2025-12-17 22:14:28 +01:00
Merge commit 'e5d30a9f6d0854e20049309333c2f637cd03025c' as 'frontend'
This commit is contained in:
10
frontend/lib/models/step_request_body.dart
Normal file
10
frontend/lib/models/step_request_body.dart
Normal file
@@ -0,0 +1,10 @@
|
||||
class StepRequestBody {
|
||||
final String input;
|
||||
final Map<String, dynamic>? additionalInput;
|
||||
|
||||
StepRequestBody({required this.input, this.additionalInput});
|
||||
|
||||
Map<String, dynamic> toJson() {
|
||||
return {'input': input, 'additional_input': additionalInput};
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user