mirror of
https://github.com/meta-llama/llama-stack.git
synced 2026-01-02 15:04:32 +00:00
jobs eval scoring
This commit is contained in:
parent
3a75799900
commit
7b4f7888f1
5 changed files with 1537 additions and 939 deletions
|
|
@ -20,6 +20,13 @@ class JobStatus(Enum):
|
|||
cancelled = "cancelled"
|
||||
|
||||
|
||||
class JobType(Enum):
|
||||
batch_inference = "batch_inference"
|
||||
scoring = "scoring"
|
||||
evaluation = "evaluation"
|
||||
post_training = "post_training"
|
||||
|
||||
|
||||
@json_schema_type
|
||||
class CommonJobFields(BaseModel):
|
||||
"""Common fields for all jobs.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue