pre commit

This commit is contained in:
Xi Yan 2024-11-05 15:06:44 -08:00
parent 60fc191308
commit 04eebd8a36
2 changed files with 1 additions and 14 deletions

View file

@ -14,7 +14,6 @@ from llama_stack.apis.scoring_functions import * # noqa: F403
from llama_stack.apis.agents import AgentConfig
from llama_stack.apis.common.job_types import Job, JobStatus
from llama_stack.apis.scoring import * # noqa: F403
from llama_stack.apis.scoring_functions import * # noqa: F403
from llama_stack.apis.eval_tasks import * # noqa: F403

View file

@ -3,23 +3,11 @@
#
# This source code is licensed under the terms described in the LICENSE file in
# the root directory of this source tree.
from enum import Enum
from typing import (
Any,
Dict,
List,
Literal,
Optional,
Protocol,
runtime_checkable,
Union,
)
from typing import Any, Dict, List, Literal, Optional, Protocol, runtime_checkable
from llama_models.schema_utils import json_schema_type, webmethod
from llama_stack.apis.common.type_system import ParamType
from pydantic import BaseModel, Field
from typing_extensions import Annotated
@json_schema_type