@lobehub/chat 1.63.2 → 1.64.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +50 -0
- package/changelog/v1.json +18 -0
- package/locales/ar/models.json +25 -16
- package/locales/ar/plugin.json +16 -0
- package/locales/ar/portal.json +0 -5
- package/locales/ar/tool.json +18 -0
- package/locales/bg-BG/models.json +25 -16
- package/locales/bg-BG/plugin.json +16 -0
- package/locales/bg-BG/portal.json +0 -5
- package/locales/bg-BG/tool.json +18 -0
- package/locales/de-DE/models.json +25 -16
- package/locales/de-DE/plugin.json +16 -0
- package/locales/de-DE/portal.json +0 -5
- package/locales/de-DE/tool.json +18 -0
- package/locales/en-US/models.json +24 -15
- package/locales/en-US/plugin.json +16 -0
- package/locales/en-US/portal.json +0 -5
- package/locales/en-US/tool.json +18 -0
- package/locales/es-ES/models.json +25 -16
- package/locales/es-ES/plugin.json +16 -0
- package/locales/es-ES/portal.json +0 -5
- package/locales/es-ES/tool.json +18 -0
- package/locales/fa-IR/models.json +25 -16
- package/locales/fa-IR/plugin.json +16 -0
- package/locales/fa-IR/portal.json +0 -5
- package/locales/fa-IR/tool.json +18 -0
- package/locales/fr-FR/models.json +25 -16
- package/locales/fr-FR/plugin.json +16 -0
- package/locales/fr-FR/portal.json +0 -5
- package/locales/fr-FR/tool.json +18 -0
- package/locales/it-IT/models.json +25 -16
- package/locales/it-IT/plugin.json +16 -0
- package/locales/it-IT/portal.json +0 -5
- package/locales/it-IT/tool.json +18 -0
- package/locales/ja-JP/models.json +24 -15
- package/locales/ja-JP/plugin.json +16 -0
- package/locales/ja-JP/portal.json +0 -5
- package/locales/ja-JP/tool.json +18 -0
- package/locales/ko-KR/models.json +25 -16
- package/locales/ko-KR/plugin.json +16 -0
- package/locales/ko-KR/portal.json +0 -5
- package/locales/ko-KR/tool.json +18 -0
- package/locales/nl-NL/models.json +25 -16
- package/locales/nl-NL/plugin.json +16 -0
- package/locales/nl-NL/portal.json +0 -5
- package/locales/nl-NL/tool.json +18 -0
- package/locales/pl-PL/models.json +25 -16
- package/locales/pl-PL/plugin.json +16 -0
- package/locales/pl-PL/portal.json +0 -5
- package/locales/pl-PL/tool.json +18 -0
- package/locales/pt-BR/models.json +24 -15
- package/locales/pt-BR/plugin.json +16 -0
- package/locales/pt-BR/portal.json +0 -5
- package/locales/pt-BR/tool.json +18 -0
- package/locales/ru-RU/models.json +25 -16
- package/locales/ru-RU/plugin.json +16 -0
- package/locales/ru-RU/portal.json +0 -5
- package/locales/ru-RU/tool.json +18 -0
- package/locales/tr-TR/models.json +25 -16
- package/locales/tr-TR/plugin.json +16 -0
- package/locales/tr-TR/portal.json +0 -5
- package/locales/tr-TR/tool.json +18 -0
- package/locales/vi-VN/models.json +24 -15
- package/locales/vi-VN/plugin.json +16 -0
- package/locales/vi-VN/portal.json +0 -5
- package/locales/vi-VN/tool.json +18 -0
- package/locales/zh-CN/models.json +30 -21
- package/locales/zh-CN/plugin.json +16 -0
- package/locales/zh-CN/portal.json +1 -6
- package/locales/zh-CN/tool.json +19 -1
- package/locales/zh-TW/models.json +23 -14
- package/locales/zh-TW/plugin.json +16 -0
- package/locales/zh-TW/portal.json +0 -5
- package/locales/zh-TW/tool.json +18 -0
- package/package.json +1 -1
- package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/Mobile/index.tsx +1 -0
- package/src/app/[variants]/(main)/chat/(workspace)/_layout/Desktop/ChatHeader/SearchTags.tsx +17 -0
- package/src/app/[variants]/(main)/chat/(workspace)/_layout/Desktop/ChatHeader/Tags.tsx +8 -2
- package/src/config/tools.ts +16 -0
- package/src/database/repositories/aiInfra/index.test.ts +29 -0
- package/src/features/ChatInput/ActionBar/Search/index.tsx +6 -15
- package/src/features/Conversation/Messages/Assistant/Tool/Inspector/ToolTitle.tsx +76 -0
- package/src/features/Conversation/Messages/Assistant/Tool/Inspector/index.tsx +8 -21
- package/src/features/Conversation/Messages/Assistant/Tool/Render/CustomRender.tsx +62 -50
- package/src/features/PluginsUI/Render/BuiltinType/index.tsx +11 -1
- package/src/features/PluginsUI/Render/index.tsx +3 -0
- package/src/features/Portal/Plugins/Body/index.tsx +3 -7
- package/src/features/Portal/Plugins/Header.tsx +14 -2
- package/src/hooks/useAgentEnableSearch.ts +27 -0
- package/src/libs/agent-runtime/perplexity/index.test.ts +26 -0
- package/src/libs/agent-runtime/utils/streams/openai.ts +1 -1
- package/src/libs/trpc/client/index.ts +1 -0
- package/src/libs/trpc/client/tools.ts +20 -0
- package/src/locales/default/plugin.ts +16 -0
- package/src/locales/default/portal.ts +0 -5
- package/src/locales/default/tool.ts +18 -0
- package/src/server/modules/SearXNG.ts +33 -0
- package/src/server/routers/lambda/message.ts +11 -0
- package/src/server/routers/tools/__tests__/fixtures/searXNG.ts +668 -0
- package/src/server/routers/tools/__tests__/search.test.ts +47 -0
- package/src/server/routers/tools/index.ts +3 -0
- package/src/server/routers/tools/search.ts +38 -0
- package/src/services/__tests__/__snapshots__/chat.test.ts.snap +1 -0
- package/src/services/_auth.ts +4 -4
- package/src/services/chat.ts +31 -10
- package/src/services/message/_deprecated.ts +4 -0
- package/src/services/message/client.ts +4 -0
- package/src/services/message/server.ts +5 -5
- package/src/services/message/type.ts +2 -0
- package/src/services/search.ts +9 -0
- package/src/store/aiInfra/slices/aiModel/selectors.ts +12 -5
- package/src/store/chat/slices/builtinTool/action.ts +121 -0
- package/src/store/chat/slices/builtinTool/initialState.ts +2 -0
- package/src/store/chat/slices/builtinTool/selectors.ts +3 -0
- package/src/store/chat/slices/message/action.ts +11 -0
- package/src/store/chat/slices/plugin/action.test.ts +2 -2
- package/src/store/chat/slices/plugin/action.ts +2 -2
- package/src/store/tool/selectors/tool.ts +5 -12
- package/src/store/tool/slices/builtin/selectors.ts +1 -1
- package/src/store/user/slices/modelList/action.ts +6 -0
- package/src/store/user/slices/modelList/selectors/keyVaults.ts +1 -0
- package/src/tools/index.ts +7 -0
- package/src/tools/portals.ts +6 -1
- package/src/tools/renders.ts +3 -0
- package/src/{features/Portal/Plugins → tools/web-browsing/Portal}/Footer.tsx +13 -10
- package/src/tools/web-browsing/Portal/ResultList/SearchItem/CategoryAvatar.tsx +70 -0
- package/src/tools/web-browsing/Portal/ResultList/SearchItem/TitleExtra.tsx +38 -0
- package/src/tools/web-browsing/Portal/ResultList/SearchItem/Video.tsx +135 -0
- package/src/tools/web-browsing/Portal/ResultList/SearchItem/index.tsx +91 -0
- package/src/tools/web-browsing/Portal/ResultList/index.tsx +21 -0
- package/src/tools/web-browsing/Portal/index.tsx +65 -0
- package/src/tools/web-browsing/Render/ConfigForm/Form.tsx +110 -0
- package/src/tools/web-browsing/Render/ConfigForm/SearchXNGIcon.tsx +20 -0
- package/src/tools/web-browsing/Render/ConfigForm/index.tsx +67 -0
- package/src/tools/web-browsing/Render/ConfigForm/style.tsx +63 -0
- package/src/tools/web-browsing/Render/SearchQuery/SearchView.tsx +88 -0
- package/src/tools/web-browsing/Render/SearchQuery/index.tsx +61 -0
- package/src/tools/web-browsing/Render/SearchResult/SearchResultItem.tsx +72 -0
- package/src/tools/web-browsing/Render/SearchResult/ShowMore.tsx +68 -0
- package/src/tools/web-browsing/Render/SearchResult/index.tsx +105 -0
- package/src/tools/web-browsing/Render/index.tsx +57 -0
- package/src/tools/web-browsing/components/EngineAvatar.tsx +32 -0
- package/src/tools/web-browsing/components/SearchBar.tsx +134 -0
- package/src/tools/web-browsing/const.ts +11 -0
- package/src/tools/web-browsing/index.ts +102 -0
- package/src/types/message/chat.ts +1 -0
- package/src/types/message/tools.ts +10 -0
- package/src/types/tool/builtin.ts +2 -0
- package/src/types/tool/search.ts +38 -0
- package/src/types/user/settings/keyVaults.ts +8 -1
- package/src/utils/toolManifest.ts +20 -0
@@ -0,0 +1,668 @@
|
|
1
|
+
import { SearchResponse } from '@/types/tool/search';
|
2
|
+
|
3
|
+
export const hetongxue: SearchResponse = {
|
4
|
+
answers: [
|
5
|
+
'老师好我叫何同学. 目标是做有意思的视频 合作请联系:xhaxx1123@163.com. 【何同学】我拍了一张600万人的合影...共计2条视频,包括:正片、教程等,UP主更多精彩视频,请关注UP账号。.',
|
6
|
+
],
|
7
|
+
corrections: [],
|
8
|
+
infoboxes: [],
|
9
|
+
number_of_results: 0,
|
10
|
+
query: '何同学的视频',
|
11
|
+
results: [
|
12
|
+
{
|
13
|
+
category: 'general',
|
14
|
+
content:
|
15
|
+
'老师好我叫何同学. 目标是做有意思的视频 合作请联系:xhaxx1123@163.com. 【何同学】我拍了一张600万人的合影...共计2条视频,包括:正片、教程等,UP主更多精彩视频,请关注UP账号。.',
|
16
|
+
engine: 'qwant',
|
17
|
+
engines: ['qwant', 'duckduckgo'],
|
18
|
+
parsed_url: ['https', 'www.bilibili.com', '/video/BV1Nt4y1D7pW/', '', '', ''],
|
19
|
+
positions: [1, 1],
|
20
|
+
score: 4,
|
21
|
+
template: 'default.html',
|
22
|
+
title: '【何同学】我拍了一张600万人的合影..._哔哩哔哩_bilibili',
|
23
|
+
url: 'https://www.bilibili.com/video/BV1Nt4y1D7pW/',
|
24
|
+
},
|
25
|
+
{
|
26
|
+
category: 'general',
|
27
|
+
content:
|
28
|
+
'日常. 老师好我叫何同学. 目标是做有意思的视频 合作请联系:xhaxx1123@163.com. bilibili入站必刷 (17/54) 镇站之宝大集合!. 经典永流传~. BGM:La Ciudad——ODESZA Rap God—— Eminem Stronger —— Kanye West 感谢龚哥从上海帮我办了两次电话卡,感谢我班团支书辅导我数电实验 ...',
|
29
|
+
engine: 'qwant',
|
30
|
+
engines: ['qwant', 'duckduckgo'],
|
31
|
+
parsed_url: ['https', 'www.bilibili.com', '/video/BV1f4411M7QC/', '', '', ''],
|
32
|
+
positions: [2, 2],
|
33
|
+
score: 2,
|
34
|
+
template: 'default.html',
|
35
|
+
title: '【何同学】有多快?5G在日常使用中的真实体验_哔哩哔哩_bilibili',
|
36
|
+
url: 'https://www.bilibili.com/video/BV1f4411M7QC/',
|
37
|
+
},
|
38
|
+
{
|
39
|
+
category: 'general',
|
40
|
+
content:
|
41
|
+
'听歌学习. 老师好我叫何同学. 目标是做有意思的视频 合作请联系:xhaxx1123@163.com. 视频中4分30秒便签纸上的想法来源于弱智吧。感谢所有参加我们这个测试的朋友,更感谢大家的一键三连!, 视频播放量 7509667、弹幕量 21154、点赞数 961103、投硬币枚数 518679、收藏 ...',
|
42
|
+
engine: 'qwant',
|
43
|
+
engines: ['qwant', 'duckduckgo'],
|
44
|
+
parsed_url: [
|
45
|
+
'https',
|
46
|
+
'www.bilibili.com',
|
47
|
+
'/video/BV1fu411G7e3/',
|
48
|
+
'',
|
49
|
+
'buvid=Y04D7200119A527544F7BD05A4D5EFFB6995&is_story_h5=false&mid=FMYupz80zPVDoNSZftV%2F8w%3D%3D&p=1&plat_id=168&share_from=ugc&share_plat=ios&share_session_id=93B4EE75-B04C-4C94-A117-22DDD0F36313&share_tag=s_i&unique_k=5HuqFvO&up_id=163637592',
|
50
|
+
'',
|
51
|
+
],
|
52
|
+
positions: [3, 3],
|
53
|
+
score: 1.333_333_333_333_333_3,
|
54
|
+
template: 'default.html',
|
55
|
+
title: '【何同学】 为了找到专注的秘诀,我们找500人做了个实验 ...',
|
56
|
+
url: 'https://www.bilibili.com/video/BV1fu411G7e3/?buvid=Y04D7200119A527544F7BD05A4D5EFFB6995&is_story_h5=false&mid=FMYupz80zPVDoNSZftV%2F8w%3D%3D&p=1&plat_id=168&share_from=ugc&share_plat=ios&share_session_id=93B4EE75-B04C-4C94-A117-22DDD0F36313&share_tag=s_i&unique_k=5HuqFvO&up_id=163637592',
|
57
|
+
},
|
58
|
+
{
|
59
|
+
category: 'general',
|
60
|
+
content: '目標是做有意思的視頻!商務合作:xhaxx1123@163.com',
|
61
|
+
engine: 'qwant',
|
62
|
+
engines: ['qwant', 'duckduckgo'],
|
63
|
+
parsed_url: ['https', 'www.youtube.com', '/c/hetongxue', '', '', ''],
|
64
|
+
positions: [4, 5],
|
65
|
+
score: 0.9,
|
66
|
+
template: 'default.html',
|
67
|
+
title: '老师好我叫何同学 - YouTube',
|
68
|
+
url: 'https://www.youtube.com/c/hetongxue',
|
69
|
+
},
|
70
|
+
{
|
71
|
+
category: 'general',
|
72
|
+
content:
|
73
|
+
'2018年,何同学上传了18条视频,最忠实的一位粉丝总共看了545次,平均每条观看30.2次。 那是他的小号,登录在妈妈的手机上。 他在B站和微博上感谢了妈妈,但在现实生活中,他们从来没有聊起过这件事。',
|
74
|
+
engine: 'qwant',
|
75
|
+
engines: ['qwant', 'duckduckgo'],
|
76
|
+
parsed_url: [
|
77
|
+
'https',
|
78
|
+
'baike.baidu.com',
|
79
|
+
'/item/%E8%80%81%E5%B8%88%E5%A5%BD%E6%88%91%E5%8F%AB%E4%BD%95%E5%90%8C%E5%AD%A6/55515999',
|
80
|
+
'',
|
81
|
+
'',
|
82
|
+
'',
|
83
|
+
],
|
84
|
+
positions: [5, 6],
|
85
|
+
score: 0.733_333_333_333_333_4,
|
86
|
+
template: 'default.html',
|
87
|
+
title: '老师好我叫何同学 - 百度百科',
|
88
|
+
url: 'https://baike.baidu.com/item/%E8%80%81%E5%B8%88%E5%A5%BD%E6%88%91%E5%8F%AB%E4%BD%95%E5%90%8C%E5%AD%A6/55515999',
|
89
|
+
},
|
90
|
+
{
|
91
|
+
category: 'general',
|
92
|
+
content:
|
93
|
+
'【何同学Vlog】为什么一期视频做了325天... 在我们流水线视频长达325天的制作周期里,工作室的小伙伴记录了很多有趣的素材,这期幕后视频就给大家看看我们都翻过什么车…结尾还有一个小惊喜给大家!',
|
94
|
+
engine: 'qwant',
|
95
|
+
engines: ['qwant', 'duckduckgo'],
|
96
|
+
parsed_url: ['https', 'www.douyin.com', '/video/7331651006691937577', '', '', ''],
|
97
|
+
positions: [6, 7],
|
98
|
+
score: 0.619_047_619_047_619_1,
|
99
|
+
template: 'default.html',
|
100
|
+
title: '【何同学Vlog】为什么一期视频做了325天... 在我们流水线 ...',
|
101
|
+
url: 'https://www.douyin.com/video/7331651006691937577',
|
102
|
+
},
|
103
|
+
{
|
104
|
+
category: 'general',
|
105
|
+
content:
|
106
|
+
'老师好我叫何同学(1999年 —,简称何同学),本名何世杰 [1],是中国大陆的网络视频制作者。 何同学从2017年开始在 bilibili 等网站发布自制的科技视频,此后逐渐得到关注;2019年发布评测 5G网络 的视频后走红,获得 bilibili 2020年度最佳优秀奖作品UP主奖项,2021 ...',
|
107
|
+
engine: 'qwant',
|
108
|
+
engines: ['qwant', 'duckduckgo'],
|
109
|
+
parsed_url: [
|
110
|
+
'https',
|
111
|
+
'zh.wikipedia.org',
|
112
|
+
'/wiki/%E8%80%81%E5%B8%88%E5%A5%BD%E6%88%91%E5%8F%AB%E4%BD%95%E5%90%8C%E5%AD%A6',
|
113
|
+
'',
|
114
|
+
'',
|
115
|
+
'',
|
116
|
+
],
|
117
|
+
positions: [7, 9],
|
118
|
+
score: 0.507_936_507_936_507_9,
|
119
|
+
template: 'default.html',
|
120
|
+
title: '老师好我叫何同学 - 维基百科,自由的百科全书',
|
121
|
+
url: 'https://zh.wikipedia.org/wiki/%E8%80%81%E5%B8%88%E5%A5%BD%E6%88%91%E5%8F%AB%E4%BD%95%E5%90%8C%E5%AD%A6',
|
122
|
+
},
|
123
|
+
{
|
124
|
+
category: 'general',
|
125
|
+
content:
|
126
|
+
'何同学至今发布的42条视频中,大多数为数码产品的测评,而有些视频中,他向大家展示了真实生活中的何同学。 “颓废的十七岁”“我发现我无法去做任何一件想做的事情,这实在是太悲伤了”“说真的我想当个艺术家”。',
|
127
|
+
engine: 'qwant',
|
128
|
+
engines: ['qwant', 'duckduckgo'],
|
129
|
+
parsed_url: ['https', 'new.qq.com', '/rain/a/20210805A07ID500', '', '', ''],
|
130
|
+
positions: [9, 10],
|
131
|
+
score: 0.422_222_222_222_222_2,
|
132
|
+
template: 'default.html',
|
133
|
+
title: '“何同学”是谁:用镜头讲述理科生的浪漫,毕业视频登上热搜 ...',
|
134
|
+
url: 'https://new.qq.com/rain/a/20210805A07ID500',
|
135
|
+
},
|
136
|
+
{
|
137
|
+
category: 'general',
|
138
|
+
content:
|
139
|
+
'如今,迟到一个月的毕业视频已经面世,成为何同学告别校园的句号。发布三天后,视频微博点赞超135万,B站播放量达到650万。同一时间,他的对外微信昵称,再次改成了“小何在准备新视频了”。',
|
140
|
+
engine: 'qwant',
|
141
|
+
engines: ['qwant', 'duckduckgo'],
|
142
|
+
parsed_url: ['https', 'new.qq.com', '/rain/a/20210730A062Y300', '', '', ''],
|
143
|
+
positions: [10, 13],
|
144
|
+
score: 0.353_846_153_846_153_87,
|
145
|
+
template: 'default.html',
|
146
|
+
title: '何同学:属于我的15分钟已经过去了 - 腾讯网',
|
147
|
+
url: 'https://new.qq.com/rain/a/20210730A062Y300',
|
148
|
+
},
|
149
|
+
{
|
150
|
+
category: 'general',
|
151
|
+
content:
|
152
|
+
'哔哩哔哩老师好我叫何同学的个人空间,提供老师好我叫何同学分享的视频、音频、文章、动态、收藏等内容,关注老师好我叫何同学账号,第一时间了解UP注动态。',
|
153
|
+
engine: 'brave',
|
154
|
+
engines: ['brave', 'google'],
|
155
|
+
parsed_url: ['https', 'space.bilibili.com', '/163637592/', '', '', ''],
|
156
|
+
positions: [3, 1],
|
157
|
+
publishedDate: null,
|
158
|
+
score: 2.666_666_666_666_666_5,
|
159
|
+
template: 'default.html',
|
160
|
+
thumbnail: null,
|
161
|
+
title: '老师好我叫何同学的个人空间-老师好我叫何同学个人主页-哔哩哔哩视频',
|
162
|
+
url: 'https://space.bilibili.com/163637592/',
|
163
|
+
},
|
164
|
+
{
|
165
|
+
category: 'general',
|
166
|
+
content:
|
167
|
+
'何同学做的桌子,图/B站视频截图. 接下来的7分钟里,何同学详细展示了这款桌子的构思、制作过程。 除了超强的动手能力和巧妙的构思之外,何同学的聪明之处在于,他是一个会讲故事的人。 观众的情绪是在一点点被抬高的,直到成品做出达到顶峰。 开头只是一个会移动的水杯,然后更多炫酷的功能逐渐叠加,从被苹果放弃的产品无线充电板AirPower,到整个桌面可以实现充电,能够显示“喝水提醒”、“日程”,最后出现两个红色的大字“下班”,像是一场发布会的谢幕,最精彩之处戛然而止。 何同学无疑才华横溢,但或许更应该感慨,我们这个时代的媒介正在发生彻底的变化,是多方面的因素,推动着何同学向前。 01 何同学是怎么火起来的? 回答这个问题,核心还是在本文开头所提及的: 讲故事的能力。',
|
168
|
+
engine: 'brave',
|
169
|
+
engines: ['qwant', 'brave', 'duckduckgo'],
|
170
|
+
parsed_url: ['https', 'new.qq.com', '/rain/a/20211202A05C1100', '', '', ''],
|
171
|
+
positions: [10, 8, 8],
|
172
|
+
publishedDate: null,
|
173
|
+
score: 1.05,
|
174
|
+
template: 'default.html',
|
175
|
+
thumbnail: '',
|
176
|
+
title: '何同学爆火背后的深层原因_腾讯新闻',
|
177
|
+
url: 'https://new.qq.com/rain/a/20211202A05C1100',
|
178
|
+
},
|
179
|
+
{
|
180
|
+
category: 'general',
|
181
|
+
content:
|
182
|
+
'January 15, 2024 - 老师好我叫何同学(1999年—,简称何同学),本名何世杰,是中国大陆的网络视频制作者。何同学从2017年开始在bilibili等网站发布自制的科技视频,此后逐渐得到关注;2019年发布评测5G网络的视频后走红,获得bilibili2020年...',
|
183
|
+
engine: 'brave',
|
184
|
+
engines: ['brave'],
|
185
|
+
parsed_url: ['https', 'zh.m.wikipedia.org', '/wiki/何世杰', '', '', ''],
|
186
|
+
positions: [1],
|
187
|
+
publishedDate: '2024-01-15T00:00:00',
|
188
|
+
score: 1,
|
189
|
+
template: 'default.html',
|
190
|
+
thumbnail: '',
|
191
|
+
title: '老师好我叫何同学 - 维基百科,自由的百科全书',
|
192
|
+
url: 'https://zh.m.wikipedia.org/wiki/何世杰',
|
193
|
+
},
|
194
|
+
{
|
195
|
+
category: 'general',
|
196
|
+
content:
|
197
|
+
'哔哩哔哩何同学工作室的个人空间,提供何同学工作室分享的视频、音频、文章、动态、收藏等内容,关注何同学工作室账号,第一时间了解UP注动态。老师好我叫何同学工作室 ...',
|
198
|
+
engine: 'brave',
|
199
|
+
engines: ['brave', 'google'],
|
200
|
+
parsed_url: ['https', 'space.bilibili.com', '/1192648858/', '', '', ''],
|
201
|
+
positions: [12, 4],
|
202
|
+
publishedDate: null,
|
203
|
+
score: 0.666_666_666_666_666_6,
|
204
|
+
template: 'default.html',
|
205
|
+
thumbnail: null,
|
206
|
+
title: '何同学工作室的个人空间-何同学工作室个人主页-哔哩哔哩视频',
|
207
|
+
url: 'https://space.bilibili.com/1192648858/',
|
208
|
+
},
|
209
|
+
{
|
210
|
+
category: 'general',
|
211
|
+
content:
|
212
|
+
'再看了一下,确实不是数码区的视频,但何同学的确是在数码区讲故事的Up主,无论是哪个区,何同学的视频都有"故事感人"和"深度不足"的两个特点,其实第1P的内容与热度完全不及第2P与库克的对话,即便那可能只是个恰饭。',
|
213
|
+
engine: 'brave',
|
214
|
+
engines: ['brave', 'duckduckgo'],
|
215
|
+
parsed_url: ['https', 'www.zhihu.com', '/question/444922035', '', '', ''],
|
216
|
+
positions: [4, 14],
|
217
|
+
publishedDate: null,
|
218
|
+
score: 0.642_857_142_857_142_8,
|
219
|
+
template: 'default.html',
|
220
|
+
thumbnail: '',
|
221
|
+
title: '如何评价何同学视频「【何同学】整理自己的生活」?有哪些亮点和不足? - 知乎',
|
222
|
+
url: 'https://www.zhihu.com/question/444922035',
|
223
|
+
},
|
224
|
+
{
|
225
|
+
category: 'general',
|
226
|
+
content:
|
227
|
+
'7月25日,B站up主“老师好我叫何同学”(以下简称“何同学”)发布了最新一期视频《我毕业了!!》当晚播放量超200万,同时登上热搜榜一,万千人一起讨论这个大学本科毕业的学生。 · 不得不说,这个视频彻底爆了。...',
|
228
|
+
engine: 'brave',
|
229
|
+
engines: ['brave'],
|
230
|
+
parsed_url: ['https', 'zhuanlan.zhihu.com', '/p/394479680', '', '', ''],
|
231
|
+
positions: [2],
|
232
|
+
publishedDate: null,
|
233
|
+
score: 0.5,
|
234
|
+
template: 'default.html',
|
235
|
+
thumbnail: '',
|
236
|
+
title: '看完何同学的视频,谈谈我的启发 - 知乎',
|
237
|
+
url: 'https://zhuanlan.zhihu.com/p/394479680',
|
238
|
+
},
|
239
|
+
{
|
240
|
+
category: 'general',
|
241
|
+
content:
|
242
|
+
'老师好我叫何同学 · 今年WWDC最有用的十個新功能 · 這是我見過最精緻的電子產品...何同學工作室5月開箱 · 【何同學】它不是電腦。M4 iPad Pro深度體驗 · 新iPad Pro現場上手!',
|
243
|
+
engine: 'google',
|
244
|
+
engines: ['google'],
|
245
|
+
parsed_url: [
|
246
|
+
'https',
|
247
|
+
'www.youtube.com',
|
248
|
+
'/channel/UCP5Kd0smdWe9H_bDH-73c6Q/videos',
|
249
|
+
'',
|
250
|
+
'',
|
251
|
+
'',
|
252
|
+
],
|
253
|
+
positions: [2],
|
254
|
+
score: 0.5,
|
255
|
+
template: 'default.html',
|
256
|
+
thumbnail: null,
|
257
|
+
title: '老师好我叫何同学',
|
258
|
+
url: 'https://www.youtube.com/channel/UCP5Kd0smdWe9H_bDH-73c6Q/videos',
|
259
|
+
},
|
260
|
+
{
|
261
|
+
category: 'general',
|
262
|
+
content:
|
263
|
+
'老师好我叫何同学 · 今年WWDC最有用的十個新功能 · 這是我見過最精緻的電子產品...何同學工作室5月開箱 · 【何同學】它不是電腦。M4 iPad Pro深度體驗 · 新iPad Pro現場上手!',
|
264
|
+
engine: 'google',
|
265
|
+
engines: ['google'],
|
266
|
+
parsed_url: ['https', 'www.youtube.com', '/c/hetongxue/videos', '', '', ''],
|
267
|
+
positions: [3],
|
268
|
+
score: 0.333_333_333_333_333_3,
|
269
|
+
template: 'default.html',
|
270
|
+
thumbnail: null,
|
271
|
+
title: '老师好我叫何同学',
|
272
|
+
url: 'https://www.youtube.com/c/hetongxue/videos',
|
273
|
+
},
|
274
|
+
{
|
275
|
+
category: 'general',
|
276
|
+
content:
|
277
|
+
'November 2, 2021 - 价格战中的合资车企,可能活不到双11了 · 多产品亚马逊类目第一,老牌家纺品牌年营收超5亿美金|Insight 全球',
|
278
|
+
engine: 'brave',
|
279
|
+
engines: ['brave', 'duckduckgo'],
|
280
|
+
parsed_url: ['https', 'www.36kr.com', '/p/1467640415030021', '', '', ''],
|
281
|
+
positions: [13, 16],
|
282
|
+
publishedDate: '2021-11-02T00:00:00',
|
283
|
+
score: 0.278_846_153_846_153_85,
|
284
|
+
template: 'default.html',
|
285
|
+
thumbnail: '',
|
286
|
+
title: '一条视频带火上市公司,何同学凭什么成为顶流大V?-36氪',
|
287
|
+
url: 'https://www.36kr.com/p/1467640415030021',
|
288
|
+
},
|
289
|
+
{
|
290
|
+
category: 'general',
|
291
|
+
content:
|
292
|
+
'你眼里的光. 老师好我叫何同学. 目标是做有意思的视频 合作请联系:xhaxx1123@163.com. 制片:九老师翻页书:Flashcat闪电猫翻页书动画:超级小树动画:Joyteeth 小步乱撞音效:Jimmy感谢巡天者叶梓颐 狂奔的茄子指导我星空摄影 感谢SmallRig帮我打不锈钢云台 感谢俺的 ...',
|
293
|
+
engine: 'duckduckgo',
|
294
|
+
engines: ['duckduckgo'],
|
295
|
+
parsed_url: ['https', 'www.bilibili.com', '/video/BV1764y167Lp/', '', '', ''],
|
296
|
+
positions: [4],
|
297
|
+
score: 0.25,
|
298
|
+
template: 'default.html',
|
299
|
+
title: '【何同学】永远是同学_哔哩哔哩_bilibili',
|
300
|
+
url: 'https://www.bilibili.com/video/BV1764y167Lp/',
|
301
|
+
},
|
302
|
+
{
|
303
|
+
category: 'general',
|
304
|
+
content:
|
305
|
+
'新老演员同台较量,共同见证新一届"脱口秀大王"的诞生。 【何同学纯享】数码视频界天花板现场后空翻,节目简介:《脱口秀大会》第五季是一档原创棚内喜剧脱口秀竞演节目。',
|
306
|
+
engine: 'duckduckgo',
|
307
|
+
engines: ['duckduckgo'],
|
308
|
+
parsed_url: ['https', 'v.qq.com', '/x/cover/mzc0020016b6v6q/r004495ki0j.html', '', '', ''],
|
309
|
+
positions: [11],
|
310
|
+
score: 0.090_909_090_909_090_91,
|
311
|
+
template: 'default.html',
|
312
|
+
title: '【何同学纯享】数码视频界天花板现场后空翻_综艺_高清完整 ...',
|
313
|
+
url: 'https://v.qq.com/x/cover/mzc0020016b6v6q/r004495ki0j.html',
|
314
|
+
},
|
315
|
+
{
|
316
|
+
category: 'general',
|
317
|
+
content:
|
318
|
+
'家境一般的观众看了会感觉讲了又好像没讲,生活环境不是一个阶级的。. 但对于甲方来说,视频保持了何同学一贯的风格,讲的故事符合甲方心中的美好画面。. 编辑于 2023-10-20 04:16. 可可西里. 性情凉薄 寡恩薄义. 我的评价:和孙国帅没差. 发布于 2023-10 ...',
|
319
|
+
engine: 'duckduckgo',
|
320
|
+
engines: ['duckduckgo'],
|
321
|
+
parsed_url: ['https', 'www.zhihu.com', '/question/626120311', '', '', ''],
|
322
|
+
positions: [12],
|
323
|
+
score: 0.083_333_333_333_333_33,
|
324
|
+
template: 'default.html',
|
325
|
+
title: '如何评价何同学的新视频《鸿蒙的最后一块拼图 | Mate60 ...',
|
326
|
+
url: 'https://www.zhihu.com/question/626120311',
|
327
|
+
},
|
328
|
+
{
|
329
|
+
category: 'general',
|
330
|
+
content:
|
331
|
+
'本地视频 播放 桌面便捷访问 立即体验客户端 续费 开通电视特权 个人中心 我的加追 ... 【何同学】和苹果CEO库克的 采访 2021年2月19日发布 18:14 【何同学】和苹果CEO库克的采访 ...',
|
332
|
+
engine: 'duckduckgo',
|
333
|
+
engines: ['duckduckgo'],
|
334
|
+
parsed_url: ['https', 'v.qq.com', '/x/page/a3228iquze8.html', '', '', ''],
|
335
|
+
positions: [15],
|
336
|
+
score: 0.066_666_666_666_666_67,
|
337
|
+
template: 'default.html',
|
338
|
+
title: '【何同学】和苹果CEO库克的采访_腾讯视频',
|
339
|
+
url: 'https://v.qq.com/x/page/a3228iquze8.html',
|
340
|
+
},
|
341
|
+
{
|
342
|
+
category: 'general',
|
343
|
+
content:
|
344
|
+
'哔哩哔哩老师好我叫何同学的个人空间,提供老师好我叫何同学分享的视频、音频、文章、动态、收藏等内容,关注老师好我叫何同学账号,第一时间了解UP主动态。.',
|
345
|
+
engine: 'duckduckgo',
|
346
|
+
engines: ['duckduckgo'],
|
347
|
+
parsed_url: [
|
348
|
+
'https',
|
349
|
+
'space.bilibili.com',
|
350
|
+
'/163637592/channel/collectiondetail',
|
351
|
+
'',
|
352
|
+
'sid=2159893',
|
353
|
+
'',
|
354
|
+
],
|
355
|
+
positions: [17],
|
356
|
+
score: 0.058_823_529_411_764_705,
|
357
|
+
template: 'default.html',
|
358
|
+
title: '老师好我叫何同学的个人空间-老师好我叫何同学个人主页-哔 ...',
|
359
|
+
url: 'https://space.bilibili.com/163637592/channel/collectiondetail?sid=2159893',
|
360
|
+
},
|
361
|
+
{
|
362
|
+
category: 'general',
|
363
|
+
content:
|
364
|
+
'转型中的何同学,终于发力短视频. 10月27日,何同学正式进军竖屏短视频。 当晚,时隔两个半月未更新视频的何同学在B站发布了一条9分27秒的新视频"快充伤电池? 40部手机两年试验,告诉你最佳充电方式"。 与此同时, 他在抖音发布了4条1分钟的竖屏短视频,对前面提到的这条新视频的内容进行了拆解和重新剪辑,使其更适配竖屏的形式。...',
|
365
|
+
engine: 'duckduckgo',
|
366
|
+
engines: ['duckduckgo'],
|
367
|
+
parsed_url: ['https', 'www.36kr.com', '/p/1980755612173318', '', '', ''],
|
368
|
+
positions: [18],
|
369
|
+
score: 0.055_555_555_555_555_55,
|
370
|
+
template: 'default.html',
|
371
|
+
title: '1天涨粉28万,何同学勇闯抖音-36氪',
|
372
|
+
url: 'https://www.36kr.com/p/1980755612173318',
|
373
|
+
},
|
374
|
+
{
|
375
|
+
category: 'general',
|
376
|
+
content:
|
377
|
+
'7月25日,B站up主"老师好我叫何同学"(以下简称"何同学")发布了最新一期视频《我毕业了! 》当晚播放量超200万,同时登上热搜榜一,万千人一起讨论这个大学本科毕业的学生。',
|
378
|
+
engine: 'duckduckgo',
|
379
|
+
engines: ['duckduckgo'],
|
380
|
+
parsed_url: ['https', 'www.zhihu.com', '/tardis/zm/art/394479680', '', '', ''],
|
381
|
+
positions: [19],
|
382
|
+
score: 0.052_631_578_947_368_42,
|
383
|
+
template: 'default.html',
|
384
|
+
title: '看完何同学的视频,谈谈我的启发',
|
385
|
+
url: 'https://www.zhihu.com/tardis/zm/art/394479680',
|
386
|
+
},
|
387
|
+
{
|
388
|
+
category: 'general',
|
389
|
+
content:
|
390
|
+
'近日,微博大V @老师好我叫何同学 发布了一条数码科普类的视频,《我做了苹果放弃的产品……》。. 该视频很快在微博和B站传播开来,登上微博热搜,刷爆全网。. 流量暴增的背后,其广告主乐歌股份则成为最大的赢家——视频发布第二天,产品所属上市公司 ...',
|
391
|
+
engine: 'duckduckgo',
|
392
|
+
engines: ['duckduckgo'],
|
393
|
+
parsed_url: ['https', 'www.thepaper.cn', '/newsDetail_forward_15024428', '', '', ''],
|
394
|
+
positions: [20],
|
395
|
+
score: 0.05,
|
396
|
+
template: 'default.html',
|
397
|
+
title: '"何同学"商业价值背后,是中视频卡位战_澎湃号·湃客_澎湃 ...',
|
398
|
+
url: 'https://www.thepaper.cn/newsDetail_forward_15024428',
|
399
|
+
},
|
400
|
+
{
|
401
|
+
category: 'general',
|
402
|
+
content:
|
403
|
+
'总之,何同学在这期视频中熟练地运用了苏秦张仪表演法,把流传的专注方法纵横整合起来做了个科学性看似很高,实则漏洞百出(其实就是很能唬人)的所谓的实验,得出的结论几乎都是废话或者是已经人尽皆知,没有产生任何新观点。',
|
404
|
+
engine: 'duckduckgo',
|
405
|
+
engines: ['duckduckgo'],
|
406
|
+
parsed_url: ['https', 'www.zhihu.com', '/question/614636330', '', '', ''],
|
407
|
+
positions: [21],
|
408
|
+
score: 0.047_619_047_619_047_616,
|
409
|
+
template: 'default.html',
|
410
|
+
title: '如何评价何同学新视频《为了找到专注的秘诀,我们找500人 ...',
|
411
|
+
url: 'https://www.zhihu.com/question/614636330',
|
412
|
+
},
|
413
|
+
{
|
414
|
+
category: 'general',
|
415
|
+
content:
|
416
|
+
'2019年6月6月19:48,@老师好我叫何同学 发布了一则5G的评测视频,截至6月11日,18w余次转发,4w余次评论,27w余次的点赞,OPPO副总裁抛来橄榄枝,各大媒体争相报道……这位来自北京邮电大学的小伙子,在互联网上彻彻底底...',
|
417
|
+
engine: 'brave',
|
418
|
+
engines: ['brave'],
|
419
|
+
parsed_url: ['https', 'm.thepaper.cn', '/newsDetail_forward_3659739', '', '', ''],
|
420
|
+
positions: [5],
|
421
|
+
publishedDate: null,
|
422
|
+
score: 0.2,
|
423
|
+
template: 'default.html',
|
424
|
+
thumbnail: '',
|
425
|
+
title: '“何同学”走向人前的背后:谁是18w分之一的传播助力者?',
|
426
|
+
url: 'https://m.thepaper.cn/newsDetail_forward_3659739',
|
427
|
+
},
|
428
|
+
{
|
429
|
+
category: 'general',
|
430
|
+
content:
|
431
|
+
'作为一名数码区视频博主,何同学发布的内容大部分为数码测评视频,但有别于其他严肃专业的测评视频,何同学的视频特点并不在于信息增量上的突出,没有性能参数,而是以新颖的想法和流畅的剪辑,从自身体验和人...',
|
432
|
+
engine: 'brave',
|
433
|
+
engines: ['brave'],
|
434
|
+
parsed_url: ['https', 'm.mp.oeeee.com', '/a/BAAFRD000020210805529530.html', '', '', ''],
|
435
|
+
positions: [6],
|
436
|
+
publishedDate: null,
|
437
|
+
score: 0.166_666_666_666_666_66,
|
438
|
+
template: 'default.html',
|
439
|
+
thumbnail: '',
|
440
|
+
title: '“何同学”是谁:用镜头讲述理科生的浪漫,毕业视频登上热搜',
|
441
|
+
url: 'https://m.mp.oeeee.com/a/BAAFRD000020210805529530.html',
|
442
|
+
},
|
443
|
+
{
|
444
|
+
category: 'general',
|
445
|
+
content:
|
446
|
+
"放假会做贼有意思的视频!工作事宜联系:xhaxx1123@163.com I'll make creative, funny, interesting videos while vacation. Business cooperation: xhaxx1123@163.com",
|
447
|
+
engine: 'brave',
|
448
|
+
engines: ['brave'],
|
449
|
+
parsed_url: ['https', 'www.youtube.com', '/@hetongxue', '', '', ''],
|
450
|
+
positions: [7],
|
451
|
+
publishedDate: null,
|
452
|
+
score: 0.142_857_142_857_142_85,
|
453
|
+
template: 'default.html',
|
454
|
+
thumbnail: '',
|
455
|
+
title: '老师好我叫何同学',
|
456
|
+
url: 'https://www.youtube.com/@hetongxue',
|
457
|
+
},
|
458
|
+
{
|
459
|
+
category: 'general',
|
460
|
+
content:
|
461
|
+
'我个人主观评价一下 · 首先我本人很早就看过何同学视频,但是一直没关注,也就是首页偶尔看看。2022他的视频给我感觉就是吃老本,因为无论产量、内容深度、视频精致度都很一般,真的很一般。作为通信行业从业者和...',
|
462
|
+
engine: 'brave',
|
463
|
+
engines: ['brave'],
|
464
|
+
parsed_url: ['https', 'www.zhihu.com', '/question/578552358/answer/2849217080', '', '', ''],
|
465
|
+
positions: [8],
|
466
|
+
publishedDate: null,
|
467
|
+
score: 0.125,
|
468
|
+
template: 'default.html',
|
469
|
+
thumbnail: '',
|
470
|
+
title: '如何评价何同学无缘2022年百大up主? - 知乎',
|
471
|
+
url: 'https://www.zhihu.com/question/578552358/answer/2849217080',
|
472
|
+
},
|
473
|
+
{
|
474
|
+
category: 'general',
|
475
|
+
content:
|
476
|
+
'August 5, 2020 - 同为B站科技区UP主,何同学的视频内容和大部分同类型UP主不一样。科技区相当一部分视频是严肃专业的测评,但作为B站最著名的科技UP主之一,何同学却从未发过一个纯粹意义上的专业测评。他上初中开始看手机测评,“...',
|
477
|
+
engine: 'brave',
|
478
|
+
engines: ['brave'],
|
479
|
+
parsed_url: [
|
480
|
+
'https',
|
481
|
+
'tech.sina.cn',
|
482
|
+
'/i/gn/2020-08-05/detail-iivhvpwx9366000.d.html',
|
483
|
+
'',
|
484
|
+
'',
|
485
|
+
'',
|
486
|
+
],
|
487
|
+
positions: [9],
|
488
|
+
publishedDate: '2020-08-05T00:00:00',
|
489
|
+
score: 0.111_111_111_111_111_1,
|
490
|
+
template: 'default.html',
|
491
|
+
thumbnail: '',
|
492
|
+
title: '老师好我叫何同学,我有些不开心_手机新浪网',
|
493
|
+
url: 'https://tech.sina.cn/i/gn/2020-08-05/detail-iivhvpwx9366000.d.html',
|
494
|
+
},
|
495
|
+
{
|
496
|
+
category: 'general',
|
497
|
+
content:
|
498
|
+
'何同学的视频相比其他,更多的是心意和新意。他每一个镜 头的运用、转场真的是能够看出用心的,其实对我比较印象 深刻的还是 何同学有着与他身份不相符的能力。',
|
499
|
+
engine: 'brave',
|
500
|
+
engines: ['brave'],
|
501
|
+
parsed_url: [
|
502
|
+
'https',
|
503
|
+
'wizardforcel.gitbooks.io',
|
504
|
+
'/jiuliaozhengqian/content/022.html',
|
505
|
+
'',
|
506
|
+
'',
|
507
|
+
'',
|
508
|
+
],
|
509
|
+
positions: [11],
|
510
|
+
publishedDate: null,
|
511
|
+
score: 0.090_909_090_909_090_91,
|
512
|
+
template: 'default.html',
|
513
|
+
thumbnail: '',
|
514
|
+
title: '简单说说「何同学」 · 就聊挣钱知识星球精华',
|
515
|
+
url: 'https://wizardforcel.gitbooks.io/jiuliaozhengqian/content/022.html',
|
516
|
+
},
|
517
|
+
{
|
518
|
+
category: 'general',
|
519
|
+
content:
|
520
|
+
'7月25日,“何同学毕业”突然上了热搜,还占据娱乐榜首位,网友纳闷了:何同学是谁啊?他毕业有必要上热搜吗?紧接着就迎来了网友的不满。 · 简单介绍一下,何同学的网名叫“老师好我叫何同学”,本名叫何世杰,...',
|
521
|
+
engine: 'brave',
|
522
|
+
engines: ['brave'],
|
523
|
+
parsed_url: ['https', 'zhuanlan.zhihu.com', '/p/393257035', '', '', ''],
|
524
|
+
positions: [14],
|
525
|
+
publishedDate: null,
|
526
|
+
score: 0.071_428_571_428_571_42,
|
527
|
+
template: 'default.html',
|
528
|
+
thumbnail: '',
|
529
|
+
title: '何同学是谁?为什么他毕业能上热搜,又为什么引来网友非议? - 知乎',
|
530
|
+
url: 'https://zhuanlan.zhihu.com/p/393257035',
|
531
|
+
},
|
532
|
+
{
|
533
|
+
category: 'general',
|
534
|
+
content:
|
535
|
+
'February 3, 2022 - □袁珮芸(西南大学) · 有着B站顶级“鸽王”称号的UP主老师好我叫何同学(以下简称“何同学”),2月2日发布了一期题为“我用108天开了个灯……”的视频。截止至2月3日13:27分,视频获得291.7万播放量,55.7万点赞,位...',
|
536
|
+
engine: 'brave',
|
537
|
+
engines: ['brave'],
|
538
|
+
parsed_url: ['https', 'moment.rednet.cn', '/content/2022/02/03/10840348.html', '', '', ''],
|
539
|
+
positions: [15],
|
540
|
+
publishedDate: '2022-02-03T00:00:00',
|
541
|
+
score: 0.066_666_666_666_666_67,
|
542
|
+
template: 'default.html',
|
543
|
+
thumbnail: '',
|
544
|
+
title: '何同学的视频,让人们看到了“科技的浪漫”',
|
545
|
+
url: 'https://moment.rednet.cn/content/2022/02/03/10840348.html',
|
546
|
+
},
|
547
|
+
{
|
548
|
+
category: 'general',
|
549
|
+
content:
|
550
|
+
'何同学是知名的鸽子。. 上上上次更新,是2021年7月,此时的他正忙完自己的毕业设计兼毕业庆祝视频---用树莓派3D Lidar扫描仪拍摄的一段星轨视频;. 上上次更新,则是2021年10月,利用毕业后的两个月的时间里,他创办了自己的工作室,并做出了苹果放弃的产品 ...',
|
551
|
+
engine: 'duckduckgo',
|
552
|
+
engines: ['duckduckgo'],
|
553
|
+
parsed_url: ['https', 'baijiahao.baidu.com', '/s', '', 'id=1730443414809360080', ''],
|
554
|
+
positions: [22],
|
555
|
+
score: 0.045_454_545_454_545_456,
|
556
|
+
template: 'default.html',
|
557
|
+
title: '被嘲讽成"赛博丁真"数十天后,何同学用新视频,进行最强回击',
|
558
|
+
url: 'https://baijiahao.baidu.com/s?id=1730443414809360080',
|
559
|
+
},
|
560
|
+
{
|
561
|
+
category: 'general',
|
562
|
+
content:
|
563
|
+
'为此,人力资源学院于5月14日下午3点成功举办了第二届"火苗"新媒体训练营——视频剪辑培训,为热爱视频创作的同学们搭建了一个学习与交流的平台。. 此次培训课程内容丰富且实用,重点围绕视频剪辑软件Pr的基础操作和高级技巧展开。. 助教廖峻贤首先 ...',
|
564
|
+
engine: 'duckduckgo',
|
565
|
+
engines: ['duckduckgo'],
|
566
|
+
parsed_url: ['https', 'rlzy.gdufe.edu.cn', '/2024/0603/c7288a193155/page.htm', '', '', ''],
|
567
|
+
positions: [23],
|
568
|
+
score: 0.043_478_260_869_565_216,
|
569
|
+
template: 'default.html',
|
570
|
+
title: '人力资源学院第二届火苗新媒体训练营 视频剪辑培训成功举办',
|
571
|
+
url: 'https://rlzy.gdufe.edu.cn/2024/0603/c7288a193155/page.htm',
|
572
|
+
},
|
573
|
+
{
|
574
|
+
category: 'general',
|
575
|
+
content:
|
576
|
+
'【何同学】我用一万行备忘录做了个动画...共计2条视频,包括:正片、54秒动画(60帧数)等,UP主更多精彩视频,请关注UP账号。',
|
577
|
+
engine: 'duckduckgo',
|
578
|
+
engines: ['duckduckgo'],
|
579
|
+
parsed_url: ['https', 'www.bilibili.com', '/video/BV1Xi4y1x7eM/', '', '', ''],
|
580
|
+
positions: [24],
|
581
|
+
score: 0.041_666_666_666_666_664,
|
582
|
+
template: 'default.html',
|
583
|
+
title: '【何同学】我用一万行备忘录做了个动画..._哔哩哔哩_bilibili',
|
584
|
+
url: 'https://www.bilibili.com/video/BV1Xi4y1x7eM/',
|
585
|
+
},
|
586
|
+
{
|
587
|
+
category: 'general',
|
588
|
+
content:
|
589
|
+
'6月1日,"珠峰杯"第四届中国大学生韩国语短视频大赛颁奖典礼在浙江杭州举行。亚洲学院2021级朝鲜语专业本科生何柔亿、2022级朝鲜语专业本科生屈京京两位同学在本次大赛中提交的作品《交流,和而不同之路》在本次比赛中荣获全国优秀奖。 何柔亿、屈京京同学在颁奖典礼现场',
|
590
|
+
engine: 'duckduckgo',
|
591
|
+
engines: ['duckduckgo'],
|
592
|
+
parsed_url: [
|
593
|
+
'https',
|
594
|
+
'chaoyu.bisu.edu.cn',
|
595
|
+
'/art/2024/6/8/art_10721_331167.html',
|
596
|
+
'',
|
597
|
+
'',
|
598
|
+
'',
|
599
|
+
],
|
600
|
+
positions: [25],
|
601
|
+
score: 0.04,
|
602
|
+
template: 'default.html',
|
603
|
+
title: '人才培养|亚洲学院学生在"珠峰杯"第四届中国大学生韩国语 ...',
|
604
|
+
url: 'https://chaoyu.bisu.edu.cn/art/2024/6/8/art_10721_331167.html',
|
605
|
+
},
|
606
|
+
{
|
607
|
+
category: 'general',
|
608
|
+
content:
|
609
|
+
'通知公告. 关于中国农业大学第六届大学生思政课微视频大赛评选结果的公示. 发布日期:2024-06-24浏览次数: 信息来源:马克思主义学院. 2024年是中华人民共和国成立75周年,也是实现"十四五"规划目标任务的关键一年。. 为坚持不懈用习近平新时代中国特色 ...',
|
610
|
+
engine: 'duckduckgo',
|
611
|
+
engines: ['duckduckgo'],
|
612
|
+
parsed_url: ['https', 'cm.cau.edu.cn', '/art/2024/6/24/art_25483_1030364.html', '', '', ''],
|
613
|
+
positions: [26],
|
614
|
+
score: 0.038_461_538_461_538_464,
|
615
|
+
template: 'default.html',
|
616
|
+
title: '关于中国农业大学第六届大学生思政课微视频大赛评选结果 ...',
|
617
|
+
url: 'https://cm.cau.edu.cn/art/2024/6/24/art_25483_1030364.html',
|
618
|
+
},
|
619
|
+
{
|
620
|
+
category: 'general',
|
621
|
+
content:
|
622
|
+
'6月21日上午,前沿科学技术研究院在中国西部科技创新港举行2024届毕业生欢送会,为即将奔赴人生新旅程的毕业生献上诚挚的祝福。前沿院党委书记赵卫滨、前沿院院长赵永席、副院长何刚、副院长邵永平、前沿院党委副书记李妙辉和教师代表,以及2024届毕业生及家属参加欢送会,会议由学院辅导 ...',
|
623
|
+
engine: 'duckduckgo',
|
624
|
+
engines: ['duckduckgo'],
|
625
|
+
parsed_url: ['https', 'fist.xjtu.edu.cn', '/info/1007/4104.htm', '', '', ''],
|
626
|
+
positions: [27],
|
627
|
+
score: 0.037_037_037_037_037_035,
|
628
|
+
template: 'default.html',
|
629
|
+
title: '以青春之名,赴时代之约——前沿院2024届毕业生欢送会举办 ...',
|
630
|
+
url: 'https://fist.xjtu.edu.cn/info/1007/4104.htm',
|
631
|
+
},
|
632
|
+
{
|
633
|
+
category: 'general',
|
634
|
+
content:
|
635
|
+
'《脱口秀大会第5季》第9期上:半决赛开启!苏醒爆笑开场,节目简介:《脱口秀大会》第五季是一档原创棚内喜剧脱口秀竞演节目。来自各行各业的脱口秀演员根据对生活的观察和感悟,以不同的视角切入,通过专业的喜剧创作能力,向观众展示一场场高质量的脱口秀表演,并且传递幽默的魅力 ...',
|
636
|
+
engine: 'duckduckgo',
|
637
|
+
engines: ['duckduckgo'],
|
638
|
+
parsed_url: ['https', 'v.qq.com', '/x/cover/mzc0020016b6v6q/b0044krsgv5.html', '', '', ''],
|
639
|
+
positions: [28],
|
640
|
+
score: 0.035_714_285_714_285_71,
|
641
|
+
template: 'default.html',
|
642
|
+
title: '脱口秀大会第5季 - 腾讯视频',
|
643
|
+
url: 'https://v.qq.com/x/cover/mzc0020016b6v6q/b0044krsgv5.html',
|
644
|
+
},
|
645
|
+
{
|
646
|
+
category: 'general',
|
647
|
+
content:
|
648
|
+
'财政部拟发行2024年记账式贴现(三十三期)国债(91天)。. 现就本次发行工作有关事宜通知如下:. 一、债券要素. (一)品种。. 本期国债为期限91天的贴现债。. (二)发行数量。. 本期国债竞争性招标面值总额400亿元,进行甲类成员追加投标。. (三)发行 ...',
|
649
|
+
engine: 'duckduckgo',
|
650
|
+
engines: ['duckduckgo'],
|
651
|
+
parsed_url: [
|
652
|
+
'http',
|
653
|
+
'www.gks.mof.gov.cn',
|
654
|
+
'/ztztz/guozaiguanli/gzfxzjs/202406/t20240606_3936684.htm',
|
655
|
+
'',
|
656
|
+
'',
|
657
|
+
'',
|
658
|
+
],
|
659
|
+
positions: [29],
|
660
|
+
score: 0.034_482_758_620_689_655,
|
661
|
+
template: 'default.html',
|
662
|
+
title: '关于2024年记账式贴现(三十三期)国债发行工作有关事宜 ...',
|
663
|
+
url: 'http://www.gks.mof.gov.cn/ztztz/guozaiguanli/gzfxzjs/202406/t20240606_3936684.htm',
|
664
|
+
},
|
665
|
+
],
|
666
|
+
suggestions: [],
|
667
|
+
unresponsive_engines: [],
|
668
|
+
};
|