precommit

This commit is contained in:
Xi Yan 2025-03-16 19:40:18 -07:00
parent 035b2dcb60
commit c80d1f906b
4 changed files with 17 additions and 34 deletions

View file

@ -4,9 +4,7 @@
# This source code is licensed under the terms described in the LICENSE file in
# the root directory of this source tree.
from .graders import * # noqa: F401 F403
from enum import Enum
from typing import (
Annotated,
Any,
@ -15,17 +13,18 @@ from typing import (
Literal,
Optional,
Protocol,
runtime_checkable,
Union,
runtime_checkable,
)
from llama_stack.apis.datasets import DatasetPurpose
from llama_stack.apis.resource import Resource, ResourceType
from llama_stack.schema_utils import json_schema_type, register_schema, webmethod
from pydantic import BaseModel, Field
from llama_stack.apis.datasets import DatasetPurpose
from llama_stack.apis.resource import Resource, ResourceType
from llama_stack.schema_utils import json_schema_type, register_schema, webmethod
from .graders import * # noqa: F401 F403
class GraderType(Enum):
"""