alita-sdk 0.3.279__py3-none-any.whl → 0.3.281__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.
@@ -15,4 +15,4 @@ class BrowserConfiguration(BaseModel):
15
15
  }
16
16
  )
17
17
  google_cse_id: str = Field(description="Google CSE id", default=None)
18
- google_api_key: SecretStr = Field(description="Google API key", default=None, json_schema_extra={'secret': True})
18
+ google_api_key: SecretStr = Field(description="Google API key", json_schema_extra={'secret': True})
@@ -15,5 +15,5 @@ class QtestConfiguration(BaseModel):
15
15
  }
16
16
  )
17
17
  base_url: str = Field(description="QTest base url")
18
- qtest_api_token: SecretStr = Field(description="QTest API token", default=None)
18
+ qtest_api_token: SecretStr = Field(description="QTest API token")
19
19
 
@@ -10,7 +10,7 @@ class ZephyrEnterpriseConfiguration(BaseModel):
10
10
  "label": "Zephyr Enterprise",
11
11
  "icon_url": "zephyr.svg",
12
12
  "section": "credentials",
13
- "type": "zephyr-enterprise",
13
+ "type": "zephyr_enterprise",
14
14
  "categories": ["test management"],
15
15
  "extra_categories": ["zephyr", "test automation", "test case management", "test planning"],
16
16
  }
@@ -8,11 +8,11 @@ class ZephyrEssentialConfiguration(BaseModel):
8
8
  "label": "Zephyr Essential",
9
9
  "icon_url": "zephyr.svg",
10
10
  "section": "credentials",
11
- "type": "zephyr-essential",
11
+ "type": "zephyr_essential",
12
12
  "categories": ["test management"],
13
13
  "extra_categories": ["zephyr", "test automation", "test case management", "test planning"],
14
14
  }
15
15
  }
16
16
  )
17
- base_url: str = Field(description="Zephyr Essential Base URL", default=None)
18
- token: SecretStr = Field(description="Zephyr Essential API Token", default=None)
17
+ base_url: str = Field(description="Zephyr Essential Base URL")
18
+ token: SecretStr = Field(description="Zephyr Essential API Token")
@@ -283,6 +283,7 @@ class VectorStoreWrapper(BaseToolApiWrapper):
283
283
 
284
284
  for document in documents:
285
285
  key = key_fn(document)
286
+ key = key if isinstance(key, str) else str(key)
286
287
  if key in indexed_keys and collection_suffix == indexed_data[key]['metadata'].get('collection'):
287
288
  if compare_fn(document, indexed_data[key]):
288
289
  # Disabled addition of new collection to already indexed documents
@@ -67,7 +67,7 @@ _safe_import_tool('aws', 'cloud.aws', None, 'AWSToolkit')
67
67
  _safe_import_tool('azure', 'cloud.azure', None, 'AzureToolkit')
68
68
  _safe_import_tool('gcp', 'cloud.gcp', None, 'GCPToolkit')
69
69
  _safe_import_tool('k8s', 'cloud.k8s', None, 'KubernetesToolkit')
70
- _safe_import_tool('custom_open_api', 'custom_open_api', None, 'OpenApiToolkit')
70
+ # _safe_import_tool('custom_open_api', 'custom_open_api', None, 'OpenApiToolkit')
71
71
  _safe_import_tool('elastic', 'elastic', None, 'ElasticToolkit')
72
72
  _safe_import_tool('keycloak', 'keycloak', None, 'KeycloakToolkit')
73
73
  _safe_import_tool('localgit', 'localgit', None, 'AlitaLocalGitToolkit')
@@ -363,8 +363,20 @@ class TestPlanApiWrapper(NonCodeIndexerToolkit):
363
363
  logger.error(f"Error getting test cases: {e}")
364
364
  return ToolException(f"Error getting test cases: {e}")
365
365
 
366
- def _base_loader(self, plan_id: str, suite_ids: Optional[list[str]] = [], chunking_tool: str = None, **kwargs) -> Generator[Document, None, None]:
366
+ def get_suites_in_plan(self, plan_id: int) -> List[dict]:
367
+ """Get all test suites in a test plan."""
368
+ try:
369
+ test_suites = self._client.get_test_suites_for_plan(self.project, plan_id)
370
+ return [suite.as_dict() for suite in test_suites]
371
+ except Exception as e:
372
+ logger.error(f"Error getting test suites: {e}")
373
+ return ToolException(f"Error getting test suites: {e}")
374
+
375
+ def _base_loader(self, plan_id: int, suite_ids: Optional[List[int]] = [], chunking_tool: str = None, **kwargs) -> Generator[Document, None, None]:
367
376
  cases = []
377
+ if not suite_ids:
378
+ suites = self.get_suites_in_plan(plan_id)
379
+ suite_ids = [suite['id'] for suite in suites if 'id' in suite]
368
380
  for sid in suite_ids:
369
381
  cases.extend(self.get_test_cases(plan_id, sid))
370
382
  #
@@ -381,6 +393,7 @@ class TestPlanApiWrapper(NonCodeIndexerToolkit):
381
393
  'suite_id': case.get('test_suite', {}).get('id', ''),
382
394
  'description': data.get('System.Description', ''),
383
395
  'updated_on': data.get('System.Rev', ''),
396
+ # content is in metadata for chunking tool post-processing
384
397
  IndexerKeywords.CONTENT_IN_BYTES.value: data.get('Microsoft.VSTS.TCM.Steps', '').encode("utf-8")
385
398
  })
386
399
  else:
@@ -398,8 +411,10 @@ class TestPlanApiWrapper(NonCodeIndexerToolkit):
398
411
  def _index_tool_params(self):
399
412
  """Return the parameters for indexing data."""
400
413
  return {
401
- "plan_id": (str, Field(description="ID of the test plan for which test cases are requested")),
402
- "suite_ids": (Optional[List[str]], Field(description='List of test suite IDs for which test cases are requested (can be empty). Example: ["2", "23"]', default=[])),
414
+ "plan_id": (int, Field(description="ID of the test plan for which test cases are requested")),
415
+ "suite_ids": (Optional[List[int]], Field(description='List of test suite IDs for which test cases are requested '
416
+ '(can be empty for all suites indexing from the plan). '
417
+ 'Example: [2, 23]', default=[])),
403
418
  'chunking_tool':(Literal['html'], Field(description="Name of chunking tool", default='html'))
404
419
  }
405
420
 
@@ -240,6 +240,7 @@ class BaseIndexerToolkit(VectorStoreWrapperBase):
240
240
 
241
241
  for document in documents:
242
242
  key = self.key_fn(document)
243
+ key = key if isinstance(key, str) else str(key)
243
244
  if key in indexed_keys and collection_suffix == indexed_data[key]['metadata'].get('collection'):
244
245
  if self.compare_fn(document, indexed_data[key]):
245
246
  continue
@@ -21,6 +21,7 @@ def get_tools(tool):
21
21
  limit=tool['settings'].get('limit', 20),
22
22
  verify_ssl=tool['settings'].get('verify_ssl', True),
23
23
  toolkit_name=tool.get('toolkit_name'),
24
+ llm=tool['settings'].get('llm', None),
24
25
  alita=tool['settings'].get('alita', None),
25
26
 
26
27
  # indexer settings
@@ -36,7 +36,7 @@ class ZephyrEnterpriseToolkit(BaseToolkit):
36
36
  ZephyrEnterpriseToolkit.toolkit_max_length = get_max_toolkit_length(selected_tools)
37
37
  return create_model(
38
38
  name,
39
- zephyr_configuration=(ZephyrEnterpriseConfiguration, Field(description="Zephyr Configuration", json_schema_extra={'configuration_types': ['zephyr-enterprise']})),
39
+ zephyr_configuration=(ZephyrEnterpriseConfiguration, Field(description="Zephyr Configuration", json_schema_extra={'configuration_types': ['zephyr_enterprise']})),
40
40
  pgvector_configuration=(Optional[PgVectorConfiguration], Field(description="PgVector Configuration",
41
41
  json_schema_extra={
42
42
  'configuration_types': ['pgvector']},
@@ -36,7 +36,7 @@ class ZephyrEssentialToolkit(BaseToolkit):
36
36
  ZephyrEssentialToolkit.toolkit_max_length = get_max_toolkit_length(selected_tools)
37
37
  return create_model(
38
38
  name,
39
- zephyr_essential_configuration=(ZephyrEssentialConfiguration, Field(description="Zephyr Essential Configuration", json_schema_extra={'configuration_types': ['zephyr-essential']})),
39
+ zephyr_essential_configuration=(ZephyrEssentialConfiguration, Field(description="Zephyr Essential Configuration", json_schema_extra={'configuration_types': ['zephyr_essential']})),
40
40
  selected_tools=(List[Literal[tuple(selected_tools)]], Field(default=[], json_schema_extra={'args_schemas': selected_tools})),
41
41
  pgvector_configuration=(Optional[PgVectorConfiguration], Field(default=None,
42
42
  description="PgVector Configuration",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: alita_sdk
3
- Version: 0.3.279
3
+ Version: 0.3.281
4
4
  Summary: SDK for building langchain agents using resources from Alita
5
5
  Author-email: Artem Rozumenko <artyom.rozumenko@gmail.com>, Mikalai Biazruchka <mikalai_biazruchka@epam.com>, Roman Mitusov <roman_mitusov@epam.com>, Ivan Krakhmaliuk <lifedjik@gmail.com>, Artem Dubrovskiy <ad13box@gmail.com>
6
6
  License-Expression: Apache-2.0
@@ -6,7 +6,7 @@ alita_sdk/configurations/ado.py,sha256=Djw1_8QmssETVpjpk2LeFN--Wg5-D1_L1NdwH8dtb
6
6
  alita_sdk/configurations/azure_search.py,sha256=WDBc38uSmRBA_ypezb04wob2qUMqcw275FI39SWvrPo,808
7
7
  alita_sdk/configurations/bigquery.py,sha256=kuJ9AUAHynnyM4wkaQbiW3x5VmrJkjR0RGmsyAec194,917
8
8
  alita_sdk/configurations/bitbucket.py,sha256=D_RNwFHm3wEnAK-wMdJbsVy2RNLlH52xHiKsuDfehDg,1157
9
- alita_sdk/configurations/browser.py,sha256=XIOR0GaAE9yjlEcrbeo5M57AuFLGsdfDhemMLQnG7oE,684
9
+ alita_sdk/configurations/browser.py,sha256=2ZMUrqk8M9oZi3HX4ouGp9b-qdYgpGN-hVin--zgzpc,670
10
10
  alita_sdk/configurations/carrier.py,sha256=QPgXyNXki8ECQAwBB1I64vsltV5patZUnZrd5m8obyY,693
11
11
  alita_sdk/configurations/confluence.py,sha256=mAW2fgSEOg-BAV768Sc6b_EuRA3H5UL9xfqQ12Zh_w4,1421
12
12
  alita_sdk/configurations/delta_lake.py,sha256=sCNDClaO6-b1Qv5WDxOMHjQUrHnr6S6EPQuS9o6q8Z8,1130
@@ -18,7 +18,7 @@ alita_sdk/configurations/google_places.py,sha256=jXhlPXywkDhHNrgB4KoVWogf3CVi1bY
18
18
  alita_sdk/configurations/jira.py,sha256=ASh8I2iVXzOOtwjRX7kYNllXpCXyAIxFMP_YD4Q0PTI,1379
19
19
  alita_sdk/configurations/pgvector.py,sha256=P-Q07ocIg4CXN_7hUBDM6r9gN62XS1N2jyP79tM9Tig,500
20
20
  alita_sdk/configurations/postman.py,sha256=A4swgV_0eEJ3LXYWzUUIDD5zFu9rS_vndqp1xd4YHnM,1114
21
- alita_sdk/configurations/qtest.py,sha256=Bi1Hvxp9nc5WsYltOOcDUeMPlXQiDLZqDCTa5eBeyzY,656
21
+ alita_sdk/configurations/qtest.py,sha256=i-09LUFDqcBKmzSiKd8C3NEKcRDAH6wwKsajC_TbBnM,642
22
22
  alita_sdk/configurations/rally.py,sha256=1rwYh7bVV3XXufWRuPbr3Gz6zVPnfbA42bJYvJYsY-o,1515
23
23
  alita_sdk/configurations/report_portal.py,sha256=tSIyd6S-zzIJSwBamNvnyiNvgi4Q82K7g2ba0yR3lL4,733
24
24
  alita_sdk/configurations/salesforce.py,sha256=LCRjihLpnGU2aA9h-dfT727x7cjkKCHbI6FWIaKZ0IQ,707
@@ -31,8 +31,8 @@ alita_sdk/configurations/testio.py,sha256=yoGWTuwcjFoBxbsxHLGVbcQBBZAFDQwuVcTijy
31
31
  alita_sdk/configurations/testrail.py,sha256=k0fPmHBIrWAfEKhrDdB9Rdirw-UFHFoXkRePyrsqcWI,725
32
32
  alita_sdk/configurations/xray.py,sha256=_XCW5eGEAyhDuRvXCtTAZ24BGsIwzvIaeAZT10xoW6M,1147
33
33
  alita_sdk/configurations/zephyr.py,sha256=ndqGYFy5OFxjoXB7DzC71rd5W6qGBGAlKMWoqT8TuNk,1653
34
- alita_sdk/configurations/zephyr_enterprise.py,sha256=5W1QEcv62Y5Rk_kApI2QmOwvWZeEWMgO5xHOKLVmTm0,710
35
- alita_sdk/configurations/zephyr_essential.py,sha256=A4S6mHCfR8mJRvao0HHLiRi1-HDV-S26iLvq5zBnXo8,723
34
+ alita_sdk/configurations/zephyr_enterprise.py,sha256=UaBk3qWcT2-bCzko5HEPvgxArw1ZpvOvwXwFYrIHZjM,710
35
+ alita_sdk/configurations/zephyr_essential.py,sha256=dXZHw4Yn_Mg-VhUn7qeCbd4hVpt9FzYbjiZ9ckAbFck,695
36
36
  alita_sdk/runtime/__init__.py,sha256=4W0UF-nl3QF2bvET5lnah4o24CoTwSoKXhuN0YnwvEE,828
37
37
  alita_sdk/runtime/clients/__init__.py,sha256=BdehU5GBztN1Qi1Wul0cqlU46FxUfMnI6Vq2Zd_oq1M,296
38
38
  alita_sdk/runtime/clients/artifact.py,sha256=TPvROw1qu4IyUEGuf7x40IKRpb5eFZpYGN3-8LfQE0M,3461
@@ -118,7 +118,7 @@ alita_sdk/runtime/tools/pgvector_search.py,sha256=NN2BGAnq4SsDHIhUcFZ8d_dbEOM8Qw
118
118
  alita_sdk/runtime/tools/prompt.py,sha256=nJafb_e5aOM1Rr3qGFCR-SKziU9uCsiP2okIMs9PppM,741
119
119
  alita_sdk/runtime/tools/router.py,sha256=wCvZjVkdXK9dMMeEerrgKf5M790RudH68pDortnHSz0,1517
120
120
  alita_sdk/runtime/tools/tool.py,sha256=lE1hGi6qOAXG7qxtqxarD_XMQqTghdywf261DZawwno,5631
121
- alita_sdk/runtime/tools/vectorstore.py,sha256=U2TNZEp6QmoERXbuL5MyEl7HUbyestCH2_dVcAkiA7A,35766
121
+ alita_sdk/runtime/tools/vectorstore.py,sha256=PN_Im5pkbFR6vXUhlBppEwHEhsg-UsO9eYrMS8UstFk,35826
122
122
  alita_sdk/runtime/tools/vectorstore_base.py,sha256=CTAsQXImOHjlcddU2hoqyRAf8iNaDMTfr0pJbIaOG7o,27744
123
123
  alita_sdk/runtime/utils/AlitaCallback.py,sha256=E4LlSBuCHWiUq6W7IZExERHZY0qcmdjzc_rJlF2iQIw,7356
124
124
  alita_sdk/runtime/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -130,8 +130,8 @@ alita_sdk/runtime/utils/streamlit.py,sha256=ZgHpibL2ARHt6qrWj5JhK6HNZv2UjxQ04qTk
130
130
  alita_sdk/runtime/utils/toolkit_runtime.py,sha256=MU63Fpxj0b5_r1IUUc0Q3-PN9VwL7rUxp2MRR4tmYR8,5136
131
131
  alita_sdk/runtime/utils/toolkit_utils.py,sha256=I9QFqnaqfVgN26LUr6s3XlBlG6y0CoHURnCzG7XcwVs,5311
132
132
  alita_sdk/runtime/utils/utils.py,sha256=VXNLsdeTmf6snn9EtUyobv4yL-xzLhUcH8P_ORMifYc,675
133
- alita_sdk/tools/__init__.py,sha256=ko5TToGYZFmBrho26DRAVvrkHWxQ2sfs8gVAASinYp8,10611
134
- alita_sdk/tools/base_indexer_toolkit.py,sha256=WOwGICQX4iylVTc2jzE5TfjffYkliju5WvsF-XvmO4c,19262
133
+ alita_sdk/tools/__init__.py,sha256=8oFahbggsv8h7hEqqeQ4iF6g2m85Ki17iSeknviCNis,10613
134
+ alita_sdk/tools/base_indexer_toolkit.py,sha256=h3KnF4_tgAkxWUjW8djPUyNEKpI24kU6LDjCnJtxE-o,19322
135
135
  alita_sdk/tools/elitea_base.py,sha256=aoh4fjNHIem8jzPPqtvxD4PtkGgN3KBQwrMqb9f6k00,32991
136
136
  alita_sdk/tools/non_code_indexer_toolkit.py,sha256=v9uq1POE1fQKCd152mbqDtF-HSe0qoDj83k4E5LAkMI,1080
137
137
  alita_sdk/tools/ado/__init__.py,sha256=u2tdDgufGuDb-7lIgKKQlqgStL9Wd1gzNmRNYems2c0,1267
@@ -139,7 +139,7 @@ alita_sdk/tools/ado/utils.py,sha256=PTCludvaQmPLakF2EbCGy66Mro4-rjDtavVP-xcB2Wc,
139
139
  alita_sdk/tools/ado/repos/__init__.py,sha256=n-IhKED05RwQGWT4LfCaxJ85uDyG4S9zTjSjK6A8N4o,5192
140
140
  alita_sdk/tools/ado/repos/repos_wrapper.py,sha256=e3bGsM03m0UggSQfoVh5Gg_M1MYt_BTKS-s9G2Unc1k,49739
141
141
  alita_sdk/tools/ado/test_plan/__init__.py,sha256=4fEw_3cm4shuZ868HhAU-uMH3xNXPyb3uRjyNWoBKls,5243
142
- alita_sdk/tools/ado/test_plan/test_plan_wrapper.py,sha256=W9xTSErS8vZt92KU2800Vwjg0Bmfm3XOw90IEC9iBN0,21102
142
+ alita_sdk/tools/ado/test_plan/test_plan_wrapper.py,sha256=p3mbBiu0jthZG-Bj2-duO7DDZQ4LHYZ6Q1nOVd-KTrc,21944
143
143
  alita_sdk/tools/ado/wiki/__init__.py,sha256=uBKo_Meu2ZxMxcxGsMmvCXyplRE2um1_PIRvdYd37rM,5171
144
144
  alita_sdk/tools/ado/wiki/ado_wrapper.py,sha256=AjavSE3peuQ-uONQmmfT3MS_8mxeSBRv7Q5QHt0Z2KU,14952
145
145
  alita_sdk/tools/ado/work_item/__init__.py,sha256=HNcdIMwTSNe-25_Pg-KmVVXTFci3vNa84tkTFkls36c,5373
@@ -328,7 +328,7 @@ alita_sdk/tools/utils/available_tools_decorator.py,sha256=IbrdfeQkswxUFgvvN7-dyL
328
328
  alita_sdk/tools/utils/content_parser.py,sha256=KM6K37VLAAvzwvoHFpJBoRB5d7w6z3mZC-u01n0IpDQ,12036
329
329
  alita_sdk/tools/vector_adapters/VectorStoreAdapter.py,sha256=a6FAsiix_EvATIKUf5YT6vHh5LDyJ5uSP3LJqoxFo04,17367
330
330
  alita_sdk/tools/vector_adapters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
331
- alita_sdk/tools/xray/__init__.py,sha256=BnG2StSfX44CUMtrjHTcSCDWxxse5tCZqwyaZSkBKIc,4230
331
+ alita_sdk/tools/xray/__init__.py,sha256=AsHDvRgyD-6vvGyAyQDPWHbOD2WoMJ5Llt029bLuu6U,4277
332
332
  alita_sdk/tools/xray/api_wrapper.py,sha256=z-eIS4ZYd42AxfUMrJv_nT4JWBZ_dOvlrToSpWjZ5zs,30512
333
333
  alita_sdk/tools/yagmail/__init__.py,sha256=c4Qn3em0tLxzRmFKpzbBgY9W2EnOoKf0azoDJHng5CY,2208
334
334
  alita_sdk/tools/yagmail/yagmail_wrapper.py,sha256=SKoGVd1X4Ew3ad5tOdtPoY00M6jStNdT3q7GXEjQc5g,1952
@@ -336,10 +336,10 @@ alita_sdk/tools/zephyr/Zephyr.py,sha256=ODZbg9Aw0H0Rbv-HcDXLI4KHbPiLDHoteDofshw9
336
336
  alita_sdk/tools/zephyr/__init__.py,sha256=8B2Ibz5QTmB5WkV0q8Sq4kuj92FFaFWZLrT877zRRLg,2897
337
337
  alita_sdk/tools/zephyr/api_wrapper.py,sha256=lJCYPG03ej0qgdpLflnS7LFB4HSAfGzIvTjAJt07CQs,6244
338
338
  alita_sdk/tools/zephyr/rest_client.py,sha256=7vSD3oYIX-3KbAFed-mphSQif_VRuXrq5O07ryNQ7Pk,6208
339
- alita_sdk/tools/zephyr_enterprise/__init__.py,sha256=oH8rhKxlOEl_EPx6L1ALQ5SZXW_hw7pq9iILoJNqlOI,4077
339
+ alita_sdk/tools/zephyr_enterprise/__init__.py,sha256=SaLLkrD_m4we9dmNKP0Hj6skMiz2kDp4MuKr09ddX_s,4077
340
340
  alita_sdk/tools/zephyr_enterprise/api_wrapper.py,sha256=km2TYNu5ppRkspN1PyYetu6iBGj-xKVIwGHty1r_wAw,11552
341
341
  alita_sdk/tools/zephyr_enterprise/zephyr_enterprise.py,sha256=hV9LIrYfJT6oYp-ZfQR0YHflqBFPsUw2Oc55HwK0H48,6809
342
- alita_sdk/tools/zephyr_essential/__init__.py,sha256=GXjlf2imDBPpcAFZJMsxclcrnZjLmFGKwRtcnSsddSs,3980
342
+ alita_sdk/tools/zephyr_essential/__init__.py,sha256=2SymL6TIF1ad52w5DTtWaYvNygEvE1ssNNeKx3Y-_Zg,3980
343
343
  alita_sdk/tools/zephyr_essential/api_wrapper.py,sha256=241d5FJkaANzn01HKD-Zyfhk-R4ETkvYNhIc2gNU4oU,38653
344
344
  alita_sdk/tools/zephyr_essential/client.py,sha256=bfNcUKNqj9MFWTludGbbqD4qZlxrBaC2JtWsCfZMqSY,9722
345
345
  alita_sdk/tools/zephyr_scale/__init__.py,sha256=eetAVRclO1j_N0T3mRnWeLfi3BS98i5FwhNReXO0PlE,4289
@@ -347,8 +347,8 @@ alita_sdk/tools/zephyr_scale/api_wrapper.py,sha256=HOt9ShtJI_1tVPcwd3Rwk-VS0SMLq
347
347
  alita_sdk/tools/zephyr_squad/__init__.py,sha256=0AI_j27xVO5Gk5HQMFrqPTd4uvuVTpiZUicBrdfEpKg,2796
348
348
  alita_sdk/tools/zephyr_squad/api_wrapper.py,sha256=kmw_xol8YIYFplBLWTqP_VKPRhL_1ItDD0_vXTe_UuI,14906
349
349
  alita_sdk/tools/zephyr_squad/zephyr_squad_cloud_client.py,sha256=R371waHsms4sllHCbijKYs90C-9Yu0sSR3N4SUfQOgU,5066
350
- alita_sdk-0.3.279.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
351
- alita_sdk-0.3.279.dist-info/METADATA,sha256=OlLf3UNCJ_C8RrHlfKo8-s0SWl6qmdJ9_tFfY9DilRI,18897
352
- alita_sdk-0.3.279.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
353
- alita_sdk-0.3.279.dist-info/top_level.txt,sha256=0vJYy5p_jK6AwVb1aqXr7Kgqgk3WDtQ6t5C-XI9zkmg,10
354
- alita_sdk-0.3.279.dist-info/RECORD,,
350
+ alita_sdk-0.3.281.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
351
+ alita_sdk-0.3.281.dist-info/METADATA,sha256=ZiYq3cmMaWw-f-W9eHMQAHSl1OKlPTn7enCmmtnXeao,18897
352
+ alita_sdk-0.3.281.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
353
+ alita_sdk-0.3.281.dist-info/top_level.txt,sha256=0vJYy5p_jK6AwVb1aqXr7Kgqgk3WDtQ6t5C-XI9zkmg,10
354
+ alita_sdk-0.3.281.dist-info/RECORD,,