Skip to content
This repository was archived by the owner on Nov 2, 2025. It is now read-only.

Commit 03cc993

Browse files
release: 0.14.0 (#15)
Automated Release PR --- ## 0.14.0 (2025-09-29) Full Changelog: [v0.13.0...v0.14.0](v0.13.0...v0.14.0) ### Features * **api:** manual updates ([a62b6b2](a62b6b2)) --- This pull request is managed by Stainless's [GitHub App](https://github.com/apps/stainless-app). The [semver version number](https://semver.org/#semantic-versioning-specification-semver) is based on included [commit messages](https://www.conventionalcommits.org/en/v1.0.0/). Alternatively, you can manually set the version number in the title of this pull request. For a better experience, it is recommended to use either rebase-merge or squash-merge when merging this pull request. 🔗 Stainless [website](https://www.stainlessapi.com) 📚 Read the [docs](https://app.stainlessapi.com/docs) 🙋 [Reach out](mailto:[email protected]) for help or questions --------- Co-authored-by: stainless-app[bot] <142633134+stainless-app[bot]@users.noreply.github.com>
1 parent ddb77b4 commit 03cc993

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+217
-21
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.13.0"
2+
".": "0.14.0"
33
}

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 43
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/inty%2Finty-d681a7df3609b5c4822c8bbc305ff7c11cba3bd60bfc0c74ffa0d808e88b1458.yml
3-
openapi_spec_hash: df10e43186d6f9d7afd27a3b82b49df7
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/inty%2Finty-bd9470194fe169e6dc79216a8f03c401fd3b160d551d1a102ad6586f151c3b61.yml
3+
openapi_spec_hash: 766cd330850dd373f4115b98a8da27c3
44
config_hash: d35e74831ce0d87ae7a511759f352f9e

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.14.0 (2025-09-29)
4+
5+
Full Changelog: [v0.13.0...v0.14.0](https://github.com/NascentCore/inty-python/compare/v0.13.0...v0.14.0)
6+
7+
### Features
8+
9+
* **api:** manual updates ([a62b6b2](https://github.com/NascentCore/inty-python/commit/a62b6b2edffc633fbf316ec64ff1d8a4839bb1ec))
10+
311
## 0.13.0 (2025-09-26)
412

513
Full Changelog: [v0.12.0...v0.13.0](https://github.com/NascentCore/inty-python/compare/v0.12.0...v0.13.0)

pyproject.toml

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

src/inty/_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__ = "inty"
4-
__version__ = "0.13.0" # x-release-please-version
4+
__version__ = "0.14.0" # x-release-please-version

src/inty/resources/api/v1/ai/agents.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ def create(
8585
photos: Optional[SequenceNotStr[str]] | Omit = omit,
8686
post_history_instructions: Optional[str] | Omit = omit,
8787
prompt: Optional[str] | Omit = omit,
88+
request_id: Optional[str] | Omit = omit,
8889
scenario: Optional[str] | Omit = omit,
8990
settings: Optional[Dict[str, object]] | Omit = omit,
9091
tags: Optional[SequenceNotStr[str]] | Omit = omit,
@@ -157,6 +158,7 @@ def create(
157158
"photos": photos,
158159
"post_history_instructions": post_history_instructions,
159160
"prompt": prompt,
161+
"request_id": request_id,
160162
"scenario": scenario,
161163
"settings": settings,
162164
"tags": tags,
@@ -233,6 +235,7 @@ def update(
233235
photos: Optional[SequenceNotStr[str]] | Omit = omit,
234236
post_history_instructions: Optional[str] | Omit = omit,
235237
prompt: Optional[str] | Omit = omit,
238+
request_id: Optional[str] | Omit = omit,
236239
scenario: Optional[str] | Omit = omit,
237240
settings: Optional[Dict[str, object]] | Omit = omit,
238241
tags: Optional[SequenceNotStr[str]] | Omit = omit,
@@ -296,6 +299,7 @@ def update(
296299
"photos": photos,
297300
"post_history_instructions": post_history_instructions,
298301
"prompt": prompt,
302+
"request_id": request_id,
299303
"scenario": scenario,
300304
"settings": settings,
301305
"tags": tags,
@@ -652,6 +656,7 @@ async def create(
652656
photos: Optional[SequenceNotStr[str]] | Omit = omit,
653657
post_history_instructions: Optional[str] | Omit = omit,
654658
prompt: Optional[str] | Omit = omit,
659+
request_id: Optional[str] | Omit = omit,
655660
scenario: Optional[str] | Omit = omit,
656661
settings: Optional[Dict[str, object]] | Omit = omit,
657662
tags: Optional[SequenceNotStr[str]] | Omit = omit,
@@ -724,6 +729,7 @@ async def create(
724729
"photos": photos,
725730
"post_history_instructions": post_history_instructions,
726731
"prompt": prompt,
732+
"request_id": request_id,
727733
"scenario": scenario,
728734
"settings": settings,
729735
"tags": tags,
@@ -800,6 +806,7 @@ async def update(
800806
photos: Optional[SequenceNotStr[str]] | Omit = omit,
801807
post_history_instructions: Optional[str] | Omit = omit,
802808
prompt: Optional[str] | Omit = omit,
809+
request_id: Optional[str] | Omit = omit,
803810
scenario: Optional[str] | Omit = omit,
804811
settings: Optional[Dict[str, object]] | Omit = omit,
805812
tags: Optional[SequenceNotStr[str]] | Omit = omit,
@@ -863,6 +870,7 @@ async def update(
863870
"photos": photos,
864871
"post_history_instructions": post_history_instructions,
865872
"prompt": prompt,
873+
"request_id": request_id,
866874
"scenario": scenario,
867875
"settings": settings,
868876
"tags": tags,

src/inty/resources/api/v1/auth/auth.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ def create_guest(
6060
*,
6161
age_group: Optional[str] | Omit = omit,
6262
device_id: Optional[str] | Omit = omit,
63+
request_id: Optional[str] | Omit = omit,
6364
system_language: Optional[str] | Omit = omit,
6465
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
6566
# The extra values given here take precedence over values defined on the client or passed to this method.
@@ -86,6 +87,7 @@ def create_guest(
8687
{
8788
"age_group": age_group,
8889
"device_id": device_id,
90+
"request_id": request_id,
8991
"system_language": system_language,
9092
},
9193
auth_create_guest_params.AuthCreateGuestParams,
@@ -126,6 +128,7 @@ async def create_guest(
126128
*,
127129
age_group: Optional[str] | Omit = omit,
128130
device_id: Optional[str] | Omit = omit,
131+
request_id: Optional[str] | Omit = omit,
129132
system_language: Optional[str] | Omit = omit,
130133
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
131134
# The extra values given here take precedence over values defined on the client or passed to this method.
@@ -152,6 +155,7 @@ async def create_guest(
152155
{
153156
"age_group": age_group,
154157
"device_id": device_id,
158+
"request_id": request_id,
155159
"system_language": system_language,
156160
},
157161
auth_create_guest_params.AuthCreateGuestParams,

src/inty/resources/api/v1/auth/google.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ def login(
4747
self,
4848
*,
4949
id_token: str,
50+
request_id: Optional[str] | Omit = omit,
5051
user_info: Optional[google_login_params.UserInfo] | Omit = omit,
5152
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
5253
# The extra values given here take precedence over values defined on the client or passed to this method.
@@ -74,6 +75,7 @@ def login(
7475
body=maybe_transform(
7576
{
7677
"id_token": id_token,
78+
"request_id": request_id,
7779
"user_info": user_info,
7880
},
7981
google_login_params.GoogleLoginParams,
@@ -109,6 +111,7 @@ async def login(
109111
self,
110112
*,
111113
id_token: str,
114+
request_id: Optional[str] | Omit = omit,
112115
user_info: Optional[google_login_params.UserInfo] | Omit = omit,
113116
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
114117
# The extra values given here take precedence over values defined on the client or passed to this method.
@@ -136,6 +139,7 @@ async def login(
136139
body=await async_maybe_transform(
137140
{
138141
"id_token": id_token,
142+
"request_id": request_id,
139143
"user_info": user_info,
140144
},
141145
google_login_params.GoogleLoginParams,

src/inty/resources/api/v1/chats/agents.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -187,6 +187,7 @@ def update_settings(
187187
*,
188188
language: Optional[str] | Omit = omit,
189189
premium_mode: Optional[bool] | Omit = omit,
190+
request_id: Optional[str] | Omit = omit,
190191
style_prompt: Optional[str] | Omit = omit,
191192
voice_enabled: Optional[bool] | Omit = omit,
192193
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
@@ -219,6 +220,7 @@ def update_settings(
219220
{
220221
"language": language,
221222
"premium_mode": premium_mode,
223+
"request_id": request_id,
222224
"style_prompt": style_prompt,
223225
"voice_enabled": voice_enabled,
224226
},
@@ -393,6 +395,7 @@ async def update_settings(
393395
*,
394396
language: Optional[str] | Omit = omit,
395397
premium_mode: Optional[bool] | Omit = omit,
398+
request_id: Optional[str] | Omit = omit,
396399
style_prompt: Optional[str] | Omit = omit,
397400
voice_enabled: Optional[bool] | Omit = omit,
398401
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
@@ -425,6 +428,7 @@ async def update_settings(
425428
{
426429
"language": language,
427430
"premium_mode": premium_mode,
431+
"request_id": request_id,
428432
"style_prompt": style_prompt,
429433
"voice_enabled": voice_enabled,
430434
},

src/inty/resources/api/v1/chats/chats.py

Lines changed: 21 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from __future__ import annotations
44

55
import typing_extensions
6-
from typing import Iterable
6+
from typing import Iterable, Optional
77

88
import httpx
99

@@ -62,6 +62,7 @@ def create(
6262
self,
6363
*,
6464
agent_id: str,
65+
request_id: Optional[str] | Omit = omit,
6566
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
6667
# The extra values given here take precedence over values defined on the client or passed to this method.
6768
extra_headers: Headers | None = None,
@@ -83,7 +84,13 @@ def create(
8384
"""
8485
return self._post(
8586
"/api/v1/chats/",
86-
body=maybe_transform({"agent_id": agent_id}, chat_create_params.ChatCreateParams),
87+
body=maybe_transform(
88+
{
89+
"agent_id": agent_id,
90+
"request_id": request_id,
91+
},
92+
chat_create_params.ChatCreateParams,
93+
),
8794
options=make_request_options(
8895
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
8996
),
@@ -172,6 +179,7 @@ def create_completion(
172179
messages: Iterable[chat_create_completion_params.Message],
173180
language: str | Omit = omit,
174181
model: str | Omit = omit,
182+
request_id: Optional[str] | Omit = omit,
175183
stream: bool | Omit = omit,
176184
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
177185
# The extra values given here take precedence over values defined on the client or passed to this method.
@@ -202,6 +210,7 @@ def create_completion(
202210
"messages": messages,
203211
"language": language,
204212
"model": model,
213+
"request_id": request_id,
205214
"stream": stream,
206215
},
207216
chat_create_completion_params.ChatCreateCompletionParams,
@@ -275,6 +284,7 @@ async def create(
275284
self,
276285
*,
277286
agent_id: str,
287+
request_id: Optional[str] | Omit = omit,
278288
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
279289
# The extra values given here take precedence over values defined on the client or passed to this method.
280290
extra_headers: Headers | None = None,
@@ -296,7 +306,13 @@ async def create(
296306
"""
297307
return await self._post(
298308
"/api/v1/chats/",
299-
body=await async_maybe_transform({"agent_id": agent_id}, chat_create_params.ChatCreateParams),
309+
body=await async_maybe_transform(
310+
{
311+
"agent_id": agent_id,
312+
"request_id": request_id,
313+
},
314+
chat_create_params.ChatCreateParams,
315+
),
300316
options=make_request_options(
301317
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
302318
),
@@ -385,6 +401,7 @@ async def create_completion(
385401
messages: Iterable[chat_create_completion_params.Message],
386402
language: str | Omit = omit,
387403
model: str | Omit = omit,
404+
request_id: Optional[str] | Omit = omit,
388405
stream: bool | Omit = omit,
389406
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
390407
# The extra values given here take precedence over values defined on the client or passed to this method.
@@ -415,6 +432,7 @@ async def create_completion(
415432
"messages": messages,
416433
"language": language,
417434
"model": model,
435+
"request_id": request_id,
418436
"stream": stream,
419437
},
420438
chat_create_completion_params.ChatCreateCompletionParams,

0 commit comments

Comments
 (0)