precommit failures fixed

This commit is contained in:
Dinesh Yeduguru 2024-11-01 14:41:29 -07:00 committed by Dinesh Yeduguru
parent 2261e05baa
commit 4a26c0d54f
3 changed files with 6 additions and 6 deletions

View file

@ -10,10 +10,10 @@ from llama_models.llama3.api.datatypes import URL
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 llama_stack.apis.common.type_system import ParamType
@json_schema_type
class DatasetDef(BaseModel):

View file

@ -7,9 +7,9 @@
from typing import Any, Dict, List, Literal, Optional, Protocol, runtime_checkable
from llama_models.schema_utils import json_schema_type, webmethod
from pydantic import BaseModel, Field
from llama_stack.apis.common.type_system import ParamType
from pydantic import BaseModel, Field
@json_schema_type