@@ -23,6 +23,7 @@ headers = {
class RelationDict(TypedDict):
videoPoolTraceId: str
channelContentId: str
+ platform: str
class AigcSystemApi:
@@ -248,7 +248,8 @@ class PublishVideosForAudit(object):
relation_list=[
{
"videoPoolTraceId": video_obj['content_trace_id'],
- "channelContentId": str(video_id)
+ "channelContentId": str(video_id),
+ "platform": video_obj['platform'],
}
]
)