UnisKB/apps/common/chunk/i_chunk_handle.py

17 lines
296 B
Python
Raw Normal View History

# coding=utf-8
"""
@project: MaxKB
@Author
@file i_chunk_handle.py
@date2024/7/23 16:51
@desc:
"""
from abc import ABC, abstractmethod
from typing import List
class IChunkHandle(ABC):
@abstractmethod
def handle(self, chunk_list: List[str]):
pass