alibabacloud-iqs20241111 1.5.1__py3-none-any.whl → 1.5.2__py3-none-any.whl
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.
- alibabacloud_iqs20241111/__init__.py +1 -1
- alibabacloud_iqs20241111/models.py +6 -0
- {alibabacloud_iqs20241111-1.5.1.dist-info → alibabacloud_iqs20241111-1.5.2.dist-info}/METADATA +1 -1
- alibabacloud_iqs20241111-1.5.2.dist-info/RECORD +8 -0
- alibabacloud_iqs20241111-1.5.1.dist-info/RECORD +0 -8
- {alibabacloud_iqs20241111-1.5.1.dist-info → alibabacloud_iqs20241111-1.5.2.dist-info}/LICENSE +0 -0
- {alibabacloud_iqs20241111-1.5.1.dist-info → alibabacloud_iqs20241111-1.5.2.dist-info}/WHEEL +0 -0
- {alibabacloud_iqs20241111-1.5.1.dist-info → alibabacloud_iqs20241111-1.5.2.dist-info}/top_level.txt +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = '1.5.
|
|
1
|
+
__version__ = '1.5.2'
|
|
@@ -1351,6 +1351,7 @@ class UnifiedPageItem(TeaModel):
|
|
|
1351
1351
|
markdown_text: str = None,
|
|
1352
1352
|
published_time: str = None,
|
|
1353
1353
|
rerank_score: float = None,
|
|
1354
|
+
rich_main_body: str = None,
|
|
1354
1355
|
snippet: str = None,
|
|
1355
1356
|
summary: str = None,
|
|
1356
1357
|
title: str = None,
|
|
@@ -1364,6 +1365,7 @@ class UnifiedPageItem(TeaModel):
|
|
|
1364
1365
|
self.markdown_text = markdown_text
|
|
1365
1366
|
self.published_time = published_time
|
|
1366
1367
|
self.rerank_score = rerank_score
|
|
1368
|
+
self.rich_main_body = rich_main_body
|
|
1367
1369
|
self.snippet = snippet
|
|
1368
1370
|
self.summary = summary
|
|
1369
1371
|
self.title = title
|
|
@@ -1395,6 +1397,8 @@ class UnifiedPageItem(TeaModel):
|
|
|
1395
1397
|
result['publishedTime'] = self.published_time
|
|
1396
1398
|
if self.rerank_score is not None:
|
|
1397
1399
|
result['rerankScore'] = self.rerank_score
|
|
1400
|
+
if self.rich_main_body is not None:
|
|
1401
|
+
result['richMainBody'] = self.rich_main_body
|
|
1398
1402
|
if self.snippet is not None:
|
|
1399
1403
|
result['snippet'] = self.snippet
|
|
1400
1404
|
if self.summary is not None:
|
|
@@ -1423,6 +1427,8 @@ class UnifiedPageItem(TeaModel):
|
|
|
1423
1427
|
self.published_time = m.get('publishedTime')
|
|
1424
1428
|
if m.get('rerankScore') is not None:
|
|
1425
1429
|
self.rerank_score = m.get('rerankScore')
|
|
1430
|
+
if m.get('richMainBody') is not None:
|
|
1431
|
+
self.rich_main_body = m.get('richMainBody')
|
|
1426
1432
|
if m.get('snippet') is not None:
|
|
1427
1433
|
self.snippet = m.get('snippet')
|
|
1428
1434
|
if m.get('summary') is not None:
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
alibabacloud_iqs20241111/__init__.py,sha256=7jrl0OaiREGeLqi1Vco5z6ma0w6Mxq8kDBXuswywlc8,21
|
|
2
|
+
alibabacloud_iqs20241111/client.py,sha256=6faVzHOixRjTqLwRpUutYPFBp3BLhdsuiDzho87qS_4,30758
|
|
3
|
+
alibabacloud_iqs20241111/models.py,sha256=xrLuM6H1io4o-kobxI4xTkgrk5VC4zUnQOYcArXaYxI,80730
|
|
4
|
+
alibabacloud_iqs20241111-1.5.2.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
|
5
|
+
alibabacloud_iqs20241111-1.5.2.dist-info/METADATA,sha256=b4SvYPxfUfl4i2XneCx5QzjC64YHDHR7ew05itUt2bo,2312
|
|
6
|
+
alibabacloud_iqs20241111-1.5.2.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
|
7
|
+
alibabacloud_iqs20241111-1.5.2.dist-info/top_level.txt,sha256=DCTUMSkrMH7RuTTLUEqGJeM2_EXN79YXzwpAtYbk-bU,25
|
|
8
|
+
alibabacloud_iqs20241111-1.5.2.dist-info/RECORD,,
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
alibabacloud_iqs20241111/__init__.py,sha256=oU1lLCdhmPP8CUfgzMFfhCPjCfk4eDfd8WSwOfXNBOk,21
|
|
2
|
-
alibabacloud_iqs20241111/client.py,sha256=6faVzHOixRjTqLwRpUutYPFBp3BLhdsuiDzho87qS_4,30758
|
|
3
|
-
alibabacloud_iqs20241111/models.py,sha256=vlVpL1x58iUCi7kper2ImsJ5dXE5ElOf7AVElDP9Ck4,80446
|
|
4
|
-
alibabacloud_iqs20241111-1.5.1.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
|
5
|
-
alibabacloud_iqs20241111-1.5.1.dist-info/METADATA,sha256=tIXH3_wNXW852sjX0wmOJWL6D4YPR_6Ef1RZZEh-qxk,2312
|
|
6
|
-
alibabacloud_iqs20241111-1.5.1.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
|
7
|
-
alibabacloud_iqs20241111-1.5.1.dist-info/top_level.txt,sha256=DCTUMSkrMH7RuTTLUEqGJeM2_EXN79YXzwpAtYbk-bU,25
|
|
8
|
-
alibabacloud_iqs20241111-1.5.1.dist-info/RECORD,,
|
{alibabacloud_iqs20241111-1.5.1.dist-info → alibabacloud_iqs20241111-1.5.2.dist-info}/LICENSE
RENAMED
|
File without changes
|
|
File without changes
|
{alibabacloud_iqs20241111-1.5.1.dist-info → alibabacloud_iqs20241111-1.5.2.dist-info}/top_level.txt
RENAMED
|
File without changes
|