mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-12-17 14:49:48 +00:00
add export to eval
This commit is contained in:
parent
cdfc98cf08
commit
4c78432bc8
5 changed files with 66 additions and 0 deletions
|
|
@ -90,6 +90,11 @@ class Eval(Protocol):
|
|||
task_config: EvalTaskConfig,
|
||||
) -> EvaluateResponse: ...
|
||||
|
||||
@webmethod(route="/eval/create-annotation-dataset", method="POST")
|
||||
async def create_annotation_dataset(
|
||||
self, session_id: str, dataset_id: str
|
||||
) -> None: ...
|
||||
|
||||
@webmethod(route="/eval/job/status", method="GET")
|
||||
async def job_status(self, task_id: str, job_id: str) -> Optional[JobStatus]: ...
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue