Skip to content

Commit e5a0795

Browse files
committed
v0.1.6
1 parent 793fc33 commit e5a0795

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "inferencesh"
7-
version = "0.1.5"
7+
version = "0.1.6"
88
description = "inference.sh Python SDK"
99
authors = [
1010
{name = "Inference Shell Inc.", email = "hello@inference.sh"},

src/inferencesh/sdk.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from typing import Optional, Union
1+
from typing import Optional, Union, ClassVar
22
from pydantic import BaseModel, ConfigDict
33
import mimetypes
44
import os
@@ -10,7 +10,11 @@ class BaseAppOutput(BaseModel):
1010
pass
1111

1212
class 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

0 commit comments

Comments
 (0)