chainlit-bot / models.py
atolat30's picture
Refactor: Move configurations to JSON files and update to GPT-4o
e473be1
raw
history blame contribute delete
181 Bytes
from dataclasses import dataclass
from typing import List
@dataclass
class AspectInfo:
description: str
examples: List[str]
system_template: str
user_template: str