lightrag / lightrag /types.py
ParisNeo's picture
Fixed missing imports bug and fixed linting
1e89d2a
raw
history blame
171 Bytes
from pydantic import BaseModel
from typing import List
class GPTKeywordExtractionFormat(BaseModel):
high_level_keywords: List[str]
low_level_keywords: List[str]