dify-run / api /libs /infinite_scroll_pagination.py
Last commit not found
raw
history blame
164 Bytes
class InfiniteScrollPagination:
def __init__(self, data, limit, has_more):
self.data = data
self.limit = limit
self.has_more = has_more