We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6bb2541 commit 793fc33Copy full SHA for 793fc33
pyproject.toml
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
5
[project]
6
name = "inferencesh"
7
-version = "0.1.4"
+version = "0.1.5"
8
description = "inference.sh Python SDK"
9
authors = [
10
{name = "Inference Shell Inc.", email = "hello@inference.sh"},
src/inferencesh/sdk.py
@@ -10,8 +10,7 @@ class BaseAppOutput(BaseModel):
pass
11
12
class BaseApp(BaseModel):
13
- model_config = ConfigDict(arbitrary_types_allowed=True)
14
- extra = "allow"
+ model_config = ConfigDict(arbitrary_types_allowed=True, extra='allow')
15
async def setup(self):
16
17
0 commit comments