alibabacloud-aimiaobi20230801 1.38.5__py3-none-any.whl → 1.38.6__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.
Files changed (25) hide show
  1. alibabacloud_aimiaobi20230801/__init__.py +1 -1
  2. alibabacloud_aimiaobi20230801/client.py +148 -4
  3. alibabacloud_aimiaobi20230801/models/__init__.py +14 -0
  4. alibabacloud_aimiaobi20230801/models/_add_dataset_document_request.py +68 -0
  5. alibabacloud_aimiaobi20230801/models/_create_dataset_request.py +62 -0
  6. alibabacloud_aimiaobi20230801/models/_get_dataset_document_response_body.py +92 -0
  7. alibabacloud_aimiaobi20230801/models/_get_dataset_response_body.py +62 -0
  8. alibabacloud_aimiaobi20230801/models/_list_dataset_documents_request.py +96 -0
  9. alibabacloud_aimiaobi20230801/models/_list_dataset_documents_response_body.py +24 -0
  10. alibabacloud_aimiaobi20230801/models/_list_dataset_documents_shrink_request.py +96 -0
  11. alibabacloud_aimiaobi20230801/models/_run_search_generation_request.py +72 -0
  12. alibabacloud_aimiaobi20230801/models/_run_search_generation_response_body.py +528 -0
  13. alibabacloud_aimiaobi20230801/models/_run_search_similar_articles_request.py +96 -0
  14. alibabacloud_aimiaobi20230801/models/_run_search_similar_articles_response_body.py +64 -0
  15. alibabacloud_aimiaobi20230801/models/_search_dataset_documents_request.py +98 -0
  16. alibabacloud_aimiaobi20230801/models/_search_dataset_documents_response_body.py +140 -1
  17. alibabacloud_aimiaobi20230801/models/_search_dataset_documents_shrink_request.py +179 -0
  18. alibabacloud_aimiaobi20230801/models/_update_dataset_document_request.py +42 -0
  19. alibabacloud_aimiaobi20230801/models/_update_dataset_document_response_body.py +42 -0
  20. alibabacloud_aimiaobi20230801/models/_update_dataset_request.py +62 -0
  21. {alibabacloud_aimiaobi20230801-1.38.5.dist-info → alibabacloud_aimiaobi20230801-1.38.6.dist-info}/METADATA +1 -1
  22. {alibabacloud_aimiaobi20230801-1.38.5.dist-info → alibabacloud_aimiaobi20230801-1.38.6.dist-info}/RECORD +25 -24
  23. {alibabacloud_aimiaobi20230801-1.38.5.dist-info → alibabacloud_aimiaobi20230801-1.38.6.dist-info}/LICENSE +0 -0
  24. {alibabacloud_aimiaobi20230801-1.38.5.dist-info → alibabacloud_aimiaobi20230801-1.38.6.dist-info}/WHEEL +0 -0
  25. {alibabacloud_aimiaobi20230801-1.38.5.dist-info → alibabacloud_aimiaobi20230801-1.38.6.dist-info}/top_level.txt +0 -0
@@ -969,17 +969,27 @@ class RunSearchGenerationResponseBodyPayloadOutputAgentContextBizContextGenerate
969
969
  class RunSearchGenerationResponseBodyPayloadOutputAgentContextBizContextGeneratedContentVideoSearchResultSearchResultArticle(DaraModel):
970
970
  def __init__(
971
971
  self,
972
+ category_uuid: str = None,
972
973
  doc_id: str = None,
973
974
  doc_uuid: str = None,
975
+ extend_1: str = None,
976
+ extend_2: str = None,
977
+ extend_3: str = None,
974
978
  search_source_name: str = None,
975
979
  summary: str = None,
980
+ tags: List[str] = None,
976
981
  title: str = None,
977
982
  url: str = None,
978
983
  ):
984
+ self.category_uuid = category_uuid
979
985
  self.doc_id = doc_id
980
986
  self.doc_uuid = doc_uuid
987
+ self.extend_1 = extend_1
988
+ self.extend_2 = extend_2
989
+ self.extend_3 = extend_3
981
990
  self.search_source_name = search_source_name
982
991
  self.summary = summary
992
+ self.tags = tags
983
993
  self.title = title
984
994
  self.url = url
985
995
 
@@ -991,18 +1001,33 @@ class RunSearchGenerationResponseBodyPayloadOutputAgentContextBizContextGenerate
991
1001
  _map = super().to_map()
992
1002
  if _map is not None:
993
1003
  result = _map
1004
+ if self.category_uuid is not None:
1005
+ result['CategoryUuid'] = self.category_uuid
1006
+
994
1007
  if self.doc_id is not None:
995
1008
  result['DocId'] = self.doc_id
996
1009
 
997
1010
  if self.doc_uuid is not None:
998
1011
  result['DocUuid'] = self.doc_uuid
999
1012
 
1013
+ if self.extend_1 is not None:
1014
+ result['Extend1'] = self.extend_1
1015
+
1016
+ if self.extend_2 is not None:
1017
+ result['Extend2'] = self.extend_2
1018
+
1019
+ if self.extend_3 is not None:
1020
+ result['Extend3'] = self.extend_3
1021
+
1000
1022
  if self.search_source_name is not None:
1001
1023
  result['SearchSourceName'] = self.search_source_name
1002
1024
 
1003
1025
  if self.summary is not None:
1004
1026
  result['Summary'] = self.summary
1005
1027
 
1028
+ if self.tags is not None:
1029
+ result['Tags'] = self.tags
1030
+
1006
1031
  if self.title is not None:
1007
1032
  result['Title'] = self.title
1008
1033
 
@@ -1013,18 +1038,33 @@ class RunSearchGenerationResponseBodyPayloadOutputAgentContextBizContextGenerate
1013
1038
 
1014
1039
  def from_map(self, m: dict = None):
1015
1040
  m = m or dict()
1041
+ if m.get('CategoryUuid') is not None:
1042
+ self.category_uuid = m.get('CategoryUuid')
1043
+
1016
1044
  if m.get('DocId') is not None:
1017
1045
  self.doc_id = m.get('DocId')
1018
1046
 
1019
1047
  if m.get('DocUuid') is not None:
1020
1048
  self.doc_uuid = m.get('DocUuid')
1021
1049
 
1050
+ if m.get('Extend1') is not None:
1051
+ self.extend_1 = m.get('Extend1')
1052
+
1053
+ if m.get('Extend2') is not None:
1054
+ self.extend_2 = m.get('Extend2')
1055
+
1056
+ if m.get('Extend3') is not None:
1057
+ self.extend_3 = m.get('Extend3')
1058
+
1022
1059
  if m.get('SearchSourceName') is not None:
1023
1060
  self.search_source_name = m.get('SearchSourceName')
1024
1061
 
1025
1062
  if m.get('Summary') is not None:
1026
1063
  self.summary = m.get('Summary')
1027
1064
 
1065
+ if m.get('Tags') is not None:
1066
+ self.tags = m.get('Tags')
1067
+
1028
1068
  if m.get('Title') is not None:
1029
1069
  self.title = m.get('Title')
1030
1070
 
@@ -1311,10 +1351,14 @@ class RunSearchGenerationResponseBodyPayloadOutputAgentContextBizContextGenerate
1311
1351
  class RunSearchGenerationResponseBodyPayloadOutputAgentContextBizContextGeneratedContentTimelineResultReferenceList(DaraModel):
1312
1352
  def __init__(
1313
1353
  self,
1354
+ category_uuid: str = None,
1314
1355
  chunks: List[str] = None,
1315
1356
  content: str = None,
1316
1357
  doc_id: str = None,
1317
1358
  doc_uuid: str = None,
1359
+ extend_1: str = None,
1360
+ extend_2: str = None,
1361
+ extend_3: str = None,
1318
1362
  pub_time: str = None,
1319
1363
  score: float = None,
1320
1364
  search_source: str = None,
@@ -1323,14 +1367,19 @@ class RunSearchGenerationResponseBodyPayloadOutputAgentContextBizContextGenerate
1323
1367
  select: bool = None,
1324
1368
  source: str = None,
1325
1369
  summary: str = None,
1370
+ tags: List[str] = None,
1326
1371
  title: str = None,
1327
1372
  traceability_id: int = None,
1328
1373
  url: str = None,
1329
1374
  ):
1375
+ self.category_uuid = category_uuid
1330
1376
  self.chunks = chunks
1331
1377
  self.content = content
1332
1378
  self.doc_id = doc_id
1333
1379
  self.doc_uuid = doc_uuid
1380
+ self.extend_1 = extend_1
1381
+ self.extend_2 = extend_2
1382
+ self.extend_3 = extend_3
1334
1383
  self.pub_time = pub_time
1335
1384
  self.score = score
1336
1385
  self.search_source = search_source
@@ -1339,6 +1388,7 @@ class RunSearchGenerationResponseBodyPayloadOutputAgentContextBizContextGenerate
1339
1388
  self.select = select
1340
1389
  self.source = source
1341
1390
  self.summary = summary
1391
+ self.tags = tags
1342
1392
  self.title = title
1343
1393
  self.traceability_id = traceability_id
1344
1394
  self.url = url
@@ -1351,6 +1401,9 @@ class RunSearchGenerationResponseBodyPayloadOutputAgentContextBizContextGenerate
1351
1401
  _map = super().to_map()
1352
1402
  if _map is not None:
1353
1403
  result = _map
1404
+ if self.category_uuid is not None:
1405
+ result['CategoryUuid'] = self.category_uuid
1406
+
1354
1407
  if self.chunks is not None:
1355
1408
  result['Chunks'] = self.chunks
1356
1409
 
@@ -1363,6 +1416,15 @@ class RunSearchGenerationResponseBodyPayloadOutputAgentContextBizContextGenerate
1363
1416
  if self.doc_uuid is not None:
1364
1417
  result['DocUuid'] = self.doc_uuid
1365
1418
 
1419
+ if self.extend_1 is not None:
1420
+ result['Extend1'] = self.extend_1
1421
+
1422
+ if self.extend_2 is not None:
1423
+ result['Extend2'] = self.extend_2
1424
+
1425
+ if self.extend_3 is not None:
1426
+ result['Extend3'] = self.extend_3
1427
+
1366
1428
  if self.pub_time is not None:
1367
1429
  result['PubTime'] = self.pub_time
1368
1430
 
@@ -1387,6 +1449,9 @@ class RunSearchGenerationResponseBodyPayloadOutputAgentContextBizContextGenerate
1387
1449
  if self.summary is not None:
1388
1450
  result['Summary'] = self.summary
1389
1451
 
1452
+ if self.tags is not None:
1453
+ result['Tags'] = self.tags
1454
+
1390
1455
  if self.title is not None:
1391
1456
  result['Title'] = self.title
1392
1457
 
@@ -1400,6 +1465,9 @@ class RunSearchGenerationResponseBodyPayloadOutputAgentContextBizContextGenerate
1400
1465
 
1401
1466
  def from_map(self, m: dict = None):
1402
1467
  m = m or dict()
1468
+ if m.get('CategoryUuid') is not None:
1469
+ self.category_uuid = m.get('CategoryUuid')
1470
+
1403
1471
  if m.get('Chunks') is not None:
1404
1472
  self.chunks = m.get('Chunks')
1405
1473
 
@@ -1412,6 +1480,15 @@ class RunSearchGenerationResponseBodyPayloadOutputAgentContextBizContextGenerate
1412
1480
  if m.get('DocUuid') is not None:
1413
1481
  self.doc_uuid = m.get('DocUuid')
1414
1482
 
1483
+ if m.get('Extend1') is not None:
1484
+ self.extend_1 = m.get('Extend1')
1485
+
1486
+ if m.get('Extend2') is not None:
1487
+ self.extend_2 = m.get('Extend2')
1488
+
1489
+ if m.get('Extend3') is not None:
1490
+ self.extend_3 = m.get('Extend3')
1491
+
1415
1492
  if m.get('PubTime') is not None:
1416
1493
  self.pub_time = m.get('PubTime')
1417
1494
 
@@ -1436,6 +1513,9 @@ class RunSearchGenerationResponseBodyPayloadOutputAgentContextBizContextGenerate
1436
1513
  if m.get('Summary') is not None:
1437
1514
  self.summary = m.get('Summary')
1438
1515
 
1516
+ if m.get('Tags') is not None:
1517
+ self.tags = m.get('Tags')
1518
+
1439
1519
  if m.get('Title') is not None:
1440
1520
  self.title = m.get('Title')
1441
1521
 
@@ -1925,26 +2005,36 @@ class RunSearchGenerationResponseBodyPayloadOutputAgentContextBizContextGenerate
1925
2005
  class RunSearchGenerationResponseBodyPayloadOutputAgentContextBizContextGeneratedContentTextSearchResultSearchResult(DaraModel):
1926
2006
  def __init__(
1927
2007
  self,
2008
+ category_uuid: str = None,
1928
2009
  content: str = None,
1929
2010
  doc_id: str = None,
1930
2011
  doc_uuid: str = None,
2012
+ extend_1: str = None,
2013
+ extend_2: str = None,
2014
+ extend_3: str = None,
1931
2015
  pub_time: str = None,
1932
2016
  search_source: str = None,
1933
2017
  search_source_name: str = None,
1934
2018
  search_source_type: str = None,
1935
2019
  summary: str = None,
2020
+ tags: List[str] = None,
1936
2021
  title: str = None,
1937
2022
  traceability_id: str = None,
1938
2023
  url: str = None,
1939
2024
  ):
2025
+ self.category_uuid = category_uuid
1940
2026
  self.content = content
1941
2027
  self.doc_id = doc_id
1942
2028
  self.doc_uuid = doc_uuid
2029
+ self.extend_1 = extend_1
2030
+ self.extend_2 = extend_2
2031
+ self.extend_3 = extend_3
1943
2032
  self.pub_time = pub_time
1944
2033
  self.search_source = search_source
1945
2034
  self.search_source_name = search_source_name
1946
2035
  self.search_source_type = search_source_type
1947
2036
  self.summary = summary
2037
+ self.tags = tags
1948
2038
  self.title = title
1949
2039
  self.traceability_id = traceability_id
1950
2040
  self.url = url
@@ -1957,6 +2047,9 @@ class RunSearchGenerationResponseBodyPayloadOutputAgentContextBizContextGenerate
1957
2047
  _map = super().to_map()
1958
2048
  if _map is not None:
1959
2049
  result = _map
2050
+ if self.category_uuid is not None:
2051
+ result['CategoryUuid'] = self.category_uuid
2052
+
1960
2053
  if self.content is not None:
1961
2054
  result['Content'] = self.content
1962
2055
 
@@ -1966,6 +2059,15 @@ class RunSearchGenerationResponseBodyPayloadOutputAgentContextBizContextGenerate
1966
2059
  if self.doc_uuid is not None:
1967
2060
  result['DocUuid'] = self.doc_uuid
1968
2061
 
2062
+ if self.extend_1 is not None:
2063
+ result['Extend1'] = self.extend_1
2064
+
2065
+ if self.extend_2 is not None:
2066
+ result['Extend2'] = self.extend_2
2067
+
2068
+ if self.extend_3 is not None:
2069
+ result['Extend3'] = self.extend_3
2070
+
1969
2071
  if self.pub_time is not None:
1970
2072
  result['PubTime'] = self.pub_time
1971
2073
 
@@ -1981,6 +2083,9 @@ class RunSearchGenerationResponseBodyPayloadOutputAgentContextBizContextGenerate
1981
2083
  if self.summary is not None:
1982
2084
  result['Summary'] = self.summary
1983
2085
 
2086
+ if self.tags is not None:
2087
+ result['Tags'] = self.tags
2088
+
1984
2089
  if self.title is not None:
1985
2090
  result['Title'] = self.title
1986
2091
 
@@ -1994,6 +2099,9 @@ class RunSearchGenerationResponseBodyPayloadOutputAgentContextBizContextGenerate
1994
2099
 
1995
2100
  def from_map(self, m: dict = None):
1996
2101
  m = m or dict()
2102
+ if m.get('CategoryUuid') is not None:
2103
+ self.category_uuid = m.get('CategoryUuid')
2104
+
1997
2105
  if m.get('Content') is not None:
1998
2106
  self.content = m.get('Content')
1999
2107
 
@@ -2003,6 +2111,15 @@ class RunSearchGenerationResponseBodyPayloadOutputAgentContextBizContextGenerate
2003
2111
  if m.get('DocUuid') is not None:
2004
2112
  self.doc_uuid = m.get('DocUuid')
2005
2113
 
2114
+ if m.get('Extend1') is not None:
2115
+ self.extend_1 = m.get('Extend1')
2116
+
2117
+ if m.get('Extend2') is not None:
2118
+ self.extend_2 = m.get('Extend2')
2119
+
2120
+ if m.get('Extend3') is not None:
2121
+ self.extend_3 = m.get('Extend3')
2122
+
2006
2123
  if m.get('PubTime') is not None:
2007
2124
  self.pub_time = m.get('PubTime')
2008
2125
 
@@ -2018,6 +2135,9 @@ class RunSearchGenerationResponseBodyPayloadOutputAgentContextBizContextGenerate
2018
2135
  if m.get('Summary') is not None:
2019
2136
  self.summary = m.get('Summary')
2020
2137
 
2138
+ if m.get('Tags') is not None:
2139
+ self.tags = m.get('Tags')
2140
+
2021
2141
  if m.get('Title') is not None:
2022
2142
  self.title = m.get('Title')
2023
2143
 
@@ -2315,10 +2435,14 @@ class RunSearchGenerationResponseBodyPayloadOutputAgentContextBizContextGenerate
2315
2435
  class RunSearchGenerationResponseBodyPayloadOutputAgentContextBizContextGeneratedContentTextGenerateResultReferenceList(DaraModel):
2316
2436
  def __init__(
2317
2437
  self,
2438
+ category_uuid: str = None,
2318
2439
  chunks: List[str] = None,
2319
2440
  content: str = None,
2320
2441
  doc_id: str = None,
2321
2442
  doc_uuid: str = None,
2443
+ extend_1: str = None,
2444
+ extend_2: str = None,
2445
+ extend_3: str = None,
2322
2446
  pub_time: str = None,
2323
2447
  score: float = None,
2324
2448
  search_source: str = None,
@@ -2327,14 +2451,19 @@ class RunSearchGenerationResponseBodyPayloadOutputAgentContextBizContextGenerate
2327
2451
  select: bool = None,
2328
2452
  source: str = None,
2329
2453
  summary: str = None,
2454
+ tags: List[str] = None,
2330
2455
  title: str = None,
2331
2456
  traceability_id: int = None,
2332
2457
  url: str = None,
2333
2458
  ):
2459
+ self.category_uuid = category_uuid
2334
2460
  self.chunks = chunks
2335
2461
  self.content = content
2336
2462
  self.doc_id = doc_id
2337
2463
  self.doc_uuid = doc_uuid
2464
+ self.extend_1 = extend_1
2465
+ self.extend_2 = extend_2
2466
+ self.extend_3 = extend_3
2338
2467
  self.pub_time = pub_time
2339
2468
  self.score = score
2340
2469
  self.search_source = search_source
@@ -2343,6 +2472,7 @@ class RunSearchGenerationResponseBodyPayloadOutputAgentContextBizContextGenerate
2343
2472
  self.select = select
2344
2473
  self.source = source
2345
2474
  self.summary = summary
2475
+ self.tags = tags
2346
2476
  self.title = title
2347
2477
  self.traceability_id = traceability_id
2348
2478
  self.url = url
@@ -2355,6 +2485,9 @@ class RunSearchGenerationResponseBodyPayloadOutputAgentContextBizContextGenerate
2355
2485
  _map = super().to_map()
2356
2486
  if _map is not None:
2357
2487
  result = _map
2488
+ if self.category_uuid is not None:
2489
+ result['CategoryUuid'] = self.category_uuid
2490
+
2358
2491
  if self.chunks is not None:
2359
2492
  result['Chunks'] = self.chunks
2360
2493
 
@@ -2367,6 +2500,15 @@ class RunSearchGenerationResponseBodyPayloadOutputAgentContextBizContextGenerate
2367
2500
  if self.doc_uuid is not None:
2368
2501
  result['DocUuid'] = self.doc_uuid
2369
2502
 
2503
+ if self.extend_1 is not None:
2504
+ result['Extend1'] = self.extend_1
2505
+
2506
+ if self.extend_2 is not None:
2507
+ result['Extend2'] = self.extend_2
2508
+
2509
+ if self.extend_3 is not None:
2510
+ result['Extend3'] = self.extend_3
2511
+
2370
2512
  if self.pub_time is not None:
2371
2513
  result['PubTime'] = self.pub_time
2372
2514
 
@@ -2391,6 +2533,9 @@ class RunSearchGenerationResponseBodyPayloadOutputAgentContextBizContextGenerate
2391
2533
  if self.summary is not None:
2392
2534
  result['Summary'] = self.summary
2393
2535
 
2536
+ if self.tags is not None:
2537
+ result['Tags'] = self.tags
2538
+
2394
2539
  if self.title is not None:
2395
2540
  result['Title'] = self.title
2396
2541
 
@@ -2404,6 +2549,9 @@ class RunSearchGenerationResponseBodyPayloadOutputAgentContextBizContextGenerate
2404
2549
 
2405
2550
  def from_map(self, m: dict = None):
2406
2551
  m = m or dict()
2552
+ if m.get('CategoryUuid') is not None:
2553
+ self.category_uuid = m.get('CategoryUuid')
2554
+
2407
2555
  if m.get('Chunks') is not None:
2408
2556
  self.chunks = m.get('Chunks')
2409
2557
 
@@ -2416,6 +2564,15 @@ class RunSearchGenerationResponseBodyPayloadOutputAgentContextBizContextGenerate
2416
2564
  if m.get('DocUuid') is not None:
2417
2565
  self.doc_uuid = m.get('DocUuid')
2418
2566
 
2567
+ if m.get('Extend1') is not None:
2568
+ self.extend_1 = m.get('Extend1')
2569
+
2570
+ if m.get('Extend2') is not None:
2571
+ self.extend_2 = m.get('Extend2')
2572
+
2573
+ if m.get('Extend3') is not None:
2574
+ self.extend_3 = m.get('Extend3')
2575
+
2419
2576
  if m.get('PubTime') is not None:
2420
2577
  self.pub_time = m.get('PubTime')
2421
2578
 
@@ -2440,6 +2597,9 @@ class RunSearchGenerationResponseBodyPayloadOutputAgentContextBizContextGenerate
2440
2597
  if m.get('Summary') is not None:
2441
2598
  self.summary = m.get('Summary')
2442
2599
 
2600
+ if m.get('Tags') is not None:
2601
+ self.tags = m.get('Tags')
2602
+
2443
2603
  if m.get('Title') is not None:
2444
2604
  self.title = m.get('Title')
2445
2605
 
@@ -3111,9 +3271,13 @@ class RunSearchGenerationResponseBodyPayloadOutputAgentContextBizContextGenerate
3111
3271
  class RunSearchGenerationResponseBodyPayloadOutputAgentContextBizContextGeneratedContentNewsElementResultNewsElementArticleListArticle(DaraModel):
3112
3272
  def __init__(
3113
3273
  self,
3274
+ category_uuid: str = None,
3114
3275
  content: str = None,
3115
3276
  doc_id: str = None,
3116
3277
  doc_uuid: str = None,
3278
+ extend_1: str = None,
3279
+ extend_2: str = None,
3280
+ extend_3: str = None,
3117
3281
  pub_time: str = None,
3118
3282
  score: float = None,
3119
3283
  search_source: str = None,
@@ -3121,12 +3285,17 @@ class RunSearchGenerationResponseBodyPayloadOutputAgentContextBizContextGenerate
3121
3285
  search_source_type: str = None,
3122
3286
  select: bool = None,
3123
3287
  summary: str = None,
3288
+ tags: List[str] = None,
3124
3289
  title: str = None,
3125
3290
  url: str = None,
3126
3291
  ):
3292
+ self.category_uuid = category_uuid
3127
3293
  self.content = content
3128
3294
  self.doc_id = doc_id
3129
3295
  self.doc_uuid = doc_uuid
3296
+ self.extend_1 = extend_1
3297
+ self.extend_2 = extend_2
3298
+ self.extend_3 = extend_3
3130
3299
  self.pub_time = pub_time
3131
3300
  self.score = score
3132
3301
  self.search_source = search_source
@@ -3134,6 +3303,7 @@ class RunSearchGenerationResponseBodyPayloadOutputAgentContextBizContextGenerate
3134
3303
  self.search_source_type = search_source_type
3135
3304
  self.select = select
3136
3305
  self.summary = summary
3306
+ self.tags = tags
3137
3307
  self.title = title
3138
3308
  self.url = url
3139
3309
 
@@ -3145,6 +3315,9 @@ class RunSearchGenerationResponseBodyPayloadOutputAgentContextBizContextGenerate
3145
3315
  _map = super().to_map()
3146
3316
  if _map is not None:
3147
3317
  result = _map
3318
+ if self.category_uuid is not None:
3319
+ result['CategoryUuid'] = self.category_uuid
3320
+
3148
3321
  if self.content is not None:
3149
3322
  result['Content'] = self.content
3150
3323
 
@@ -3154,6 +3327,15 @@ class RunSearchGenerationResponseBodyPayloadOutputAgentContextBizContextGenerate
3154
3327
  if self.doc_uuid is not None:
3155
3328
  result['DocUuid'] = self.doc_uuid
3156
3329
 
3330
+ if self.extend_1 is not None:
3331
+ result['Extend1'] = self.extend_1
3332
+
3333
+ if self.extend_2 is not None:
3334
+ result['Extend2'] = self.extend_2
3335
+
3336
+ if self.extend_3 is not None:
3337
+ result['Extend3'] = self.extend_3
3338
+
3157
3339
  if self.pub_time is not None:
3158
3340
  result['PubTime'] = self.pub_time
3159
3341
 
@@ -3175,6 +3357,9 @@ class RunSearchGenerationResponseBodyPayloadOutputAgentContextBizContextGenerate
3175
3357
  if self.summary is not None:
3176
3358
  result['Summary'] = self.summary
3177
3359
 
3360
+ if self.tags is not None:
3361
+ result['Tags'] = self.tags
3362
+
3178
3363
  if self.title is not None:
3179
3364
  result['Title'] = self.title
3180
3365
 
@@ -3185,6 +3370,9 @@ class RunSearchGenerationResponseBodyPayloadOutputAgentContextBizContextGenerate
3185
3370
 
3186
3371
  def from_map(self, m: dict = None):
3187
3372
  m = m or dict()
3373
+ if m.get('CategoryUuid') is not None:
3374
+ self.category_uuid = m.get('CategoryUuid')
3375
+
3188
3376
  if m.get('Content') is not None:
3189
3377
  self.content = m.get('Content')
3190
3378
 
@@ -3194,6 +3382,15 @@ class RunSearchGenerationResponseBodyPayloadOutputAgentContextBizContextGenerate
3194
3382
  if m.get('DocUuid') is not None:
3195
3383
  self.doc_uuid = m.get('DocUuid')
3196
3384
 
3385
+ if m.get('Extend1') is not None:
3386
+ self.extend_1 = m.get('Extend1')
3387
+
3388
+ if m.get('Extend2') is not None:
3389
+ self.extend_2 = m.get('Extend2')
3390
+
3391
+ if m.get('Extend3') is not None:
3392
+ self.extend_3 = m.get('Extend3')
3393
+
3197
3394
  if m.get('PubTime') is not None:
3198
3395
  self.pub_time = m.get('PubTime')
3199
3396
 
@@ -3215,6 +3412,9 @@ class RunSearchGenerationResponseBodyPayloadOutputAgentContextBizContextGenerate
3215
3412
  if m.get('Summary') is not None:
3216
3413
  self.summary = m.get('Summary')
3217
3414
 
3415
+ if m.get('Tags') is not None:
3416
+ self.tags = m.get('Tags')
3417
+
3218
3418
  if m.get('Title') is not None:
3219
3419
  self.title = m.get('Title')
3220
3420
 
@@ -3314,17 +3514,27 @@ class RunSearchGenerationResponseBodyPayloadOutputAgentContextBizContextGenerate
3314
3514
  class RunSearchGenerationResponseBodyPayloadOutputAgentContextBizContextGeneratedContentImageSearchResultSearchResultArticle(DaraModel):
3315
3515
  def __init__(
3316
3516
  self,
3517
+ category_uuid: str = None,
3317
3518
  doc_id: str = None,
3318
3519
  doc_uuid: str = None,
3520
+ extend_1: str = None,
3521
+ extend_2: str = None,
3522
+ extend_3: str = None,
3319
3523
  search_source_name: str = None,
3320
3524
  summary: str = None,
3525
+ tags: List[str] = None,
3321
3526
  title: str = None,
3322
3527
  url: str = None,
3323
3528
  ):
3529
+ self.category_uuid = category_uuid
3324
3530
  self.doc_id = doc_id
3325
3531
  self.doc_uuid = doc_uuid
3532
+ self.extend_1 = extend_1
3533
+ self.extend_2 = extend_2
3534
+ self.extend_3 = extend_3
3326
3535
  self.search_source_name = search_source_name
3327
3536
  self.summary = summary
3537
+ self.tags = tags
3328
3538
  self.title = title
3329
3539
  self.url = url
3330
3540
 
@@ -3336,18 +3546,33 @@ class RunSearchGenerationResponseBodyPayloadOutputAgentContextBizContextGenerate
3336
3546
  _map = super().to_map()
3337
3547
  if _map is not None:
3338
3548
  result = _map
3549
+ if self.category_uuid is not None:
3550
+ result['CategoryUuid'] = self.category_uuid
3551
+
3339
3552
  if self.doc_id is not None:
3340
3553
  result['DocId'] = self.doc_id
3341
3554
 
3342
3555
  if self.doc_uuid is not None:
3343
3556
  result['DocUuid'] = self.doc_uuid
3344
3557
 
3558
+ if self.extend_1 is not None:
3559
+ result['Extend1'] = self.extend_1
3560
+
3561
+ if self.extend_2 is not None:
3562
+ result['Extend2'] = self.extend_2
3563
+
3564
+ if self.extend_3 is not None:
3565
+ result['Extend3'] = self.extend_3
3566
+
3345
3567
  if self.search_source_name is not None:
3346
3568
  result['SearchSourceName'] = self.search_source_name
3347
3569
 
3348
3570
  if self.summary is not None:
3349
3571
  result['Summary'] = self.summary
3350
3572
 
3573
+ if self.tags is not None:
3574
+ result['Tags'] = self.tags
3575
+
3351
3576
  if self.title is not None:
3352
3577
  result['Title'] = self.title
3353
3578
 
@@ -3358,18 +3583,33 @@ class RunSearchGenerationResponseBodyPayloadOutputAgentContextBizContextGenerate
3358
3583
 
3359
3584
  def from_map(self, m: dict = None):
3360
3585
  m = m or dict()
3586
+ if m.get('CategoryUuid') is not None:
3587
+ self.category_uuid = m.get('CategoryUuid')
3588
+
3361
3589
  if m.get('DocId') is not None:
3362
3590
  self.doc_id = m.get('DocId')
3363
3591
 
3364
3592
  if m.get('DocUuid') is not None:
3365
3593
  self.doc_uuid = m.get('DocUuid')
3366
3594
 
3595
+ if m.get('Extend1') is not None:
3596
+ self.extend_1 = m.get('Extend1')
3597
+
3598
+ if m.get('Extend2') is not None:
3599
+ self.extend_2 = m.get('Extend2')
3600
+
3601
+ if m.get('Extend3') is not None:
3602
+ self.extend_3 = m.get('Extend3')
3603
+
3367
3604
  if m.get('SearchSourceName') is not None:
3368
3605
  self.search_source_name = m.get('SearchSourceName')
3369
3606
 
3370
3607
  if m.get('Summary') is not None:
3371
3608
  self.summary = m.get('Summary')
3372
3609
 
3610
+ if m.get('Tags') is not None:
3611
+ self.tags = m.get('Tags')
3612
+
3373
3613
  if m.get('Title') is not None:
3374
3614
  self.title = m.get('Title')
3375
3615
 
@@ -3448,11 +3688,15 @@ class RunSearchGenerationResponseBodyPayloadOutputAgentContextBizContextGenerate
3448
3688
  class RunSearchGenerationResponseBodyPayloadOutputAgentContextBizContextGeneratedContentExcerptResultSearchResult(DaraModel):
3449
3689
  def __init__(
3450
3690
  self,
3691
+ category_uuid: str = None,
3451
3692
  chunks: List[str] = None,
3452
3693
  content: str = None,
3453
3694
  doc_id: str = None,
3454
3695
  doc_uuid: str = None,
3455
3696
  excerpt: str = None,
3697
+ extend_1: str = None,
3698
+ extend_2: str = None,
3699
+ extend_3: str = None,
3456
3700
  multimodal_medias: List[main_models.RunSearchGenerationResponseBodyPayloadOutputAgentContextBizContextGeneratedContentExcerptResultSearchResultMultimodalMedias] = None,
3457
3701
  pub_time: str = None,
3458
3702
  score: float = None,
@@ -3461,16 +3705,21 @@ class RunSearchGenerationResponseBodyPayloadOutputAgentContextBizContextGenerate
3461
3705
  search_source_type: str = None,
3462
3706
  select: bool = None,
3463
3707
  summary: str = None,
3708
+ tags: List[str] = None,
3464
3709
  text_generate_multimodal_media_list: List[main_models.RunSearchGenerationResponseBodyPayloadOutputAgentContextBizContextGeneratedContentExcerptResultSearchResultTextGenerateMultimodalMediaList] = None,
3465
3710
  title: str = None,
3466
3711
  traceability_id: int = None,
3467
3712
  url: str = None,
3468
3713
  ):
3714
+ self.category_uuid = category_uuid
3469
3715
  self.chunks = chunks
3470
3716
  self.content = content
3471
3717
  self.doc_id = doc_id
3472
3718
  self.doc_uuid = doc_uuid
3473
3719
  self.excerpt = excerpt
3720
+ self.extend_1 = extend_1
3721
+ self.extend_2 = extend_2
3722
+ self.extend_3 = extend_3
3474
3723
  self.multimodal_medias = multimodal_medias
3475
3724
  self.pub_time = pub_time
3476
3725
  self.score = score
@@ -3479,6 +3728,7 @@ class RunSearchGenerationResponseBodyPayloadOutputAgentContextBizContextGenerate
3479
3728
  self.search_source_type = search_source_type
3480
3729
  self.select = select
3481
3730
  self.summary = summary
3731
+ self.tags = tags
3482
3732
  self.text_generate_multimodal_media_list = text_generate_multimodal_media_list
3483
3733
  self.title = title
3484
3734
  self.traceability_id = traceability_id
@@ -3499,6 +3749,9 @@ class RunSearchGenerationResponseBodyPayloadOutputAgentContextBizContextGenerate
3499
3749
  _map = super().to_map()
3500
3750
  if _map is not None:
3501
3751
  result = _map
3752
+ if self.category_uuid is not None:
3753
+ result['CategoryUuid'] = self.category_uuid
3754
+
3502
3755
  if self.chunks is not None:
3503
3756
  result['Chunks'] = self.chunks
3504
3757
 
@@ -3514,6 +3767,15 @@ class RunSearchGenerationResponseBodyPayloadOutputAgentContextBizContextGenerate
3514
3767
  if self.excerpt is not None:
3515
3768
  result['Excerpt'] = self.excerpt
3516
3769
 
3770
+ if self.extend_1 is not None:
3771
+ result['Extend1'] = self.extend_1
3772
+
3773
+ if self.extend_2 is not None:
3774
+ result['Extend2'] = self.extend_2
3775
+
3776
+ if self.extend_3 is not None:
3777
+ result['Extend3'] = self.extend_3
3778
+
3517
3779
  result['MultimodalMedias'] = []
3518
3780
  if self.multimodal_medias is not None:
3519
3781
  for k1 in self.multimodal_medias:
@@ -3540,6 +3802,9 @@ class RunSearchGenerationResponseBodyPayloadOutputAgentContextBizContextGenerate
3540
3802
  if self.summary is not None:
3541
3803
  result['Summary'] = self.summary
3542
3804
 
3805
+ if self.tags is not None:
3806
+ result['Tags'] = self.tags
3807
+
3543
3808
  result['TextGenerateMultimodalMediaList'] = []
3544
3809
  if self.text_generate_multimodal_media_list is not None:
3545
3810
  for k1 in self.text_generate_multimodal_media_list:
@@ -3558,6 +3823,9 @@ class RunSearchGenerationResponseBodyPayloadOutputAgentContextBizContextGenerate
3558
3823
 
3559
3824
  def from_map(self, m: dict = None):
3560
3825
  m = m or dict()
3826
+ if m.get('CategoryUuid') is not None:
3827
+ self.category_uuid = m.get('CategoryUuid')
3828
+
3561
3829
  if m.get('Chunks') is not None:
3562
3830
  self.chunks = m.get('Chunks')
3563
3831
 
@@ -3573,6 +3841,15 @@ class RunSearchGenerationResponseBodyPayloadOutputAgentContextBizContextGenerate
3573
3841
  if m.get('Excerpt') is not None:
3574
3842
  self.excerpt = m.get('Excerpt')
3575
3843
 
3844
+ if m.get('Extend1') is not None:
3845
+ self.extend_1 = m.get('Extend1')
3846
+
3847
+ if m.get('Extend2') is not None:
3848
+ self.extend_2 = m.get('Extend2')
3849
+
3850
+ if m.get('Extend3') is not None:
3851
+ self.extend_3 = m.get('Extend3')
3852
+
3576
3853
  self.multimodal_medias = []
3577
3854
  if m.get('MultimodalMedias') is not None:
3578
3855
  for k1 in m.get('MultimodalMedias'):
@@ -3600,6 +3877,9 @@ class RunSearchGenerationResponseBodyPayloadOutputAgentContextBizContextGenerate
3600
3877
  if m.get('Summary') is not None:
3601
3878
  self.summary = m.get('Summary')
3602
3879
 
3880
+ if m.get('Tags') is not None:
3881
+ self.tags = m.get('Tags')
3882
+
3603
3883
  self.text_generate_multimodal_media_list = []
3604
3884
  if m.get('TextGenerateMultimodalMediaList') is not None:
3605
3885
  for k1 in m.get('TextGenerateMultimodalMediaList'):
@@ -4135,17 +4415,31 @@ class RunSearchGenerationResponseBodyPayloadOutputAgentContextBizContextGenerate
4135
4415
  class RunSearchGenerationResponseBodyPayloadOutputAgentContextBizContextGeneratedContentClusterTopicResultClusterTopicsVideoSearchResultSearchResultArticle(DaraModel):
4136
4416
  def __init__(
4137
4417
  self,
4418
+ category_uuid: str = None,
4138
4419
  doc_id: str = None,
4139
4420
  doc_uuid: str = None,
4421
+ extend_1: str = None,
4422
+ extend_2: str = None,
4423
+ extend_3: str = None,
4424
+ search_source: str = None,
4140
4425
  search_source_name: str = None,
4426
+ search_source_type: str = None,
4141
4427
  summary: str = None,
4428
+ tags: List[str] = None,
4142
4429
  title: str = None,
4143
4430
  url: str = None,
4144
4431
  ):
4432
+ self.category_uuid = category_uuid
4145
4433
  self.doc_id = doc_id
4146
4434
  self.doc_uuid = doc_uuid
4435
+ self.extend_1 = extend_1
4436
+ self.extend_2 = extend_2
4437
+ self.extend_3 = extend_3
4438
+ self.search_source = search_source
4147
4439
  self.search_source_name = search_source_name
4440
+ self.search_source_type = search_source_type
4148
4441
  self.summary = summary
4442
+ self.tags = tags
4149
4443
  self.title = title
4150
4444
  self.url = url
4151
4445
 
@@ -4157,18 +4451,39 @@ class RunSearchGenerationResponseBodyPayloadOutputAgentContextBizContextGenerate
4157
4451
  _map = super().to_map()
4158
4452
  if _map is not None:
4159
4453
  result = _map
4454
+ if self.category_uuid is not None:
4455
+ result['CategoryUuid'] = self.category_uuid
4456
+
4160
4457
  if self.doc_id is not None:
4161
4458
  result['DocId'] = self.doc_id
4162
4459
 
4163
4460
  if self.doc_uuid is not None:
4164
4461
  result['DocUuid'] = self.doc_uuid
4165
4462
 
4463
+ if self.extend_1 is not None:
4464
+ result['Extend1'] = self.extend_1
4465
+
4466
+ if self.extend_2 is not None:
4467
+ result['Extend2'] = self.extend_2
4468
+
4469
+ if self.extend_3 is not None:
4470
+ result['Extend3'] = self.extend_3
4471
+
4472
+ if self.search_source is not None:
4473
+ result['SearchSource'] = self.search_source
4474
+
4166
4475
  if self.search_source_name is not None:
4167
4476
  result['SearchSourceName'] = self.search_source_name
4168
4477
 
4478
+ if self.search_source_type is not None:
4479
+ result['SearchSourceType'] = self.search_source_type
4480
+
4169
4481
  if self.summary is not None:
4170
4482
  result['Summary'] = self.summary
4171
4483
 
4484
+ if self.tags is not None:
4485
+ result['Tags'] = self.tags
4486
+
4172
4487
  if self.title is not None:
4173
4488
  result['Title'] = self.title
4174
4489
 
@@ -4179,18 +4494,39 @@ class RunSearchGenerationResponseBodyPayloadOutputAgentContextBizContextGenerate
4179
4494
 
4180
4495
  def from_map(self, m: dict = None):
4181
4496
  m = m or dict()
4497
+ if m.get('CategoryUuid') is not None:
4498
+ self.category_uuid = m.get('CategoryUuid')
4499
+
4182
4500
  if m.get('DocId') is not None:
4183
4501
  self.doc_id = m.get('DocId')
4184
4502
 
4185
4503
  if m.get('DocUuid') is not None:
4186
4504
  self.doc_uuid = m.get('DocUuid')
4187
4505
 
4506
+ if m.get('Extend1') is not None:
4507
+ self.extend_1 = m.get('Extend1')
4508
+
4509
+ if m.get('Extend2') is not None:
4510
+ self.extend_2 = m.get('Extend2')
4511
+
4512
+ if m.get('Extend3') is not None:
4513
+ self.extend_3 = m.get('Extend3')
4514
+
4515
+ if m.get('SearchSource') is not None:
4516
+ self.search_source = m.get('SearchSource')
4517
+
4188
4518
  if m.get('SearchSourceName') is not None:
4189
4519
  self.search_source_name = m.get('SearchSourceName')
4190
4520
 
4521
+ if m.get('SearchSourceType') is not None:
4522
+ self.search_source_type = m.get('SearchSourceType')
4523
+
4191
4524
  if m.get('Summary') is not None:
4192
4525
  self.summary = m.get('Summary')
4193
4526
 
4527
+ if m.get('Tags') is not None:
4528
+ self.tags = m.get('Tags')
4529
+
4194
4530
  if m.get('Title') is not None:
4195
4531
  self.title = m.get('Title')
4196
4532
 
@@ -4261,25 +4597,35 @@ class RunSearchGenerationResponseBodyPayloadOutputAgentContextBizContextGenerate
4261
4597
  class RunSearchGenerationResponseBodyPayloadOutputAgentContextBizContextGeneratedContentClusterTopicResultClusterTopicsTextSearchResultSearchResult(DaraModel):
4262
4598
  def __init__(
4263
4599
  self,
4600
+ category_uuid: str = None,
4264
4601
  doc_id: str = None,
4265
4602
  doc_uuid: str = None,
4603
+ extend_1: str = None,
4604
+ extend_2: str = None,
4605
+ extend_3: str = None,
4266
4606
  multimodal_medias: List[main_models.RunSearchGenerationResponseBodyPayloadOutputAgentContextBizContextGeneratedContentClusterTopicResultClusterTopicsTextSearchResultSearchResultMultimodalMedias] = None,
4267
4607
  pub_time: str = None,
4268
4608
  search_source: str = None,
4269
4609
  search_source_name: str = None,
4270
4610
  search_source_type: str = None,
4271
4611
  summary: str = None,
4612
+ tags: List[str] = None,
4272
4613
  title: str = None,
4273
4614
  url: str = None,
4274
4615
  ):
4616
+ self.category_uuid = category_uuid
4275
4617
  self.doc_id = doc_id
4276
4618
  self.doc_uuid = doc_uuid
4619
+ self.extend_1 = extend_1
4620
+ self.extend_2 = extend_2
4621
+ self.extend_3 = extend_3
4277
4622
  self.multimodal_medias = multimodal_medias
4278
4623
  self.pub_time = pub_time
4279
4624
  self.search_source = search_source
4280
4625
  self.search_source_name = search_source_name
4281
4626
  self.search_source_type = search_source_type
4282
4627
  self.summary = summary
4628
+ self.tags = tags
4283
4629
  self.title = title
4284
4630
  self.url = url
4285
4631
 
@@ -4294,12 +4640,24 @@ class RunSearchGenerationResponseBodyPayloadOutputAgentContextBizContextGenerate
4294
4640
  _map = super().to_map()
4295
4641
  if _map is not None:
4296
4642
  result = _map
4643
+ if self.category_uuid is not None:
4644
+ result['CategoryUuid'] = self.category_uuid
4645
+
4297
4646
  if self.doc_id is not None:
4298
4647
  result['DocId'] = self.doc_id
4299
4648
 
4300
4649
  if self.doc_uuid is not None:
4301
4650
  result['DocUuid'] = self.doc_uuid
4302
4651
 
4652
+ if self.extend_1 is not None:
4653
+ result['Extend1'] = self.extend_1
4654
+
4655
+ if self.extend_2 is not None:
4656
+ result['Extend2'] = self.extend_2
4657
+
4658
+ if self.extend_3 is not None:
4659
+ result['Extend3'] = self.extend_3
4660
+
4303
4661
  result['MultimodalMedias'] = []
4304
4662
  if self.multimodal_medias is not None:
4305
4663
  for k1 in self.multimodal_medias:
@@ -4320,6 +4678,9 @@ class RunSearchGenerationResponseBodyPayloadOutputAgentContextBizContextGenerate
4320
4678
  if self.summary is not None:
4321
4679
  result['Summary'] = self.summary
4322
4680
 
4681
+ if self.tags is not None:
4682
+ result['Tags'] = self.tags
4683
+
4323
4684
  if self.title is not None:
4324
4685
  result['Title'] = self.title
4325
4686
 
@@ -4330,12 +4691,24 @@ class RunSearchGenerationResponseBodyPayloadOutputAgentContextBizContextGenerate
4330
4691
 
4331
4692
  def from_map(self, m: dict = None):
4332
4693
  m = m or dict()
4694
+ if m.get('CategoryUuid') is not None:
4695
+ self.category_uuid = m.get('CategoryUuid')
4696
+
4333
4697
  if m.get('DocId') is not None:
4334
4698
  self.doc_id = m.get('DocId')
4335
4699
 
4336
4700
  if m.get('DocUuid') is not None:
4337
4701
  self.doc_uuid = m.get('DocUuid')
4338
4702
 
4703
+ if m.get('Extend1') is not None:
4704
+ self.extend_1 = m.get('Extend1')
4705
+
4706
+ if m.get('Extend2') is not None:
4707
+ self.extend_2 = m.get('Extend2')
4708
+
4709
+ if m.get('Extend3') is not None:
4710
+ self.extend_3 = m.get('Extend3')
4711
+
4339
4712
  self.multimodal_medias = []
4340
4713
  if m.get('MultimodalMedias') is not None:
4341
4714
  for k1 in m.get('MultimodalMedias'):
@@ -4357,6 +4730,9 @@ class RunSearchGenerationResponseBodyPayloadOutputAgentContextBizContextGenerate
4357
4730
  if m.get('Summary') is not None:
4358
4731
  self.summary = m.get('Summary')
4359
4732
 
4733
+ if m.get('Tags') is not None:
4734
+ self.tags = m.get('Tags')
4735
+
4360
4736
  if m.get('Title') is not None:
4361
4737
  self.title = m.get('Title')
4362
4738
 
@@ -4515,17 +4891,31 @@ class RunSearchGenerationResponseBodyPayloadOutputAgentContextBizContextGenerate
4515
4891
  class RunSearchGenerationResponseBodyPayloadOutputAgentContextBizContextGeneratedContentClusterTopicResultClusterTopicsImageSearchResultSearchResultArticle(DaraModel):
4516
4892
  def __init__(
4517
4893
  self,
4894
+ category_uuid: str = None,
4518
4895
  doc_id: str = None,
4519
4896
  doc_uuid: str = None,
4897
+ extend_1: str = None,
4898
+ extend_2: str = None,
4899
+ extend_3: str = None,
4900
+ search_source: str = None,
4520
4901
  search_source_name: str = None,
4902
+ search_source_type: str = None,
4521
4903
  summary: str = None,
4904
+ tags: List[str] = None,
4522
4905
  title: str = None,
4523
4906
  url: str = None,
4524
4907
  ):
4908
+ self.category_uuid = category_uuid
4525
4909
  self.doc_id = doc_id
4526
4910
  self.doc_uuid = doc_uuid
4911
+ self.extend_1 = extend_1
4912
+ self.extend_2 = extend_2
4913
+ self.extend_3 = extend_3
4914
+ self.search_source = search_source
4527
4915
  self.search_source_name = search_source_name
4916
+ self.search_source_type = search_source_type
4528
4917
  self.summary = summary
4918
+ self.tags = tags
4529
4919
  self.title = title
4530
4920
  self.url = url
4531
4921
 
@@ -4537,18 +4927,39 @@ class RunSearchGenerationResponseBodyPayloadOutputAgentContextBizContextGenerate
4537
4927
  _map = super().to_map()
4538
4928
  if _map is not None:
4539
4929
  result = _map
4930
+ if self.category_uuid is not None:
4931
+ result['CategoryUuid'] = self.category_uuid
4932
+
4540
4933
  if self.doc_id is not None:
4541
4934
  result['DocId'] = self.doc_id
4542
4935
 
4543
4936
  if self.doc_uuid is not None:
4544
4937
  result['DocUuid'] = self.doc_uuid
4545
4938
 
4939
+ if self.extend_1 is not None:
4940
+ result['Extend1'] = self.extend_1
4941
+
4942
+ if self.extend_2 is not None:
4943
+ result['Extend2'] = self.extend_2
4944
+
4945
+ if self.extend_3 is not None:
4946
+ result['Extend3'] = self.extend_3
4947
+
4948
+ if self.search_source is not None:
4949
+ result['SearchSource'] = self.search_source
4950
+
4546
4951
  if self.search_source_name is not None:
4547
4952
  result['SearchSourceName'] = self.search_source_name
4548
4953
 
4954
+ if self.search_source_type is not None:
4955
+ result['SearchSourceType'] = self.search_source_type
4956
+
4549
4957
  if self.summary is not None:
4550
4958
  result['Summary'] = self.summary
4551
4959
 
4960
+ if self.tags is not None:
4961
+ result['Tags'] = self.tags
4962
+
4552
4963
  if self.title is not None:
4553
4964
  result['Title'] = self.title
4554
4965
 
@@ -4559,18 +4970,39 @@ class RunSearchGenerationResponseBodyPayloadOutputAgentContextBizContextGenerate
4559
4970
 
4560
4971
  def from_map(self, m: dict = None):
4561
4972
  m = m or dict()
4973
+ if m.get('CategoryUuid') is not None:
4974
+ self.category_uuid = m.get('CategoryUuid')
4975
+
4562
4976
  if m.get('DocId') is not None:
4563
4977
  self.doc_id = m.get('DocId')
4564
4978
 
4565
4979
  if m.get('DocUuid') is not None:
4566
4980
  self.doc_uuid = m.get('DocUuid')
4567
4981
 
4982
+ if m.get('Extend1') is not None:
4983
+ self.extend_1 = m.get('Extend1')
4984
+
4985
+ if m.get('Extend2') is not None:
4986
+ self.extend_2 = m.get('Extend2')
4987
+
4988
+ if m.get('Extend3') is not None:
4989
+ self.extend_3 = m.get('Extend3')
4990
+
4991
+ if m.get('SearchSource') is not None:
4992
+ self.search_source = m.get('SearchSource')
4993
+
4568
4994
  if m.get('SearchSourceName') is not None:
4569
4995
  self.search_source_name = m.get('SearchSourceName')
4570
4996
 
4997
+ if m.get('SearchSourceType') is not None:
4998
+ self.search_source_type = m.get('SearchSourceType')
4999
+
4571
5000
  if m.get('Summary') is not None:
4572
5001
  self.summary = m.get('Summary')
4573
5002
 
5003
+ if m.get('Tags') is not None:
5004
+ self.tags = m.get('Tags')
5005
+
4574
5006
  if m.get('Title') is not None:
4575
5007
  self.title = m.get('Title')
4576
5008
 
@@ -4756,17 +5188,31 @@ class RunSearchGenerationResponseBodyPayloadOutputAgentContextBizContextGenerate
4756
5188
  class RunSearchGenerationResponseBodyPayloadOutputAgentContextBizContextGeneratedContentClusterTopicResultClusterTopicsAudioSearchResultSearchResultArticle(DaraModel):
4757
5189
  def __init__(
4758
5190
  self,
5191
+ category_uuid: str = None,
4759
5192
  doc_id: str = None,
4760
5193
  doc_uuid: str = None,
5194
+ extend_1: str = None,
5195
+ extend_2: str = None,
5196
+ extend_3: str = None,
5197
+ search_source: str = None,
4761
5198
  search_source_name: str = None,
5199
+ search_source_type: str = None,
4762
5200
  summary: str = None,
5201
+ tags: List[str] = None,
4763
5202
  title: str = None,
4764
5203
  url: str = None,
4765
5204
  ):
5205
+ self.category_uuid = category_uuid
4766
5206
  self.doc_id = doc_id
4767
5207
  self.doc_uuid = doc_uuid
5208
+ self.extend_1 = extend_1
5209
+ self.extend_2 = extend_2
5210
+ self.extend_3 = extend_3
5211
+ self.search_source = search_source
4768
5212
  self.search_source_name = search_source_name
5213
+ self.search_source_type = search_source_type
4769
5214
  self.summary = summary
5215
+ self.tags = tags
4770
5216
  self.title = title
4771
5217
  self.url = url
4772
5218
 
@@ -4778,18 +5224,39 @@ class RunSearchGenerationResponseBodyPayloadOutputAgentContextBizContextGenerate
4778
5224
  _map = super().to_map()
4779
5225
  if _map is not None:
4780
5226
  result = _map
5227
+ if self.category_uuid is not None:
5228
+ result['CategoryUuid'] = self.category_uuid
5229
+
4781
5230
  if self.doc_id is not None:
4782
5231
  result['DocId'] = self.doc_id
4783
5232
 
4784
5233
  if self.doc_uuid is not None:
4785
5234
  result['DocUuid'] = self.doc_uuid
4786
5235
 
5236
+ if self.extend_1 is not None:
5237
+ result['Extend1'] = self.extend_1
5238
+
5239
+ if self.extend_2 is not None:
5240
+ result['Extend2'] = self.extend_2
5241
+
5242
+ if self.extend_3 is not None:
5243
+ result['Extend3'] = self.extend_3
5244
+
5245
+ if self.search_source is not None:
5246
+ result['SearchSource'] = self.search_source
5247
+
4787
5248
  if self.search_source_name is not None:
4788
5249
  result['SearchSourceName'] = self.search_source_name
4789
5250
 
5251
+ if self.search_source_type is not None:
5252
+ result['SearchSourceType'] = self.search_source_type
5253
+
4790
5254
  if self.summary is not None:
4791
5255
  result['Summary'] = self.summary
4792
5256
 
5257
+ if self.tags is not None:
5258
+ result['Tags'] = self.tags
5259
+
4793
5260
  if self.title is not None:
4794
5261
  result['Title'] = self.title
4795
5262
 
@@ -4800,18 +5267,39 @@ class RunSearchGenerationResponseBodyPayloadOutputAgentContextBizContextGenerate
4800
5267
 
4801
5268
  def from_map(self, m: dict = None):
4802
5269
  m = m or dict()
5270
+ if m.get('CategoryUuid') is not None:
5271
+ self.category_uuid = m.get('CategoryUuid')
5272
+
4803
5273
  if m.get('DocId') is not None:
4804
5274
  self.doc_id = m.get('DocId')
4805
5275
 
4806
5276
  if m.get('DocUuid') is not None:
4807
5277
  self.doc_uuid = m.get('DocUuid')
4808
5278
 
5279
+ if m.get('Extend1') is not None:
5280
+ self.extend_1 = m.get('Extend1')
5281
+
5282
+ if m.get('Extend2') is not None:
5283
+ self.extend_2 = m.get('Extend2')
5284
+
5285
+ if m.get('Extend3') is not None:
5286
+ self.extend_3 = m.get('Extend3')
5287
+
5288
+ if m.get('SearchSource') is not None:
5289
+ self.search_source = m.get('SearchSource')
5290
+
4809
5291
  if m.get('SearchSourceName') is not None:
4810
5292
  self.search_source_name = m.get('SearchSourceName')
4811
5293
 
5294
+ if m.get('SearchSourceType') is not None:
5295
+ self.search_source_type = m.get('SearchSourceType')
5296
+
4812
5297
  if m.get('Summary') is not None:
4813
5298
  self.summary = m.get('Summary')
4814
5299
 
5300
+ if m.get('Tags') is not None:
5301
+ self.tags = m.get('Tags')
5302
+
4815
5303
  if m.get('Title') is not None:
4816
5304
  self.title = m.get('Title')
4817
5305
 
@@ -4987,17 +5475,27 @@ class RunSearchGenerationResponseBodyPayloadOutputAgentContextBizContextGenerate
4987
5475
  class RunSearchGenerationResponseBodyPayloadOutputAgentContextBizContextGeneratedContentAudioSearchResultSearchResultArticle(DaraModel):
4988
5476
  def __init__(
4989
5477
  self,
5478
+ category_uuid: str = None,
4990
5479
  doc_id: str = None,
4991
5480
  doc_uuid: str = None,
5481
+ extend_1: str = None,
5482
+ extend_2: str = None,
5483
+ extend_3: str = None,
4992
5484
  search_source_name: str = None,
4993
5485
  summary: str = None,
5486
+ tags: List[str] = None,
4994
5487
  title: str = None,
4995
5488
  url: str = None,
4996
5489
  ):
5490
+ self.category_uuid = category_uuid
4997
5491
  self.doc_id = doc_id
4998
5492
  self.doc_uuid = doc_uuid
5493
+ self.extend_1 = extend_1
5494
+ self.extend_2 = extend_2
5495
+ self.extend_3 = extend_3
4999
5496
  self.search_source_name = search_source_name
5000
5497
  self.summary = summary
5498
+ self.tags = tags
5001
5499
  self.title = title
5002
5500
  self.url = url
5003
5501
 
@@ -5009,18 +5507,33 @@ class RunSearchGenerationResponseBodyPayloadOutputAgentContextBizContextGenerate
5009
5507
  _map = super().to_map()
5010
5508
  if _map is not None:
5011
5509
  result = _map
5510
+ if self.category_uuid is not None:
5511
+ result['CategoryUuid'] = self.category_uuid
5512
+
5012
5513
  if self.doc_id is not None:
5013
5514
  result['DocId'] = self.doc_id
5014
5515
 
5015
5516
  if self.doc_uuid is not None:
5016
5517
  result['DocUuid'] = self.doc_uuid
5017
5518
 
5519
+ if self.extend_1 is not None:
5520
+ result['Extend1'] = self.extend_1
5521
+
5522
+ if self.extend_2 is not None:
5523
+ result['Extend2'] = self.extend_2
5524
+
5525
+ if self.extend_3 is not None:
5526
+ result['Extend3'] = self.extend_3
5527
+
5018
5528
  if self.search_source_name is not None:
5019
5529
  result['SearchSourceName'] = self.search_source_name
5020
5530
 
5021
5531
  if self.summary is not None:
5022
5532
  result['Summary'] = self.summary
5023
5533
 
5534
+ if self.tags is not None:
5535
+ result['Tags'] = self.tags
5536
+
5024
5537
  if self.title is not None:
5025
5538
  result['Title'] = self.title
5026
5539
 
@@ -5031,18 +5544,33 @@ class RunSearchGenerationResponseBodyPayloadOutputAgentContextBizContextGenerate
5031
5544
 
5032
5545
  def from_map(self, m: dict = None):
5033
5546
  m = m or dict()
5547
+ if m.get('CategoryUuid') is not None:
5548
+ self.category_uuid = m.get('CategoryUuid')
5549
+
5034
5550
  if m.get('DocId') is not None:
5035
5551
  self.doc_id = m.get('DocId')
5036
5552
 
5037
5553
  if m.get('DocUuid') is not None:
5038
5554
  self.doc_uuid = m.get('DocUuid')
5039
5555
 
5556
+ if m.get('Extend1') is not None:
5557
+ self.extend_1 = m.get('Extend1')
5558
+
5559
+ if m.get('Extend2') is not None:
5560
+ self.extend_2 = m.get('Extend2')
5561
+
5562
+ if m.get('Extend3') is not None:
5563
+ self.extend_3 = m.get('Extend3')
5564
+
5040
5565
  if m.get('SearchSourceName') is not None:
5041
5566
  self.search_source_name = m.get('SearchSourceName')
5042
5567
 
5043
5568
  if m.get('Summary') is not None:
5044
5569
  self.summary = m.get('Summary')
5045
5570
 
5571
+ if m.get('Tags') is not None:
5572
+ self.tags = m.get('Tags')
5573
+
5046
5574
  if m.get('Title') is not None:
5047
5575
  self.title = m.get('Title')
5048
5576