Skip to content

Commit 108c184

Browse files
authored
release: 0.0.11
release: 0.0.11
2 parents bc1b911 + a195720 commit 108c184

File tree

11 files changed

+32
-24
lines changed

11 files changed

+32
-24
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.1.0-alpha.4"
2+
".": "0.0.11"
33
}

.stats.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
configured_endpoints: 8
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/arcade-ai%2Farcade-engine-e021712a6bf43d1333001852981dae4a2461da7e8285a732f8adfbeb7b6d77c4.yml
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/arcade-ai%2Farcade-engine-98d52eb3c876e59ab21e8f1301f4e6eeb046c308eb6ffd2dc47b65d0d7b9873a.yml

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## 0.0.11 (2024-10-15)
4+
5+
Full Changelog: [v0.1.0-alpha.4...v0.0.11](https://github.com/ArcadeAI/arcade-py/compare/v0.1.0-alpha.4...v0.0.11)
6+
7+
### Features
8+
9+
* **api:** api update ([#22](https://github.com/ArcadeAI/arcade-py/issues/22)) ([b4b881f](https://github.com/ArcadeAI/arcade-py/commit/b4b881fb496169501ca80a175f088780c6f4930f))
10+
311
## 0.1.0-alpha.4 (2024-10-14)
412

513
Full Changelog: [v0.1.0-alpha.3...v0.1.0-alpha.4](https://github.com/ArcadeAI/arcade-py/compare/v0.1.0-alpha.3...v0.1.0-alpha.4)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ The REST API documentation can be found on [arcade-ai.com](https://arcade-ai.com
1616

1717
```sh
1818
# install from PyPI
19-
pip install --pre arcadepy
19+
pip install arcadepy
2020
```
2121

2222
## Usage

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "arcadepy"
3-
version = "0.1.0-alpha.4"
3+
version = "0.0.11"
44
description = "The official Python library for the Arcade API"
55
dynamic = ["readme"]
66
license = "Apache-2.0"

src/arcadepy/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
22

33
__title__ = "arcadepy"
4-
__version__ = "0.1.0-alpha.4" # x-release-please-version
4+
__version__ = "0.0.11" # x-release-please-version

src/arcadepy/resources/chat/completions.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -58,16 +58,16 @@ def create(
5858
messages: Iterable[ChatMessageParam] | NotGiven = NOT_GIVEN,
5959
model: str | NotGiven = NOT_GIVEN,
6060
n: int | NotGiven = NOT_GIVEN,
61-
parallel_tool_calls: object | NotGiven = NOT_GIVEN,
61+
parallel_tool_calls: bool | NotGiven = NOT_GIVEN,
6262
presence_penalty: int | NotGiven = NOT_GIVEN,
6363
response_format: Literal["json_object", "text"] | NotGiven = NOT_GIVEN,
6464
seed: int | NotGiven = NOT_GIVEN,
6565
stop: List[str] | NotGiven = NOT_GIVEN,
6666
stream: bool | NotGiven = NOT_GIVEN,
6767
stream_options: completion_create_params.StreamOptions | NotGiven = NOT_GIVEN,
6868
temperature: float | NotGiven = NOT_GIVEN,
69-
tool_choice: object | NotGiven = NOT_GIVEN,
70-
tools: object | NotGiven = NOT_GIVEN,
69+
tool_choice: Dict[str, object] | NotGiven = NOT_GIVEN,
70+
tools: Dict[str, object] | NotGiven = NOT_GIVEN,
7171
top_logprobs: int | NotGiven = NOT_GIVEN,
7272
top_p: float | NotGiven = NOT_GIVEN,
7373
user: str | NotGiven = NOT_GIVEN,
@@ -181,16 +181,16 @@ async def create(
181181
messages: Iterable[ChatMessageParam] | NotGiven = NOT_GIVEN,
182182
model: str | NotGiven = NOT_GIVEN,
183183
n: int | NotGiven = NOT_GIVEN,
184-
parallel_tool_calls: object | NotGiven = NOT_GIVEN,
184+
parallel_tool_calls: bool | NotGiven = NOT_GIVEN,
185185
presence_penalty: int | NotGiven = NOT_GIVEN,
186186
response_format: Literal["json_object", "text"] | NotGiven = NOT_GIVEN,
187187
seed: int | NotGiven = NOT_GIVEN,
188188
stop: List[str] | NotGiven = NOT_GIVEN,
189189
stream: bool | NotGiven = NOT_GIVEN,
190190
stream_options: completion_create_params.StreamOptions | NotGiven = NOT_GIVEN,
191191
temperature: float | NotGiven = NOT_GIVEN,
192-
tool_choice: object | NotGiven = NOT_GIVEN,
193-
tools: object | NotGiven = NOT_GIVEN,
192+
tool_choice: Dict[str, object] | NotGiven = NOT_GIVEN,
193+
tools: Dict[str, object] | NotGiven = NOT_GIVEN,
194194
top_logprobs: int | NotGiven = NOT_GIVEN,
195195
top_p: float | NotGiven = NOT_GIVEN,
196196
user: str | NotGiven = NOT_GIVEN,

src/arcadepy/types/chat/completion_create_params.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ class CompletionCreateParams(TypedDict, total=False):
3737

3838
n: int
3939

40-
parallel_tool_calls: object
40+
parallel_tool_calls: bool
4141
"""Disable the default behavior of parallel tool calls by setting it: false."""
4242

4343
presence_penalty: int
@@ -55,10 +55,10 @@ class CompletionCreateParams(TypedDict, total=False):
5555

5656
temperature: float
5757

58-
tool_choice: object
58+
tool_choice: Dict[str, object]
5959
"""This can be either a string or an ToolChoice object."""
6060

61-
tools: object
61+
tools: Dict[str, object]
6262

6363
top_logprobs: int
6464
"""

src/arcadepy/types/choice.py

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

3-
from typing import List, Optional
3+
from typing import Dict, List, Optional
44

55
from .._models import BaseModel
66
from .chat_message import ChatMessage
@@ -14,7 +14,7 @@ class Choice(BaseModel):
1414

1515
index: Optional[int] = None
1616

17-
logprobs: Optional[object] = None
17+
logprobs: Optional[Dict[str, object]] = None
1818

1919
message: Optional[ChatMessage] = None
2020

src/arcadepy/types/response_output.py

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

3-
from typing import Optional
3+
from typing import Dict, Optional
44

55
from .._models import BaseModel
66
from .shared.authorization_response import AuthorizationResponse
@@ -25,4 +25,4 @@ class ResponseOutput(BaseModel):
2525

2626
requires_authorization: Optional[AuthorizationResponse] = None
2727

28-
value: Optional[object] = None
28+
value: Optional[Dict[str, object]] = None

0 commit comments

Comments
 (0)