Skip to content

Commit 8efa47d

Browse files
chore(api): update homebrew tap and code samples
1 parent bfe4bcd commit 8efa47d

15 files changed

Lines changed: 3 additions & 74 deletions

.stats.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 26
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/dedalus-labs%2Fdedalus-8209ddf6d2b12680c9d569e68ad89c347a59dcad5de4b2e5144ab9e2d6a41cbf.yml
3-
openapi_spec_hash: 220a31347115af6017c6d2e7555343c3
4-
config_hash: 1b4ea4f6d19e650bbc797440435befc4
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/dedalus-labs%2Fdedalus-2412fc9544367895508dc1f8377c71b177df7bbfdf0888087edb84e8067f62d9.yml
3+
openapi_spec_hash: c3563b6ed3c5a0f8ff3a09f8c8725bc4
4+
config_hash: e76f944dbbffdb984456e9fbe7a2d2ec

src/dedalus_sdk/types/workspace.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
11
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
22

3-
from typing import Optional
43
from typing_extensions import Literal
54

6-
from pydantic import Field as FieldInfo
7-
85
from .._models import BaseModel
96
from .lifecycle_status import LifecycleStatus
107

@@ -25,6 +22,3 @@ class Workspace(BaseModel):
2522
"""CPU in vCPUs."""
2623

2724
workspace_id: str
28-
29-
schema_: Optional[str] = FieldInfo(alias="$schema", default=None)
30-
"""A URL to the JSON Schema for this object."""

src/dedalus_sdk/types/workspace_list.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
from datetime import datetime
55
from typing_extensions import Literal
66

7-
from pydantic import Field as FieldInfo
8-
97
from .._models import BaseModel
108
from .lifecycle_status import LifecycleStatus
119

@@ -33,7 +31,4 @@ class Item(BaseModel):
3331
class WorkspaceList(BaseModel):
3432
items: Optional[List[Item]] = None
3533

36-
schema_: Optional[str] = FieldInfo(alias="$schema", default=None)
37-
"""A URL to the JSON Schema for this object."""
38-
3934
next_cursor: Optional[str] = None

src/dedalus_sdk/types/workspaces/artifact.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33
from typing import Optional
44
from datetime import datetime
55

6-
from pydantic import Field as FieldInfo
7-
86
from ..._models import BaseModel
97

108
__all__ = ["Artifact"]
@@ -21,9 +19,6 @@ class Artifact(BaseModel):
2119

2220
workspace_id: str
2321

24-
schema_: Optional[str] = FieldInfo(alias="$schema", default=None)
25-
"""A URL to the JSON Schema for this object."""
26-
2722
download_url: Optional[str] = None
2823

2924
execution_id: Optional[str] = None

src/dedalus_sdk/types/workspaces/artifact_list.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22

33
from typing import List, Optional
44

5-
from pydantic import Field as FieldInfo
6-
75
from .artifact import Artifact
86
from ..._models import BaseModel
97

@@ -13,7 +11,4 @@
1311
class ArtifactList(BaseModel):
1412
items: Optional[List[Artifact]] = None
1513

16-
schema_: Optional[str] = FieldInfo(alias="$schema", default=None)
17-
"""A URL to the JSON Schema for this object."""
18-
1914
next_cursor: Optional[str] = None

src/dedalus_sdk/types/workspaces/execution.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
from datetime import datetime
55
from typing_extensions import Literal
66

7-
from pydantic import Field as FieldInfo
8-
97
from ..._models import BaseModel
108
from .artifact_ref import ArtifactRef
119

@@ -23,9 +21,6 @@ class Execution(BaseModel):
2321

2422
workspace_id: str
2523

26-
schema_: Optional[str] = FieldInfo(alias="$schema", default=None)
27-
"""A URL to the JSON Schema for this object."""
28-
2924
artifacts: Optional[List[ArtifactRef]] = None
3025

3126
completed_at: Optional[datetime] = None

src/dedalus_sdk/types/workspaces/execution_events.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22

33
from typing import List, Optional
44

5-
from pydantic import Field as FieldInfo
6-
75
from ..._models import BaseModel
86
from .execution_event import ExecutionEvent
97

@@ -13,7 +11,4 @@
1311
class ExecutionEvents(BaseModel):
1412
items: Optional[List[ExecutionEvent]] = None
1513

16-
schema_: Optional[str] = FieldInfo(alias="$schema", default=None)
17-
"""A URL to the JSON Schema for this object."""
18-
1914
next_cursor: Optional[str] = None

src/dedalus_sdk/types/workspaces/execution_list.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22

33
from typing import List, Optional
44

5-
from pydantic import Field as FieldInfo
6-
75
from ..._models import BaseModel
86
from .execution import Execution
97

@@ -13,7 +11,4 @@
1311
class ExecutionList(BaseModel):
1412
items: Optional[List[Execution]] = None
1513

16-
schema_: Optional[str] = FieldInfo(alias="$schema", default=None)
17-
"""A URL to the JSON Schema for this object."""
18-
1914
next_cursor: Optional[str] = None

src/dedalus_sdk/types/workspaces/execution_output.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22

33
from typing import Optional
44

5-
from pydantic import Field as FieldInfo
6-
75
from ..._models import BaseModel
86

97
__all__ = ["ExecutionOutput"]
@@ -12,9 +10,6 @@
1210
class ExecutionOutput(BaseModel):
1311
execution_id: str
1412

15-
schema_: Optional[str] = FieldInfo(alias="$schema", default=None)
16-
"""A URL to the JSON Schema for this object."""
17-
1813
stderr: Optional[str] = None
1914

2015
stderr_bytes: Optional[int] = None

src/dedalus_sdk/types/workspaces/preview.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
from datetime import datetime
55
from typing_extensions import Literal
66

7-
from pydantic import Field as FieldInfo
8-
97
from ..._models import BaseModel
108

119
__all__ = ["Preview"]
@@ -22,9 +20,6 @@ class Preview(BaseModel):
2220

2321
workspace_id: str
2422

25-
schema_: Optional[str] = FieldInfo(alias="$schema", default=None)
26-
"""A URL to the JSON Schema for this object."""
27-
2823
error_code: Optional[str] = None
2924

3025
error_message: Optional[str] = None

0 commit comments

Comments
 (0)