alita-sdk 0.3.301__py3-none-any.whl → 0.3.302__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.
@@ -16,10 +16,6 @@ class FigmaConfiguration(BaseModel):
16
16
  {
17
17
  "name": "Token",
18
18
  "fields": ["token"]
19
- },
20
- {
21
- "name": "Oath2",
22
- "fields": ["oauth2"]
23
19
  }
24
20
  ]
25
21
  }
@@ -415,7 +415,7 @@ class TestPlanApiWrapper(NonCodeIndexerToolkit):
415
415
  "suite_ids": (Optional[List[int]], Field(description='List of test suite IDs for which test cases are requested '
416
416
  '(can be empty for all suites indexing from the plan). '
417
417
  'Example: [2, 23]', default=[])),
418
- 'chunking_tool':(Literal['html'], Field(description="Name of chunking tool", default='html'))
418
+ 'chunking_tool':(Literal['html', ''], Field(description="Name of chunking tool", default='html'))
419
419
  }
420
420
 
421
421
  @extend_with_parent_available_tools
@@ -250,7 +250,7 @@ class AzureDevOpsApiWrapper(NonCodeIndexerToolkit):
250
250
  return {
251
251
  "wiki_identifier": (str, Field(description="Wiki identifier to index, e.g., 'ABCProject.wiki'")),
252
252
  'title_contains': (Optional[str], Field(default=None, description="Optional filter to include only pages with titles containing exact this string")),
253
- 'chunking_tool':(Literal['markdown'], Field(description="Name of chunking tool", default='markdown'))
253
+ 'chunking_tool':(Literal['markdown', ''], Field(description="Name of chunking tool", default='markdown'))
254
254
  }
255
255
 
256
256
  @extend_with_parent_available_tools
@@ -175,7 +175,7 @@ class BaseIndexerToolkit(VectorStoreWrapperBase):
175
175
  self._clean_metadata(list_documents)
176
176
  self._log_tool_event(f"Documents are ready for indexing. Total documents to index: {len(list_documents)}")
177
177
  return self._save_index(list_documents, collection_suffix=collection_suffix, progress_step=progress_step)
178
-
178
+
179
179
  def _apply_loaders_chunkers(self, documents: Generator[Document, None, None], chunking_tool: str=None, chunking_config=None) -> Generator[Document, None, None]:
180
180
  from ..tools.chunkers import __all__ as chunkers
181
181
 
@@ -183,7 +183,7 @@ class BaseIndexerToolkit(VectorStoreWrapperBase):
183
183
  chunking_config = {}
184
184
  chunking_config['embedding'] = self._embedding
185
185
  chunking_config['llm'] = self.llm
186
-
186
+
187
187
  for document in documents:
188
188
  if content_type := document.metadata.get(IndexerKeywords.CONTENT_FILE_NAME.value, None):
189
189
  # apply parsing based on content type and chunk if chunker was applied to parent doc
@@ -1476,7 +1476,7 @@ class JiraApiWrapper(NonCodeIndexerToolkit):
1476
1476
  'skip_attachment_extensions': (Optional[List[str]], Field(
1477
1477
  description="List of file extensions to skip when processing attachments: i.e. ['.png', '.jpg']",
1478
1478
  default=[])),
1479
- 'chunking_tool': (Literal['markdown'], Field(description="Name of chunking tool for base document", default='markdown')),
1479
+ 'chunking_tool': (Literal['markdown', ''], Field(description="Name of chunking tool for base document", default='markdown')),
1480
1480
  }
1481
1481
 
1482
1482
  # def index_data(self,
@@ -668,7 +668,7 @@ class TestrailAPIWrapper(NonCodeIndexerToolkit):
668
668
  'skip_attachment_extensions': (Optional[List[str]], Field(
669
669
  description="List of file extensions to skip when processing attachments: i.e. ['.png', '.jpg']",
670
670
  default=[])),
671
- 'chunking_tool':(Literal['json'], Field(description="Name of chunking tool", default='json'))
671
+ 'chunking_tool':(Literal['json', ''], Field(description="Name of chunking tool", default='json'))
672
672
  }
673
673
 
674
674
  def _to_markup(self, data: List[Dict], output_format: str) -> str:
@@ -418,7 +418,6 @@ class XrayApiWrapper(NonCodeIndexerToolkit):
418
418
  metadata["_attachments_data"] = attachments_data
419
419
 
420
420
  metadata[IndexerKeywords.CONTENT_IN_BYTES.value] = page_content.encode('utf-8')
421
- metadata[IndexerKeywords.CONTENT_FILE_NAME.value] = f"base_doc{file_extension_by_chunker(kwargs['chunking_tool'])}"
422
421
  yield Document(page_content='', metadata=metadata)
423
422
 
424
423
  except Exception as e:
@@ -601,7 +600,7 @@ class XrayApiWrapper(NonCodeIndexerToolkit):
601
600
  'skip_attachment_extensions': (Optional[List[str]], Field(
602
601
  description="List of file extensions to skip when processing attachments (e.g., ['.exe', '.zip', '.bin'])",
603
602
  default=None)),
604
- 'chunking_tool': (Literal['json'],
603
+ 'chunking_tool': (Literal['json', ''],
605
604
  Field(description="Name of chunking tool for base document", default='json')),
606
605
  }
607
606
 
@@ -156,7 +156,7 @@ class ZephyrApiWrapper(NonCodeIndexerToolkit):
156
156
  """
157
157
  return {
158
158
  "zql": (str, Field(description=zql_description, examples=["folder=\"TestToolkit\"", "name~\"TestToolkit5\""])),
159
- 'chunking_tool': (Literal['json'], Field(description="Name of chunking tool", default='json'))
159
+ 'chunking_tool': (Literal['json', ''], Field(description="Name of chunking tool", default='json'))
160
160
  }
161
161
 
162
162
  def _base_loader(self, zql: str, **kwargs) -> Generator[Document, None, None]:
@@ -181,8 +181,6 @@ class ZephyrApiWrapper(NonCodeIndexerToolkit):
181
181
  test_case_content = self.get_test_case_steps(id)
182
182
  page_content = json.dumps(test_case_content)
183
183
  document.metadata[IndexerKeywords.CONTENT_IN_BYTES.value] = page_content.encode('utf-8')
184
- document.metadata[
185
- IndexerKeywords.CONTENT_FILE_NAME.value] = f"base_doc{file_extension_by_chunker(self._chunking_tool)}"
186
184
  except Exception as e:
187
185
  logging.error(f"Failed to process document: {e}")
188
186
  yield document
@@ -268,7 +268,7 @@ class ZephyrEssentialApiWrapper(NonCodeIndexerToolkit):
268
268
 
269
269
  def _index_tool_params(self):
270
270
  return {
271
- 'chunking_tool':(Literal['json'], Field(description="Name of chunking tool", default='json'))
271
+ 'chunking_tool':(Literal['json', ''], Field(description="Name of chunking tool", default='json'))
272
272
  }
273
273
 
274
274
  def _base_loader(self, **kwargs) -> Generator[Document, None, None]:
@@ -296,8 +296,6 @@ class ZephyrEssentialApiWrapper(NonCodeIndexerToolkit):
296
296
  if content:
297
297
  page_content = json.dumps(content)
298
298
  document.metadata[IndexerKeywords.CONTENT_IN_BYTES.value] = page_content.encode('utf-8')
299
- document.metadata[
300
- IndexerKeywords.CONTENT_FILE_NAME.value] = f"base_doc{file_extension_by_chunker(self._chunking_tool)}"
301
299
  document.metadata["steps_type"] = steps_type
302
300
  except Exception as e:
303
301
  logging.error(f"Failed to process document: {e}")
@@ -1216,7 +1216,7 @@ class ZephyrScaleApiWrapper(NonCodeIndexerToolkit):
1216
1216
  Example:
1217
1217
  'folder = "Authentication" AND label in ("Smoke", "Critical") AND text ~ "login" AND orderBy = "name" AND orderDirection = "ASC"'
1218
1218
  """)),
1219
- 'chunking_tool': (Literal['json'], Field(description="Name of chunking tool", default='json'))
1219
+ 'chunking_tool': (Literal['json', ''], Field(description="Name of chunking tool", default='json'))
1220
1220
  }
1221
1221
 
1222
1222
  def _base_loader(self, project_key: str, jql: str, **kwargs) -> Generator[Document, None, None]:
@@ -1289,8 +1289,6 @@ class ZephyrScaleApiWrapper(NonCodeIndexerToolkit):
1289
1289
  if content:
1290
1290
  page_content = json.dumps(content)
1291
1291
  document.metadata[IndexerKeywords.CONTENT_IN_BYTES.value] = page_content.encode('utf-8')
1292
- document.metadata[
1293
- IndexerKeywords.CONTENT_FILE_NAME.value] = f"base_doc{file_extension_by_chunker(self._chunking_tool)}"
1294
1292
  document.metadata["steps_type"] = steps_type
1295
1293
  except Exception as e:
1296
1294
  logging.error(f"Failed to process document: {e}")
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: alita_sdk
3
- Version: 0.3.301
3
+ Version: 0.3.302
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 <lifedj27@gmail.com>, Artem Dubrovskiy <ad13box@gmail.com>
6
6
  License-Expression: Apache-2.0
@@ -58,6 +58,8 @@ Requires-Dist: scipy==1.13.1; extra == "runtime"
58
58
  Requires-Dist: pytesseract==0.3.13; extra == "runtime"
59
59
  Requires-Dist: reportlab==4.2.5; extra == "runtime"
60
60
  Requires-Dist: svglib==1.5.1; extra == "runtime"
61
+ Requires-Dist: rlpycairo==0.3.0; extra == "runtime"
62
+ Requires-Dist: cairocffi==1.7.1; extra == "runtime"
61
63
  Requires-Dist: docx2txt==0.8; extra == "runtime"
62
64
  Requires-Dist: mammoth==1.9.0; extra == "runtime"
63
65
  Requires-Dist: opentelemetry-exporter-otlp-proto-grpc==1.25.0; extra == "runtime"
@@ -11,7 +11,7 @@ alita_sdk/configurations/carrier.py,sha256=QPgXyNXki8ECQAwBB1I64vsltV5patZUnZrd5
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
13
13
  alita_sdk/configurations/embedding.py,sha256=8GSC8Feh8CH7bT_6cQhNqlS6raE91S2YRAtb2N9bUA8,552
14
- alita_sdk/configurations/figma.py,sha256=vecZ20IyZgnFO2GdphkovYHMISRPcUYh7fxkUQsPwX8,1306
14
+ alita_sdk/configurations/figma.py,sha256=FClV6kBbOJdwzmCQbM7GMKHAz4PeGokLvUEG8FpCMG8,1143
15
15
  alita_sdk/configurations/github.py,sha256=6F7P9BPu9zE54q8m8IPjIct8cEX3WODYzZvn9WtxOXI,6283
16
16
  alita_sdk/configurations/gitlab.py,sha256=0W35igIlue6QxOnPgw65ToLf4HSdPVuRyObdwQuEld8,1053
17
17
  alita_sdk/configurations/google_places.py,sha256=jXhlPXywkDhHNrgB4KoVWogf3CVi1bY3wFLRzDqMr-E,589
@@ -133,7 +133,7 @@ alita_sdk/runtime/utils/toolkit_runtime.py,sha256=MU63Fpxj0b5_r1IUUc0Q3-PN9VwL7r
133
133
  alita_sdk/runtime/utils/toolkit_utils.py,sha256=I9QFqnaqfVgN26LUr6s3XlBlG6y0CoHURnCzG7XcwVs,5311
134
134
  alita_sdk/runtime/utils/utils.py,sha256=VXNLsdeTmf6snn9EtUyobv4yL-xzLhUcH8P_ORMifYc,675
135
135
  alita_sdk/tools/__init__.py,sha256=jUj1ztC2FbkIUB-YYmiqaz_rqW7Il5kWzDPn1mJmj5w,10545
136
- alita_sdk/tools/base_indexer_toolkit.py,sha256=3s8YRx_ambQQXGOKdlt_sRqREbrzFgm9zCWgxWsPHMU,20155
136
+ alita_sdk/tools/base_indexer_toolkit.py,sha256=jfgxX79I-DgCWlr70_S3oIq-C5TDSrf4jc1SIz51B4E,20143
137
137
  alita_sdk/tools/elitea_base.py,sha256=DaU1UkZVF0CVExNYk8I-MH3ZTW7qy9Ts9OaJgWr8b40,33397
138
138
  alita_sdk/tools/non_code_indexer_toolkit.py,sha256=v9uq1POE1fQKCd152mbqDtF-HSe0qoDj83k4E5LAkMI,1080
139
139
  alita_sdk/tools/ado/__init__.py,sha256=u2tdDgufGuDb-7lIgKKQlqgStL9Wd1gzNmRNYems2c0,1267
@@ -141,9 +141,9 @@ alita_sdk/tools/ado/utils.py,sha256=PTCludvaQmPLakF2EbCGy66Mro4-rjDtavVP-xcB2Wc,
141
141
  alita_sdk/tools/ado/repos/__init__.py,sha256=n-IhKED05RwQGWT4LfCaxJ85uDyG4S9zTjSjK6A8N4o,5192
142
142
  alita_sdk/tools/ado/repos/repos_wrapper.py,sha256=y1wJZNhuoWaSkFsGU5Pct3LClc1xfgmgBy2u_dgBF-4,49769
143
143
  alita_sdk/tools/ado/test_plan/__init__.py,sha256=4fEw_3cm4shuZ868HhAU-uMH3xNXPyb3uRjyNWoBKls,5243
144
- alita_sdk/tools/ado/test_plan/test_plan_wrapper.py,sha256=p3mbBiu0jthZG-Bj2-duO7DDZQ4LHYZ6Q1nOVd-KTrc,21944
144
+ alita_sdk/tools/ado/test_plan/test_plan_wrapper.py,sha256=68m5lmThE8Hhi-5PpCf96lVQyLHN-_xc7pJrnBQbaqQ,21948
145
145
  alita_sdk/tools/ado/wiki/__init__.py,sha256=uBKo_Meu2ZxMxcxGsMmvCXyplRE2um1_PIRvdYd37rM,5171
146
- alita_sdk/tools/ado/wiki/ado_wrapper.py,sha256=AjavSE3peuQ-uONQmmfT3MS_8mxeSBRv7Q5QHt0Z2KU,14952
146
+ alita_sdk/tools/ado/wiki/ado_wrapper.py,sha256=o5Zp0z9NvEZ5Ua1BgDZbFJocmZfoYNDiRRXaMrffGP4,14956
147
147
  alita_sdk/tools/ado/work_item/__init__.py,sha256=HNcdIMwTSNe-25_Pg-KmVVXTFci3vNa84tkTFkls36c,5373
148
148
  alita_sdk/tools/ado/work_item/ado_wrapper.py,sha256=TXl3V46SgGafQaxQKSTD3AN4MoQ3yNuQBwgVZ6-JhSk,28315
149
149
  alita_sdk/tools/advanced_jira_mining/__init__.py,sha256=pUTzECqGvYaR5qWY3JPUhrImrZgc7pCXuqSe5eWIE80,4604
@@ -260,7 +260,7 @@ alita_sdk/tools/google/bigquery/tool.py,sha256=Esf9Hsp8I0e7-5EdkFqQ-bid0cfrg-bfS
260
260
  alita_sdk/tools/google_places/__init__.py,sha256=Tg_dfKTc0qxcG-1HVuQQB11PYph2RDWSUVhrlgxqk64,3491
261
261
  alita_sdk/tools/google_places/api_wrapper.py,sha256=7nZly6nk4f4Tm7s2MVdnnwlb-1_WHRrDhyjDiqoyPjA,4674
262
262
  alita_sdk/tools/jira/__init__.py,sha256=0NJikFWEqK8DSohXPUYD4iDLJFS8btxhqQ60acWwC3k,6063
263
- alita_sdk/tools/jira/api_wrapper.py,sha256=Cm9sULiw4Til6wmhsVM3-IIUAMkRVbWdRsScEUYHss4,79260
263
+ alita_sdk/tools/jira/api_wrapper.py,sha256=htEqFLhiRHHJhq0kmmF0eSFRvk4p1gwG0A_ENnT_hRQ,79264
264
264
  alita_sdk/tools/keycloak/__init__.py,sha256=0WB9yXMUUAHQRni1ghDEmd7GYa7aJPsTVlZgMCM9cQ0,3050
265
265
  alita_sdk/tools/keycloak/api_wrapper.py,sha256=cOGr0f3S3-c6tRDBWI8wMnetjoNSxiV5rvC_0VHb8uw,3100
266
266
  alita_sdk/tools/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -324,14 +324,14 @@ alita_sdk/tools/sql/models.py,sha256=AKJgSl_kEEz4fZfw3kbvdGHXaRZ-yiaqfJOB6YOj3i0
324
324
  alita_sdk/tools/testio/__init__.py,sha256=-4pEdEv0xfXml5bn8Nij28D5o9Y8hDllYoXfPeJ6os4,2699
325
325
  alita_sdk/tools/testio/api_wrapper.py,sha256=BvmL5h634BzG6p7ajnQLmj-uoAw1gjWnd4FHHu1h--Q,21638
326
326
  alita_sdk/tools/testrail/__init__.py,sha256=0kETjWKLU7R6mugBWsjwEUsh10pipbAeNSGJAO0FBh0,4634
327
- alita_sdk/tools/testrail/api_wrapper.py,sha256=xKQbjwL602J55KZiAdMcMtsuzK2jky0DUcrrdsazj0A,32981
327
+ alita_sdk/tools/testrail/api_wrapper.py,sha256=PKhtf04C6PFDexGCAJm-hjA9Gpu4crx6EXKT5K-b_Pk,32985
328
328
  alita_sdk/tools/utils/__init__.py,sha256=155xepXPr4OEzs2Mz5YnjXcBpxSv1X2eznRUVoPtyK0,3268
329
329
  alita_sdk/tools/utils/available_tools_decorator.py,sha256=IbrdfeQkswxUFgvvN7-dyLMZMyXLiwvX7kgi3phciCk,273
330
330
  alita_sdk/tools/utils/content_parser.py,sha256=8cq-6dHYp-jEYU1Yt3P6rVedVgVaOfgnNIyQ2qU4Yrk,13722
331
331
  alita_sdk/tools/vector_adapters/VectorStoreAdapter.py,sha256=ypBEAkFRGHv5edW0N9rdo1yKurNGQ4pRVEWtrN_7SeA,17656
332
332
  alita_sdk/tools/vector_adapters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
333
333
  alita_sdk/tools/xray/__init__.py,sha256=AsHDvRgyD-6vvGyAyQDPWHbOD2WoMJ5Llt029bLuu6U,4277
334
- alita_sdk/tools/xray/api_wrapper.py,sha256=DLQ5dT9XUiTJWc7OT6L9mU6CIZ8Sf6hGSBunYA6_k5k,30441
334
+ alita_sdk/tools/xray/api_wrapper.py,sha256=X7OLDiIpA5aXUZ8rpSBas8E27mE_XWTn211o9MYiqzU,30313
335
335
  alita_sdk/tools/yagmail/__init__.py,sha256=c4Qn3em0tLxzRmFKpzbBgY9W2EnOoKf0azoDJHng5CY,2208
336
336
  alita_sdk/tools/yagmail/yagmail_wrapper.py,sha256=SKoGVd1X4Ew3ad5tOdtPoY00M6jStNdT3q7GXEjQc5g,1952
337
337
  alita_sdk/tools/zephyr/Zephyr.py,sha256=ODZbg9Aw0H0Rbv-HcDXLI4KHbPiLDHoteDofshw9A_k,1508
@@ -339,18 +339,18 @@ alita_sdk/tools/zephyr/__init__.py,sha256=8B2Ibz5QTmB5WkV0q8Sq4kuj92FFaFWZLrT877
339
339
  alita_sdk/tools/zephyr/api_wrapper.py,sha256=lJCYPG03ej0qgdpLflnS7LFB4HSAfGzIvTjAJt07CQs,6244
340
340
  alita_sdk/tools/zephyr/rest_client.py,sha256=7vSD3oYIX-3KbAFed-mphSQif_VRuXrq5O07ryNQ7Pk,6208
341
341
  alita_sdk/tools/zephyr_enterprise/__init__.py,sha256=IoWQPH2lf2Yuj2ejZ74818JTXdrMoh_ZxAJORukYODU,4172
342
- alita_sdk/tools/zephyr_enterprise/api_wrapper.py,sha256=OQJbdcpeVm_5WiTfg-w0wHXFnrKQgHhkufz_nr2wSn4,12270
342
+ alita_sdk/tools/zephyr_enterprise/api_wrapper.py,sha256=I0Ih3HBHV-C7lsI9YBTYWiLJ4r9A0bYBitFdX8Rdf0k,12116
343
343
  alita_sdk/tools/zephyr_enterprise/zephyr_enterprise.py,sha256=hV9LIrYfJT6oYp-ZfQR0YHflqBFPsUw2Oc55HwK0H48,6809
344
344
  alita_sdk/tools/zephyr_essential/__init__.py,sha256=2SymL6TIF1ad52w5DTtWaYvNygEvE1ssNNeKx3Y-_Zg,3980
345
- alita_sdk/tools/zephyr_essential/api_wrapper.py,sha256=VgihduP4N7x1qlpwYIkIX0ctEqutuqVqAYgrxDFfBu0,47054
345
+ alita_sdk/tools/zephyr_essential/api_wrapper.py,sha256=SMru8XGTiHFYRmeRC4A3v9YC4n8Ggb7PkhO3N_bOCHs,46876
346
346
  alita_sdk/tools/zephyr_essential/client.py,sha256=fX_n2pACNzDiHxry3F4Xc6baUdw7d9U2m4srbfBv5Eg,9882
347
347
  alita_sdk/tools/zephyr_scale/__init__.py,sha256=eetAVRclO1j_N0T3mRnWeLfi3BS98i5FwhNReXO0PlE,4289
348
- alita_sdk/tools/zephyr_scale/api_wrapper.py,sha256=2M6yFoOmfH5BwxMwTLQO76yD0YdfvccOYHlARJFiqGo,78796
348
+ alita_sdk/tools/zephyr_scale/api_wrapper.py,sha256=A6CUEKjENt3mZlPU9lai88WV9esCDHuaoR_CtBupkDw,78618
349
349
  alita_sdk/tools/zephyr_squad/__init__.py,sha256=0AI_j27xVO5Gk5HQMFrqPTd4uvuVTpiZUicBrdfEpKg,2796
350
350
  alita_sdk/tools/zephyr_squad/api_wrapper.py,sha256=kmw_xol8YIYFplBLWTqP_VKPRhL_1ItDD0_vXTe_UuI,14906
351
351
  alita_sdk/tools/zephyr_squad/zephyr_squad_cloud_client.py,sha256=R371waHsms4sllHCbijKYs90C-9Yu0sSR3N4SUfQOgU,5066
352
- alita_sdk-0.3.301.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
353
- alita_sdk-0.3.301.dist-info/METADATA,sha256=l9I1eO2OSDYau6hnySkinXMXB7NeFiFWLm17QzT1VT0,18793
354
- alita_sdk-0.3.301.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
355
- alita_sdk-0.3.301.dist-info/top_level.txt,sha256=0vJYy5p_jK6AwVb1aqXr7Kgqgk3WDtQ6t5C-XI9zkmg,10
356
- alita_sdk-0.3.301.dist-info/RECORD,,
352
+ alita_sdk-0.3.302.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
353
+ alita_sdk-0.3.302.dist-info/METADATA,sha256=YDI8mcnXOPPebfmmnHGp9NFQ6krooEfStZnrYCctwUI,18897
354
+ alita_sdk-0.3.302.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
355
+ alita_sdk-0.3.302.dist-info/top_level.txt,sha256=0vJYy5p_jK6AwVb1aqXr7Kgqgk3WDtQ6t5C-XI9zkmg,10
356
+ alita_sdk-0.3.302.dist-info/RECORD,,