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 pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "veadk-python"
version = "0.5.30"
version = "0.5.31"
description = "Volcengine agent development kit, integrations with Volcengine cloud services."
readme = "README.md"
requires-python = ">=3.10"
Expand Down
3 changes: 2 additions & 1 deletion veadk/models/ark_llm.py
Original file line number Diff line number Diff line change
Expand Up @@ -574,7 +574,8 @@ def record_logs(raw_response: ArkTypeResponse):
raw_response.incomplete_details, IncompleteDetails
):
error_message += f"The reason for the incomplete return is `{raw_response.incomplete_details.reason}`, content_filter: `{raw_response.incomplete_details.content_filter}`"
logger.debug(
# (important!) record raw_response.id as info level to track the response, which is critical for log correlation between Ark and LiteLLM
logger.info(
f"Ark response: Received Response from model `{raw_response.model}` with id `{raw_response.id}`. "
f"Status: `{raw_response.status}`. "
f"{error_message}"
Expand Down
2 changes: 1 addition & 1 deletion veadk/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.

VERSION = "0.5.30"
VERSION = "0.5.31"
Loading