alita-sdk 0.3.224__py3-none-any.whl → 0.3.225__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.
@@ -364,7 +364,7 @@ class TestPlanApiWrapper(BaseVectorStoreToolApiWrapper):
364
364
  logger.error(f"Error getting test cases: {e}")
365
365
  return ToolException(f"Error getting test cases: {e}")
366
366
 
367
- def _base_loader(self, plan_id: str, suite_ids: Optional[list[str]] = []) -> Generator[Document, None, None]:
367
+ def _base_loader(self, plan_id: str, suite_ids: Optional[list[str]] = [], **kwargs) -> Generator[Document, None, None]:
368
368
  cases = []
369
369
  for sid in suite_ids:
370
370
  cases.extend(self.get_test_cases(plan_id, sid))
@@ -229,7 +229,7 @@ class AzureDevOpsApiWrapper(BaseVectorStoreToolApiWrapper):
229
229
  logger.error(f"Unable to modify wiki page: {str(e)}")
230
230
  return ToolException(f"Unable to modify wiki page: {str(e)}")
231
231
 
232
- def _base_loader(self, wiki_identifier: str) -> Generator[Document, None, None]:
232
+ def _base_loader(self, wiki_identifier: str, **kwargs) -> Generator[Document, None, None]:
233
233
  pages = self._client.get_pages_batch(pages_batch_request={}, project=self.project, wiki_identifier=wiki_identifier)
234
234
  #
235
235
  for page in pages:
@@ -153,10 +153,10 @@ class ZephyrApiWrapper(BaseVectorStoreToolApiWrapper):
153
153
  Returns a list of fields for index_data args schema.
154
154
  """
155
155
  return {
156
- "zql": (str, Field(description=zql_description, examples=["folder=\"TestToolkit\"", "name~\"TestToolkit5\""))
156
+ "zql": (str, Field(description=zql_description, examples=["folder=\"TestToolkit\"", "name~\"TestToolkit5\""]))
157
157
  }
158
158
 
159
- def _base_loader(self, zql: str) -> Generator[Document, None, None]:
159
+ def _base_loader(self, zql: str, **kwargs) -> Generator[Document, None, None]:
160
160
  test_cases = self.get_testcases_by_zql(zql)
161
161
  for test_case in test_cases:
162
162
  metadata = {
@@ -229,7 +229,7 @@ class ZephyrEssentialApiWrapper(BaseVectorStoreToolApiWrapper):
229
229
  except json.JSONDecodeError as e:
230
230
  raise ValueError(f"Invalid JSON string: {str(e)}")
231
231
 
232
- def _base_loader(self) -> Generator[Document, None, None]:
232
+ def _base_loader(self, **kwargs) -> Generator[Document, None, None]:
233
233
  try:
234
234
  test_cases = self.list_test_cases()
235
235
  except Exception as e:
@@ -1213,7 +1213,7 @@ class ZephyrScaleApiWrapper(BaseVectorStoreToolApiWrapper):
1213
1213
  """))
1214
1214
  }
1215
1215
 
1216
- def _base_loader(self, project_key: str, jql: str) -> Generator[Document, None, None]:
1216
+ def _base_loader(self, project_key: str, jql: str, **kwargs) -> Generator[Document, None, None]:
1217
1217
  for test_case_doc in self._get_test_cases_docs(project_key, jql):
1218
1218
  yield test_case_doc
1219
1219
  for folder_doc in self._get_folders_docs(project_key):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: alita_sdk
3
- Version: 0.3.224
3
+ Version: 0.3.225
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
@@ -100,9 +100,9 @@ alita_sdk/tools/ado/utils.py,sha256=PTCludvaQmPLakF2EbCGy66Mro4-rjDtavVP-xcB2Wc,
100
100
  alita_sdk/tools/ado/repos/__init__.py,sha256=VvOapCG5okdyfCNdeTfOdcgRvl54cB1-sx_BF0TBWOw,6858
101
101
  alita_sdk/tools/ado/repos/repos_wrapper.py,sha256=SgnEUX1lTn5ncZI8EFfPibk0_gHstkApDSqTCxYsrUk,50097
102
102
  alita_sdk/tools/ado/test_plan/__init__.py,sha256=QUNSOCVheUbILve4CxjBzBHKcIA28jZjoA6rRb8tD_Y,5483
103
- alita_sdk/tools/ado/test_plan/test_plan_wrapper.py,sha256=MIEgTcjXQ_Hmx9Thzb1VXrviiB-nusFe-ym3BYlwa_4,20175
103
+ alita_sdk/tools/ado/test_plan/test_plan_wrapper.py,sha256=WWSWQx97sQfkM_CALybj9BPmPelozdRlxwefbkTgxis,20185
104
104
  alita_sdk/tools/ado/wiki/__init__.py,sha256=3cPNqUyOFwnZ2g5QW8wsdBC9sB0u39F-q4KKVjQqTN8,5351
105
- alita_sdk/tools/ado/wiki/ado_wrapper.py,sha256=JfEbq2OBVtQe-6igYj09ucxwHEl34SozPIJ6gRGWcU8,14157
105
+ alita_sdk/tools/ado/wiki/ado_wrapper.py,sha256=HoM2U2G8sKM8Hh6HpTFHdTiKAu4vLigB8VwE0_QtMhw,14167
106
106
  alita_sdk/tools/ado/work_item/__init__.py,sha256=dBDjP8CJnKe9xBbJg-EG1AvRo06mcfS2f0AVeXMaBmk,5507
107
107
  alita_sdk/tools/ado/work_item/ado_wrapper.py,sha256=7YrqNIDnVYYm8__joABAr3iIk3IvYoQ7NZ9Vi-iaICc,28233
108
108
  alita_sdk/tools/advanced_jira_mining/__init__.py,sha256=pUTzECqGvYaR5qWY3JPUhrImrZgc7pCXuqSe5eWIE80,4604
@@ -297,18 +297,18 @@ alita_sdk/tools/zephyr/__init__.py,sha256=8B2Ibz5QTmB5WkV0q8Sq4kuj92FFaFWZLrT877
297
297
  alita_sdk/tools/zephyr/api_wrapper.py,sha256=lJCYPG03ej0qgdpLflnS7LFB4HSAfGzIvTjAJt07CQs,6244
298
298
  alita_sdk/tools/zephyr/rest_client.py,sha256=7vSD3oYIX-3KbAFed-mphSQif_VRuXrq5O07ryNQ7Pk,6208
299
299
  alita_sdk/tools/zephyr_enterprise/__init__.py,sha256=XAWLj4WgMpEz3xnP8VW1lzHVW48K3CxIXdgeubjMvaw,3885
300
- alita_sdk/tools/zephyr_enterprise/api_wrapper.py,sha256=arPAvOGrurEsZaICvdVrcbspXBdDQl4XuNdfZSmm1lg,11204
300
+ alita_sdk/tools/zephyr_enterprise/api_wrapper.py,sha256=p9EpkO5tif3JJzprz2_VuLsQ1yET7TwwBfPOKJGwt9c,11215
301
301
  alita_sdk/tools/zephyr_enterprise/zephyr_enterprise.py,sha256=hV9LIrYfJT6oYp-ZfQR0YHflqBFPsUw2Oc55HwK0H48,6809
302
302
  alita_sdk/tools/zephyr_essential/__init__.py,sha256=-VS-smytUSjqNLLi6HmqbsU3NfmNFTrzPjzNiEtOi5c,3628
303
- alita_sdk/tools/zephyr_essential/api_wrapper.py,sha256=zjZnAx1Fl1fYx5Vc1Q8JOc_pxUEkCngbRzzmea4sj7Y,36785
303
+ alita_sdk/tools/zephyr_essential/api_wrapper.py,sha256=TpNov35XPgjM9eymCEFqv22mbpdVvLMBTb9WVqUcvNA,36795
304
304
  alita_sdk/tools/zephyr_essential/client.py,sha256=bfNcUKNqj9MFWTludGbbqD4qZlxrBaC2JtWsCfZMqSY,9722
305
305
  alita_sdk/tools/zephyr_scale/__init__.py,sha256=2NTcdrfkx4GSegqyXhsPLsEpc4FlACuDy85b0fk6cAo,4572
306
- alita_sdk/tools/zephyr_scale/api_wrapper.py,sha256=ZpHVRpeWDE-kxOf491vHgNesozuwEVS4oB0cnPs4XMw,78005
306
+ alita_sdk/tools/zephyr_scale/api_wrapper.py,sha256=JAeWf-RXohsxheUpT0iMDClc_izj-zxMwafXCW4jtC0,78015
307
307
  alita_sdk/tools/zephyr_squad/__init__.py,sha256=0AI_j27xVO5Gk5HQMFrqPTd4uvuVTpiZUicBrdfEpKg,2796
308
308
  alita_sdk/tools/zephyr_squad/api_wrapper.py,sha256=kmw_xol8YIYFplBLWTqP_VKPRhL_1ItDD0_vXTe_UuI,14906
309
309
  alita_sdk/tools/zephyr_squad/zephyr_squad_cloud_client.py,sha256=R371waHsms4sllHCbijKYs90C-9Yu0sSR3N4SUfQOgU,5066
310
- alita_sdk-0.3.224.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
311
- alita_sdk-0.3.224.dist-info/METADATA,sha256=lmtfgiN8O2B_M8Sld4D1uGYOr5g5aOyESKCjt-_b9uc,18917
312
- alita_sdk-0.3.224.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
313
- alita_sdk-0.3.224.dist-info/top_level.txt,sha256=0vJYy5p_jK6AwVb1aqXr7Kgqgk3WDtQ6t5C-XI9zkmg,10
314
- alita_sdk-0.3.224.dist-info/RECORD,,
310
+ alita_sdk-0.3.225.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
311
+ alita_sdk-0.3.225.dist-info/METADATA,sha256=aEZ-H5sC3z9syNzA4TBqKOQuGhQzuwMc9OzBnttEu4E,18917
312
+ alita_sdk-0.3.225.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
313
+ alita_sdk-0.3.225.dist-info/top_level.txt,sha256=0vJYy5p_jK6AwVb1aqXr7Kgqgk3WDtQ6t5C-XI9zkmg,10
314
+ alita_sdk-0.3.225.dist-info/RECORD,,