DB-GPT/dbgpt/rag/knowledge/csv.py

105 lines
3.5 KiB
Python

"""CSV Knowledge."""
import csv
from typing import Any, Dict, List, Optional, Union
from dbgpt.core import Document
from dbgpt.rag.knowledge.base import (
ChunkStrategy,
DocumentType,
Knowledge,
KnowledgeType,
)
class CSVKnowledge(Knowledge):
"""CSV Knowledge."""
def __init__(
self,
file_path: Optional[str] = None,
knowledge_type: Optional[KnowledgeType] = KnowledgeType.DOCUMENT,
source_column: Optional[str] = None,
encoding: Optional[str] = "utf-8",
loader: Optional[Any] = None,
metadata: Optional[Dict[str, Union[str, List[str]]]] = None,
**kwargs: Any,
) -> None:
"""Create CSV Knowledge with Knowledge arguments.
Args:
file_path(str, optional): file path
knowledge_type(KnowledgeType, optional): knowledge type
source_column(str, optional): source column
encoding(str, optional): csv encoding
loader(Any, optional): loader
"""
super().__init__(
path=file_path,
knowledge_type=knowledge_type,
data_loader=loader,
metadata=metadata,
**kwargs,
)
self._encoding = encoding
self._source_column = source_column
def _load(self) -> List[Document]:
"""Load csv document from loader."""
if self._loader:
documents = self._loader.load()
else:
docs = []
if not self._path:
raise ValueError("file path is required")
with open(self._path, newline="", encoding=self._encoding) as csvfile:
csv_reader = csv.DictReader(csvfile)
for i, row in enumerate(csv_reader):
strs = []
for k, v in row.items():
if k is None or v is None:
continue
strs.append(f"{k.strip()}: {v.strip()}")
content = "\n".join(strs)
try:
source = (
row[self._source_column]
if self._source_column is not None
else self._path
)
except KeyError:
raise ValueError(
f"Source column '{self._source_column}' not in CSV "
f"file."
)
metadata = {"source": source, "row": i}
if self._metadata:
metadata.update(self._metadata) # type: ignore
doc = Document(content=content, metadata=metadata)
docs.append(doc)
return docs
return [Document.langchain2doc(lc_document) for lc_document in documents]
@classmethod
def support_chunk_strategy(cls) -> List[ChunkStrategy]:
"""Return support chunk strategy."""
return [
ChunkStrategy.CHUNK_BY_SIZE,
ChunkStrategy.CHUNK_BY_SEPARATOR,
]
@classmethod
def default_chunk_strategy(cls) -> ChunkStrategy:
"""Return default chunk strategy."""
return ChunkStrategy.CHUNK_BY_SIZE
@classmethod
def type(cls) -> KnowledgeType:
"""Knowledge type of CSV."""
return KnowledgeType.DOCUMENT
@classmethod
def document_type(cls) -> DocumentType:
"""Return document type."""
return DocumentType.CSV