mirror of
https://github.com/HKUDS/LightRAG.git
synced 2025-07-06 16:41:18 +00:00
7 lines
170 B
Python
7 lines
170 B
Python
![]() |
from pydantic import BaseModel
|
||
|
from typing import List
|
||
|
|
||
|
class GPTKeywordExtractionFormat(BaseModel):
|
||
|
high_level_keywords: List[str]
|
||
|
low_level_keywords: List[str]
|