UnisKB/apps/common/chunk/i_chunk_handle.py

17 lines
296 B
Python
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

# 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