Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit a679c0b

Browse files
stainless-app[bot]stainless-bot
authored andcommittedJul 2, 2024·
chore: minor change to tests (#1521)
1 parent 6da55e1 commit a679c0b

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed
 

‎.stats.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
configured_endpoints: 64
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-3a69e1cc9e1efda3fb82d0fb35961749f886a87594dae9d8d2aa5c60f157f5d2.yml
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-27d8d6da893c1cdd53b491ec05153df22b1e113965f253a1d6eb8d75b628173f.yml

‎tests/api_resources/chat/test_completions.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def test_method_create_with_all_params_overload_1(self, client: OpenAI) -> None:
5959
parallel_tool_calls=True,
6060
presence_penalty=-2,
6161
response_format={"type": "json_object"},
62-
seed=-9223372036854776000,
62+
seed=-9007199254740991,
6363
service_tier="auto",
6464
stop="string",
6565
stream=False,
@@ -176,7 +176,7 @@ def test_method_create_with_all_params_overload_2(self, client: OpenAI) -> None:
176176
parallel_tool_calls=True,
177177
presence_penalty=-2,
178178
response_format={"type": "json_object"},
179-
seed=-9223372036854776000,
179+
seed=-9007199254740991,
180180
service_tier="auto",
181181
stop="string",
182182
stream_options={"include_usage": True},
@@ -295,7 +295,7 @@ async def test_method_create_with_all_params_overload_1(self, async_client: Asyn
295295
parallel_tool_calls=True,
296296
presence_penalty=-2,
297297
response_format={"type": "json_object"},
298-
seed=-9223372036854776000,
298+
seed=-9007199254740991,
299299
service_tier="auto",
300300
stop="string",
301301
stream=False,
@@ -412,7 +412,7 @@ async def test_method_create_with_all_params_overload_2(self, async_client: Asyn
412412
parallel_tool_calls=True,
413413
presence_penalty=-2,
414414
response_format={"type": "json_object"},
415-
seed=-9223372036854776000,
415+
seed=-9007199254740991,
416416
service_tier="auto",
417417
stop="string",
418418
stream_options={"include_usage": True},

‎tests/api_resources/test_completions.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def test_method_create_with_all_params_overload_1(self, client: OpenAI) -> None:
3838
max_tokens=16,
3939
n=1,
4040
presence_penalty=-2,
41-
seed=-9223372036854776000,
41+
seed=-9007199254740991,
4242
stop="\n",
4343
stream=False,
4444
stream_options={"include_usage": True},
@@ -98,7 +98,7 @@ def test_method_create_with_all_params_overload_2(self, client: OpenAI) -> None:
9898
max_tokens=16,
9999
n=1,
100100
presence_penalty=-2,
101-
seed=-9223372036854776000,
101+
seed=-9007199254740991,
102102
stop="\n",
103103
stream_options={"include_usage": True},
104104
suffix="test.",
@@ -160,7 +160,7 @@ async def test_method_create_with_all_params_overload_1(self, async_client: Asyn
160160
max_tokens=16,
161161
n=1,
162162
presence_penalty=-2,
163-
seed=-9223372036854776000,
163+
seed=-9007199254740991,
164164
stop="\n",
165165
stream=False,
166166
stream_options={"include_usage": True},
@@ -220,7 +220,7 @@ async def test_method_create_with_all_params_overload_2(self, async_client: Asyn
220220
max_tokens=16,
221221
n=1,
222222
presence_penalty=-2,
223-
seed=-9223372036854776000,
223+
seed=-9007199254740991,
224224
stop="\n",
225225
stream_options={"include_usage": True},
226226
suffix="test.",

0 commit comments

Comments
 (0)
Please sign in to comment.