presenton/servers/fastapi/models/json_path_guide.py

14 lines
217 B
Python

from typing import List
from pydantic import BaseModel
class DictGuide(BaseModel):
key: str
class ListGuide(BaseModel):
index: int
class JsonPathGuide(BaseModel):
guides: List[DictGuide | ListGuide]