Increase task steps page size

This commit is contained in:
hunteraraujo
2023-09-27 23:30:55 -07:00
parent d2f64a1163
commit a555e936c4

View File

@@ -47,7 +47,7 @@ class ChatViewModel with ChangeNotifier {
try {
// Fetch task steps from the data source
final Map<String, dynamic> stepsResponse =
await _chatService.listTaskSteps(_currentTaskId!);
await _chatService.listTaskSteps(_currentTaskId!, pageSize: 10000);
// Extract steps from the response
final List<dynamic> stepsJsonList = stepsResponse['steps'] ?? [];