|
@@ -13,7 +13,10 @@ from applications.functions.video_item import VideoProducer
|
|
|
from applications.functions.kimi import KimiServer
|
|
|
from applications.functions.common import request_etl
|
|
|
|
|
|
-DEFAULT_ACCOUNT_ID = "69637498"
|
|
|
+DEFAULT_ACCOUNT_ID_DICT = {
|
|
|
+ "uid": 69637498,
|
|
|
+ "nick_name": "望长安"
|
|
|
+ }
|
|
|
|
|
|
|
|
|
class SearchABTest(object):
|
|
@@ -338,7 +341,7 @@ async def search_videos(params, trace_id, gh_id, mysql_client):
|
|
|
if recall_video:
|
|
|
response = await video_sender(
|
|
|
video_obj=recall_video,
|
|
|
- user=gh_id_dict.get(gh_id, DEFAULT_ACCOUNT_ID),
|
|
|
+ user=gh_id_dict.get(gh_id, DEFAULT_ACCOUNT_ID_DICT),
|
|
|
trace_id=trace_id,
|
|
|
platform=platform,
|
|
|
content_id=params['content_id']
|