alita-sdk 0.3.278__py3-none-any.whl → 0.3.280__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
 
@@ -5,7 +5,7 @@ class SqlConfiguration(BaseModel):
5
5
  model_config = ConfigDict(
6
6
  json_schema_extra={
7
7
  "metadata": {
8
- "label": "SQL Database",
8
+ "label": "SQL",
9
9
  "icon_url": "sql.svg",
10
10
  "section": "credentials",
11
11
  "type": "sql",
@@ -15,6 +15,6 @@ class SqlConfiguration(BaseModel):
15
15
  }
16
16
  )
17
17
  host: str = Field(description="Database host")
18
- port: int = Field(description="Database port")
18
+ port: int = Field(description="Database port", default=None)
19
19
  username: str = Field(description="Database username")
20
20
  password: SecretStr = Field(description="Database password", json_schema_extra={'secret': True})
@@ -7,7 +7,7 @@ class XrayConfiguration(BaseModel):
7
7
  model_config = ConfigDict(
8
8
  json_schema_extra={
9
9
  "metadata": {
10
- "label": "Xray",
10
+ "label": "Xray Cloud",
11
11
  "icon_url": "xray.svg",
12
12
  "sections": {
13
13
  "auth": {
@@ -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)
17
+ base_url: str = Field(description="Zephyr Essential Base URL")
18
18
  token: SecretStr = Field(description="Zephyr Essential API Token")
@@ -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')
@@ -185,7 +185,11 @@ class BaseIndexerToolkit(VectorStoreWrapperBase):
185
185
  document=document,
186
186
  content=content,
187
187
  extension_source=content_type, llm=self.llm, chunking_config=chunking_config)
188
- elif chunking_tool and (content_in_bytes := document.metadata.pop(IndexerKeywords.CONTENT_IN_BYTES.value, None)):
188
+ elif chunking_tool and (content_in_bytes := document.metadata.pop(IndexerKeywords.CONTENT_IN_BYTES.value, None)) is not None:
189
+ if not content_in_bytes:
190
+ # content is empty, yield as is
191
+ yield document
192
+ continue
189
193
  # apply parsing based on content type resolved from chunking_tool
190
194
  content_type = file_extension_by_chunker(chunking_tool)
191
195
  yield from process_content_by_type(
@@ -17,6 +17,7 @@ from ..elitea_base import BaseVectorStoreToolApiWrapper, extend_with_vector_tool
17
17
  from ..llm.img_utils import ImageDescriptionCache
18
18
  from ..non_code_indexer_toolkit import NonCodeIndexerToolkit
19
19
  from ..utils import is_cookie_token, parse_cookie_string
20
+ from ..utils.available_tools_decorator import extend_with_parent_available_tools
20
21
  from ..utils.content_parser import load_file_docs
21
22
  from ...runtime.utils.utils import IndexerKeywords
22
23
 
@@ -1546,7 +1547,7 @@ class JiraApiWrapper(NonCodeIndexerToolkit):
1546
1547
  # logger.error(f"Error indexing Jira issues: {str(e)}")
1547
1548
  # raise ToolException(f"Error indexing Jira issues: {str(e)}")
1548
1549
 
1549
- @extend_with_vector_tools
1550
+ @extend_with_parent_available_tools
1550
1551
  def get_available_tools(self):
1551
1552
  return [
1552
1553
  {
@@ -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
@@ -14,6 +14,7 @@ from ..elitea_base import (
14
14
  extend_with_vector_tools,
15
15
  )
16
16
  from ..non_code_indexer_toolkit import NonCodeIndexerToolkit
17
+ from ..utils.available_tools_decorator import extend_with_parent_available_tools
17
18
  from ...runtime.utils.utils import IndexerKeywords
18
19
  from ..utils.content_parser import load_file_docs
19
20
 
@@ -643,9 +644,9 @@ class XrayApiWrapper(NonCodeIndexerToolkit):
643
644
  except Exception as e:
644
645
  raise ToolException(f"Unable to execute GraphQL due to error: {str(e)}")
645
646
 
646
- @extend_with_vector_tools
647
+ @extend_with_parent_available_tools
647
648
  def get_available_tools(self):
648
- tools = [
649
+ return [
649
650
  {
650
651
  "name": "get_tests",
651
652
  "description": self.get_tests.__doc__,
@@ -670,7 +671,4 @@ class XrayApiWrapper(NonCodeIndexerToolkit):
670
671
  "args_schema": XrayGrapql,
671
672
  "ref": self.execute_graphql,
672
673
  }
673
- ]
674
-
675
- tools.extend(self._get_vector_search_tools())
676
- return tools
674
+ ]
@@ -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.278
3
+ Version: 0.3.280
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
@@ -26,13 +26,13 @@ alita_sdk/configurations/service_now.py,sha256=lIC7U29LANthkMuNdK-pyCrUogjnbJuPc
26
26
  alita_sdk/configurations/sharepoint.py,sha256=0B0NpVWadtdxPcRvD0eLWFZwPftoPPJ9z_sHW5-DKKc,723
27
27
  alita_sdk/configurations/slack.py,sha256=ppwfV7YMpkq-qU6YREK7EH8VmYBZ0EN_9WIwz3EZI-Q,1139
28
28
  alita_sdk/configurations/sonar.py,sha256=b5Mh-s8C6Wts0KF0VX6AN8KmdXwVSu1UXJOf2AVGQbs,676
29
- alita_sdk/configurations/sql.py,sha256=3zj4d81Im7D_iAUpFhPi4xtdp4KkLWxNLaBElQR67SE,749
29
+ alita_sdk/configurations/sql.py,sha256=0n2q2Tmc19_xUol6EN1LO6H1tZgJuxm7PvK3bFklGnM,754
30
30
  alita_sdk/configurations/testio.py,sha256=yoGWTuwcjFoBxbsxHLGVbcQBBZAFDQwuVcTijyUrW_U,612
31
31
  alita_sdk/configurations/testrail.py,sha256=k0fPmHBIrWAfEKhrDdB9Rdirw-UFHFoXkRePyrsqcWI,725
32
- alita_sdk/configurations/xray.py,sha256=xbydsVMqGJYVrNmg6bCr3uMxXVEPFtEhPovgWX6-6_Y,1141
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=qL7NDImaU-XtbhUIF9ZU8vFv-fZTMOqN4R81qPM1hw0,709
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
@@ -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=zGlXyfRVqVdIqkeYKCiXukKB8Hm-uTHBNI9Rf8KF0Os,19093
133
+ alita_sdk/tools/__init__.py,sha256=8oFahbggsv8h7hEqqeQ4iF6g2m85Ki17iSeknviCNis,10613
134
+ alita_sdk/tools/base_indexer_toolkit.py,sha256=WOwGICQX4iylVTc2jzE5TfjffYkliju5WvsF-XvmO4c,19262
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
@@ -258,7 +258,7 @@ alita_sdk/tools/google/bigquery/tool.py,sha256=Esf9Hsp8I0e7-5EdkFqQ-bid0cfrg-bfS
258
258
  alita_sdk/tools/google_places/__init__.py,sha256=Tg_dfKTc0qxcG-1HVuQQB11PYph2RDWSUVhrlgxqk64,3491
259
259
  alita_sdk/tools/google_places/api_wrapper.py,sha256=7nZly6nk4f4Tm7s2MVdnnwlb-1_WHRrDhyjDiqoyPjA,4674
260
260
  alita_sdk/tools/jira/__init__.py,sha256=0NJikFWEqK8DSohXPUYD4iDLJFS8btxhqQ60acWwC3k,6063
261
- alita_sdk/tools/jira/api_wrapper.py,sha256=ia4eOjT2oe6aNfO1y8FJv5sVle1DLb9uKM6FcMTsnm4,78928
261
+ alita_sdk/tools/jira/api_wrapper.py,sha256=qflTFkkP1CDYKWPvHyiFiIaqTZm_Bom4ZnhdcWnFRe4,79019
262
262
  alita_sdk/tools/keycloak/__init__.py,sha256=0WB9yXMUUAHQRni1ghDEmd7GYa7aJPsTVlZgMCM9cQ0,3050
263
263
  alita_sdk/tools/keycloak/api_wrapper.py,sha256=cOGr0f3S3-c6tRDBWI8wMnetjoNSxiV5rvC_0VHb8uw,3100
264
264
  alita_sdk/tools/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -328,18 +328,18 @@ 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
332
- alita_sdk/tools/xray/api_wrapper.py,sha256=9EM6WxA1ohVtFBet8Bz0eO2ky5mwYQP1BGYH6zRUC8I,30498
331
+ alita_sdk/tools/xray/__init__.py,sha256=AsHDvRgyD-6vvGyAyQDPWHbOD2WoMJ5Llt029bLuu6U,4277
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
335
335
  alita_sdk/tools/zephyr/Zephyr.py,sha256=ODZbg9Aw0H0Rbv-HcDXLI4KHbPiLDHoteDofshw9A_k,1508
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.278.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
351
- alita_sdk-0.3.278.dist-info/METADATA,sha256=FlffuP42r4p0qVuGW_KwQGuJU-W_njk9iYUoWZhOw_k,18897
352
- alita_sdk-0.3.278.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
353
- alita_sdk-0.3.278.dist-info/top_level.txt,sha256=0vJYy5p_jK6AwVb1aqXr7Kgqgk3WDtQ6t5C-XI9zkmg,10
354
- alita_sdk-0.3.278.dist-info/RECORD,,
350
+ alita_sdk-0.3.280.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
351
+ alita_sdk-0.3.280.dist-info/METADATA,sha256=QOuDXtWQ5nKGzPVKGd0QQ7_-TnV69apgQfMhbAPaX6Q,18897
352
+ alita_sdk-0.3.280.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
353
+ alita_sdk-0.3.280.dist-info/top_level.txt,sha256=0vJYy5p_jK6AwVb1aqXr7Kgqgk3WDtQ6t5C-XI9zkmg,10
354
+ alita_sdk-0.3.280.dist-info/RECORD,,