Skip to content

Commit ddb77b4

Browse files
release: 0.13.0 (#14)
Automated Release PR --- ## 0.13.0 (2025-09-26) Full Changelog: [v0.12.0...v0.13.0](v0.12.0...v0.13.0) ### Features * **api:** manual updates ([f375b61](f375b61)) --- 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 fd3f01d commit ddb77b4

File tree

7 files changed

+33
-7
lines changed

7 files changed

+33
-7
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.12.0"
2+
".": "0.13.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-7ee2ad97db78c2e520242fb341cc5c8d52c1eccf5bb919a125fef3c4cbc22698.yml
3-
openapi_spec_hash: 7527b1032184b20440963a3cead1c234
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/inty%2Finty-d681a7df3609b5c4822c8bbc305ff7c11cba3bd60bfc0c74ffa0d808e88b1458.yml
3+
openapi_spec_hash: df10e43186d6f9d7afd27a3b82b49df7
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.13.0 (2025-09-26)
4+
5+
Full Changelog: [v0.12.0...v0.13.0](https://github.com/NascentCore/inty-python/compare/v0.12.0...v0.13.0)
6+
7+
### Features
8+
9+
* **api:** manual updates ([f375b61](https://github.com/NascentCore/inty-python/commit/f375b61e13ae867539e99daa862dec5fcad733e8))
10+
311
## 0.12.0 (2025-09-25)
412

513
Full Changelog: [v0.11.0...v0.12.0](https://github.com/NascentCore/inty-python/compare/v0.11.0...v0.12.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.12.0"
3+
version = "0.13.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.12.0" # x-release-please-version
4+
__version__ = "0.13.0" # x-release-please-version

src/inty/types/api/v1/ai/agent.py

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,19 @@
88
from .model_config import ModelConfig
99
from .agent_visibility import AgentVisibility
1010

11-
__all__ = ["Agent", "MetaData"]
11+
__all__ = ["Agent", "AvatarSize", "BackgroundSize", "MetaData"]
12+
13+
14+
class AvatarSize(BaseModel):
15+
height: int
16+
17+
width: int
18+
19+
20+
class BackgroundSize(BaseModel):
21+
height: int
22+
23+
width: int
1224

1325

1426
class MetaData(BaseModel):
@@ -37,10 +49,16 @@ class Agent(BaseModel):
3749

3850
avatar: Optional[str] = None
3951

52+
avatar_size: Optional[AvatarSize] = None
53+
"""Image size"""
54+
4055
background: Optional[str] = None
4156

4257
background_images: Optional[List[str]] = None
4358

59+
background_size: Optional[BackgroundSize] = None
60+
"""Image size"""
61+
4462
category: Optional[str] = None
4563

4664
character_book: Optional[Dict[str, object]] = None

src/inty/types/api/v1/ai/api_response_agent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ class APIResponseAgent(BaseModel):
1212
code: Optional[int] = None
1313

1414
data: Optional[Agent] = None
15-
"""AI 角色"""
15+
"""AI 角色,在 sqlalchemy 模型基础上添加额外多表查询来的数据"""
1616

1717
message: Optional[str] = None

0 commit comments

Comments
 (0)