mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-26 01:33:05 +00:00
--story=1016154 --user=刘瑞斌 【知识库】-支持上传表格类型文档(Excel/CSV)按行分段 https://www.tapd.cn/57709429/s/1567910
20 lines
356 B
Python
20 lines
356 B
Python
# coding=utf-8
|
||
"""
|
||
@project: maxkb
|
||
@Author:虎
|
||
@file: base_parse_qa_handle.py
|
||
@date:2024/5/21 14:56
|
||
@desc:
|
||
"""
|
||
from abc import ABC, abstractmethod
|
||
|
||
|
||
class BaseParseTableHandle(ABC):
|
||
@abstractmethod
|
||
def support(self, file, get_buffer):
|
||
pass
|
||
|
||
@abstractmethod
|
||
def handle(self, file, get_buffer):
|
||
pass
|