forked from phoenix-oss/llama-stack-mirror
precommit
This commit is contained in:
parent
035b2dcb60
commit
c80d1f906b
4 changed files with 17 additions and 34 deletions
|
@ -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):
|
||||
"""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue