mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-07-30 23:51:00 +00:00
config field doc
This commit is contained in:
parent
be0649d79d
commit
f3955d04d7
1 changed files with 4 additions and 1 deletions
|
@ -72,7 +72,10 @@ class ScoringFnDef(BaseModel):
|
||||||
return_type: ParamType = Field(
|
return_type: ParamType = Field(
|
||||||
description="The return type of the deterministic function",
|
description="The return type of the deterministic function",
|
||||||
)
|
)
|
||||||
config: Optional[ScoringFnConfig] = None # type: ignore
|
config: Optional[ScoringFnConfig] = Field( # type: ignore
|
||||||
|
description="The configuration for the scoring function for benchmark eval, we could override this for app eval",
|
||||||
|
default=None,
|
||||||
|
)
|
||||||
# We can optionally add information here to support packaging of code, etc.
|
# We can optionally add information here to support packaging of code, etc.
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue