refactor: Refactor datasource module (#1309)

This commit is contained in:
Fangyin Cheng
2024-03-18 18:06:40 +08:00
committed by GitHub
parent 84bedee306
commit 4970c9f813
108 changed files with 1194 additions and 1066 deletions

View File

@@ -3,7 +3,7 @@
from abc import ABC, abstractmethod
from typing import Callable, List, Optional
from dbgpt.rag.chunk import Chunk
from dbgpt.core import Chunk
RANK_FUNC = Callable[[List[Chunk]], List[Chunk]]