Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "1.13.0"
".": "1.14.0"
}
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 27
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/moderation-api%2Fmoderation-api-815dce43cbb14e41f094bdbca84682c0b379dcfd02b7e8800f9d8b45c00a76fd.yml
openapi_spec_hash: ab7d073e793fe5a556e64d39963aea93
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/moderation-api%2Fmoderation-api-a4934bf1e7f1348c021b48224f7a7110a6e41838253dda4fbcc720dd2d2ed6b7.yml
openapi_spec_hash: 537542216811907b1d4ebf23a54dc669
config_hash: 6b825a08e19dfb747c5dc1766502b789
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 1.14.0 (2026-03-31)

Full Changelog: [v1.13.0...v1.14.0](https://github.com/moderation-api/sdk-python/compare/v1.13.0...v1.14.0)

### Features

* **api:** api update ([bea4412](https://github.com/moderation-api/sdk-python/commit/bea4412d4d8fe9007be97a2e83a8c7758b068005))

## 1.13.0 (2026-03-27)

Full Changelog: [v1.12.3...v1.13.0](https://github.com/moderation-api/sdk-python/compare/v1.12.3...v1.13.0)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "moderation_api"
version = "1.13.0"
version = "1.14.0"
description = "The official Python library for the moderation-api API"
dynamic = ["readme"]
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion src/moderation_api/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.

__title__ = "moderation_api"
__version__ = "1.13.0" # x-release-please-version
__version__ = "1.14.0" # x-release-please-version
7 changes: 7 additions & 0 deletions src/moderation_api/types/content_submit_response.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,13 @@ class Content(BaseModel):
] = None
"""The modified content, if any."""

transcript: Optional[str] = None
"""The transcribed text from audio content.

Only present when audio moderation is used and transcript inclusion is enabled
on the channel.
"""


class Evaluation(BaseModel):
"""The evaluation of the content after running the channel policies."""
Expand Down
Loading