Skip to content

Commit 61c7328

Browse files
author
Dylan Huang
committed
update
1 parent 572921e commit 61c7328

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

eval_protocol/models.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,14 @@ class InputMetadata(BaseModel):
211211

212212
model_config = ConfigDict(extra="allow")
213213

214-
row_id: Optional[str] = Field(None, description="Unique string to ID the row")
214+
row_id: Optional[str] = Field(
215+
default=None,
216+
description=(
217+
"Unique string to ID the row. If not provided, a stable hash will be generated "
218+
"based on the row's content. The hash removes fields that are not typically stable "
219+
"across processes such as created_at, execution_metadata, and pid."
220+
),
221+
)
215222
completion_params: CompletionParams = Field(
216223
default_factory=dict, description="Completion endpoint parameters used"
217224
)

0 commit comments

Comments
 (0)