We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f609399 commit 5b40a7dCopy full SHA for 5b40a7d
weave/flow/code_scorer.py
@@ -5,6 +5,7 @@
5
from typing import Any
6
7
from pydantic import Field, model_validator
8
+
9
from weave.flow.scorer import Scorer
10
from weave.trace.objectify import register_object
11
@@ -19,7 +20,9 @@ class CodeScorer(Scorer):
19
20
At least one of docker_image or requirements must be set.
21
"""
22
- op_ref: str = Field(description="URI reference to the published Weave Op to execute")
23
+ op_ref: str = Field(
24
+ description="URI reference to the published Weave Op to execute"
25
+ )
26
docker_image: str | None = Field(
27
default=None,
28
description="Docker image to use as the sandbox environment",
0 commit comments