LightRAG/lightrag/types.py

7 lines
170 B
Python
Raw Normal View History

from pydantic import BaseModel
from typing import List
class GPTKeywordExtractionFormat(BaseModel):
high_level_keywords: List[str]
low_level_keywords: List[str]