mirror of
https://github.com/wassname/Open-Assistant.git
synced 2026-07-14 01:00:05 +08:00
14 lines
233 B
Python
14 lines
233 B
Python
from typing import Optional
|
|
|
|
from pydantic import BaseModel
|
|
|
|
|
|
class LabelOption(BaseModel):
|
|
name: str
|
|
display_text: str
|
|
help_text: Optional[str]
|
|
|
|
|
|
class ValidLabelsResponse(BaseModel):
|
|
valid_labels: list[LabelOption]
|