add_mix_content_capability #2

Merged
ton merged 25 commits from add_mix_content_capability into main 2026-02-19 12:27:59 +00:00
Showing only changes of commit 782a935d3d - Show all commits

View File

@@ -196,21 +196,6 @@ function envelope_to_json(env::msgEnvelope_v1)
JSON.json(obj) JSON.json(obj)
end end
""" Helper function to get payload bytes from data
This function is kept for compatibility but is no longer used.
All serialization is now handled by `_serialize_data`.
"""
function _get_payload_bytes(data::Any)
# This function is kept for compatibility but is no longer used.
# All serialization is now handled by `_serialize_data`.
if isa(data, Vector{UInt8})
return data
elseif isa(data, String)
return bytes(data)
else
return bytes(data)
end
end
""" Log a trace message with correlation ID and timestamp """ Log a trace message with correlation ID and timestamp
This function logs information messages with a correlation ID for tracing purposes, This function logs information messages with a correlation ID for tracing purposes,