We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d88a04 commit f88ded9Copy full SHA for f88ded9
src/distilabel/steps/tasks/ultrafeedback.py
@@ -18,7 +18,7 @@
18
19
import orjson
20
from jinja2 import Template
21
-from pydantic import PrivateAttr
+from pydantic import Field, PrivateAttr
22
from typing_extensions import override
23
24
from distilabel.steps.tasks.base import Task
@@ -200,7 +200,7 @@ class UltraFeedback(Task):
200
"overall-rating",
201
] = "overall-rating"
202
203
- system_prompt: str = PrivateAttr(
+ system_prompt: str = Field(
204
default=(
205
"Your role is to evaluate text quality based on given criteria.\n"
206
'You\'ll receive an instructional description ("Instruction") and {no_texts} text outputs ("Text").\n'
0 commit comments