File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed
Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44
55[project ]
66name = " inferencesh"
7- version = " 0.1.5 "
7+ version = " 0.1.6 "
88description = " inference.sh Python SDK"
99authors = [
1010 {name = " Inference Shell Inc." , email = " hello@inference.sh" },
Original file line number Diff line number Diff line change 1- from typing import Optional , Union
1+ from typing import Optional , Union , ClassVar
22from pydantic import BaseModel , ConfigDict
33import mimetypes
44import os
@@ -10,7 +10,11 @@ class BaseAppOutput(BaseModel):
1010 pass
1111
1212class BaseApp (BaseModel ):
13- model_config = ConfigDict (arbitrary_types_allowed = True , extra = 'allow' )
13+ model_config = ConfigDict (
14+ arbitrary_types_allowed = True ,
15+ extra = 'allow'
16+ )
17+
1418 async def setup (self ):
1519 pass
1620
You can’t perform that action at this time.
0 commit comments