Files
2026-07-13 13:32:05 +08:00

8 lines
180 B
Python

from typing import Union, List, Dict
from pydantic import BaseModel
class SIMBARewriteSchema(BaseModel):
discussion: str
revised_prompt: Union[str, List[Dict[str, str]]]