mirror of
https://github.com/wassname/Open-Assistant.git
synced 2026-07-29 11:15:42 +08:00
* add LabelDescription list to labeling tasks * make +1 & -1 emoji exclusive (only one of both or none) * add red_flag emoji to message when reported * fix task's valid labels * fix typo
7 lines
171 B
Python
7 lines
171 B
Python
from oasst_shared.schemas.protocol import LabelDescription
|
|
from pydantic import BaseModel
|
|
|
|
|
|
class ValidLabelsResponse(BaseModel):
|
|
valid_labels: list[LabelDescription]
|