alita-sdk 0.3.145__py3-none-any.whl → 0.3.147__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 (45) hide show
  1. alita_sdk/runtime/tools/function.py +0 -2
  2. alita_sdk/runtime/tools/indexer_tool.py +4 -2
  3. alita_sdk/tools/ado/repos/__init__.py +3 -1
  4. alita_sdk/tools/ado/test_plan/__init__.py +2 -0
  5. alita_sdk/tools/ado/wiki/__init__.py +17 -15
  6. alita_sdk/tools/ado/work_item/__init__.py +4 -1
  7. alita_sdk/tools/advanced_jira_mining/__init__.py +10 -1
  8. alita_sdk/tools/azure_ai/search/__init__.py +7 -1
  9. alita_sdk/tools/bitbucket/__init__.py +9 -1
  10. alita_sdk/tools/browser/__init__.py +1 -1
  11. alita_sdk/tools/carrier/__init__.py +2 -4
  12. alita_sdk/tools/cloud/aws/__init__.py +10 -1
  13. alita_sdk/tools/code/linter/__init__.py +5 -1
  14. alita_sdk/tools/code/sonar/__init__.py +11 -2
  15. alita_sdk/tools/confluence/__init__.py +3 -1
  16. alita_sdk/tools/custom_open_api/__init__.py +4 -1
  17. alita_sdk/tools/elastic/__init__.py +2 -1
  18. alita_sdk/tools/figma/__init__.py +3 -1
  19. alita_sdk/tools/github/__init__.py +5 -2
  20. alita_sdk/tools/gitlab/__init__.py +3 -1
  21. alita_sdk/tools/gitlab_org/__init__.py +3 -1
  22. alita_sdk/tools/google_places/__init__.py +11 -2
  23. alita_sdk/tools/jira/__init__.py +4 -2
  24. alita_sdk/tools/keycloak/__init__.py +3 -2
  25. alita_sdk/tools/ocr/__init__.py +6 -2
  26. alita_sdk/tools/pandas/__init__.py +5 -2
  27. alita_sdk/tools/pptx/__init__.py +5 -2
  28. alita_sdk/tools/qtest/__init__.py +3 -1
  29. alita_sdk/tools/rally/__init__.py +4 -2
  30. alita_sdk/tools/report_portal/__init__.py +3 -1
  31. alita_sdk/tools/salesforce/__init__.py +5 -1
  32. alita_sdk/tools/servicenow/__init__.py +3 -1
  33. alita_sdk/tools/sharepoint/__init__.py +6 -1
  34. alita_sdk/tools/sql/__init__.py +9 -2
  35. alita_sdk/tools/testio/__init__.py +3 -1
  36. alita_sdk/tools/testrail/__init__.py +5 -1
  37. alita_sdk/tools/xray/__init__.py +9 -1
  38. alita_sdk/tools/zephyr/__init__.py +10 -2
  39. alita_sdk/tools/zephyr_enterprise/__init__.py +8 -2
  40. alita_sdk/tools/zephyr_scale/__init__.py +2 -0
  41. {alita_sdk-0.3.145.dist-info → alita_sdk-0.3.147.dist-info}/METADATA +218 -30
  42. {alita_sdk-0.3.145.dist-info → alita_sdk-0.3.147.dist-info}/RECORD +45 -45
  43. {alita_sdk-0.3.145.dist-info → alita_sdk-0.3.147.dist-info}/WHEEL +0 -0
  44. {alita_sdk-0.3.145.dist-info → alita_sdk-0.3.147.dist-info}/licenses/LICENSE +0 -0
  45. {alita_sdk-0.3.145.dist-info → alita_sdk-0.3.147.dist-info}/top_level.txt +0 -0
@@ -34,7 +34,14 @@ class ZephyrToolkit(BaseToolkit):
34
34
  username=(str, Field(description="Username")),
35
35
  password=(SecretStr, Field(description="Password", json_schema_extra={'secret': True})),
36
36
  selected_tools=(List[Literal[tuple(selected_tools)]], Field(default=[], json_schema_extra={'args_schemas': selected_tools})),
37
- __config__={'json_schema_extra': {'metadata': {"label": "Zephyr", "icon_url": "zephyr.svg", "hidden": True}}}
37
+ __config__={
38
+ 'json_schema_extra':
39
+ {
40
+ 'metadata': {
41
+ "label": "Zephyr", "icon_url": "zephyr.svg", "hidden": True,
42
+ "categories": ["test management"],
43
+ "extra_categories": ["test automation", "test case management", "test planning"]
44
+ }}}
38
45
  )
39
46
 
40
47
  @classmethod
@@ -56,4 +63,5 @@ class ZephyrToolkit(BaseToolkit):
56
63
  return cls(tools=tools)
57
64
 
58
65
  def get_tools(self):
59
- return self.tools
66
+ return self.tools
67
+
@@ -30,7 +30,12 @@ class ZephyrEnterpriseToolkit(BaseToolkit):
30
30
  base_url=(str, Field(description="Zephyr Enterprise base URL", json_schema_extra={'toolkit_name': True, 'max_toolkit_length': ZephyrEnterpriseToolkit.toolkit_max_length })),
31
31
  token=(SecretStr, Field(description="API token", json_schema_extra={'secret': True})),
32
32
  selected_tools=(List[Literal[tuple(selected_tools)]], []),
33
- __config__=ConfigDict(json_schema_extra={'metadata': {"label": "Zephyr Enterprise", "icon_url": "zephyr.svg"}})
33
+ __config__=ConfigDict(json_schema_extra={
34
+ 'metadata': {
35
+ "label": "Zephyr Enterprise", "icon_url": "zephyr.svg",
36
+ "categories": ["test management"],
37
+ "extra_categories": ["test automation", "test case management", "test planning"]
38
+ }})
34
39
  )
35
40
 
36
41
  @classmethod
@@ -53,4 +58,5 @@ class ZephyrEnterpriseToolkit(BaseToolkit):
53
58
  return cls(tools=tools)
54
59
 
55
60
  def get_tools(self) -> List[BaseTool]:
56
- return self.tools
61
+ return self.tools
62
+
@@ -48,6 +48,8 @@ class ZephyrScaleToolkit(BaseToolkit):
48
48
  'metadata': {
49
49
  "label": "Zephyr Scale",
50
50
  "icon_url": "zephyr.svg",
51
+ "categories": ["test management"],
52
+ "extra_categories": ["test automation", "test case management", "test planning"],
51
53
  "sections": {
52
54
  "auth": {
53
55
  "required": True,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: alita_sdk
3
- Version: 0.3.145
3
+ Version: 0.3.147
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>
6
6
  License-Expression: Apache-2.0
@@ -62,7 +62,7 @@ Requires-Dist: rlpycairo==0.3.0; extra == "runtime"
62
62
  Requires-Dist: cairocffi==1.7.1; extra == "runtime"
63
63
  Requires-Dist: docx2txt==0.8; extra == "runtime"
64
64
  Requires-Dist: mammoth==1.9.0; extra == "runtime"
65
- Requires-Dist: opentelemetry-exporter-otlp-proto-grpc==1.25.0; extra == "runtime"
65
+ Requires-Dist: opentelemetry-exporter-otlp-proto-grpc; extra == "runtime"
66
66
  Requires-Dist: sentence-transformers==2.7.0; extra == "runtime"
67
67
  Provides-Extra: tools
68
68
  Requires-Dist: dulwich==0.21.6; extra == "tools"
@@ -152,23 +152,28 @@ Before you begin, ensure you have the following requirements met:
152
152
  Installation
153
153
  ------------
154
154
 
155
- First, you need to install the Langchain library. Alita SDK depends on Langchain for its core functionalities. You can install Langchain using pip:
155
+ It is recommended to use a Python virtual environment to avoid dependency conflicts and keep your environment isolated.
156
156
 
157
+ ### 1. Create and activate a virtual environment
158
+
159
+ For **Unix/macOS**:
157
160
  ```bash
158
- pip install langchain
161
+ python3 -m venv .venv
162
+ source .venv/bin/activate
159
163
  ```
160
164
 
161
- Next, clone the Alita SDK repository (assuming it's available on GitHub or another source):
162
-
163
- ```bash
164
- git clone https://github.com/ProjectAlita/alita-sdk.git
165
- cd alita-sdk
165
+ For **Windows**:
166
+ ```bat
167
+ python -m venv .venv
168
+ venv\Scripts\activate
166
169
  ```
167
170
 
168
- Install the SDK along with its dependencies:
171
+ ### 2. Install dependencies
172
+
173
+ Install all required dependencies for the SDK and toolkits:
169
174
 
170
175
  ```bash
171
- pip install -r requirements.txt
176
+ pip install -r req_bkup/requirements-all.txt
172
177
  ```
173
178
 
174
179
  Environment Setup
@@ -180,10 +185,12 @@ Before running your Alita agents, set up your environment variables. Create a `.
180
185
  DEPLOYMENT_URL=<your_deployment_url>
181
186
  API_KEY=<your_api_key>
182
187
  PROJECT_ID=<your_project_id>
183
- INTEGRATION_UID=<your_integration_uid>
184
- MODEL_NAME=<your_model_name>
185
188
  ```
186
189
 
190
+ NOTE: these variables can be grabbed from your Elitea platform configuration page.
191
+ ![Platform configuration](docs/readme_imgs/platform_config.png "Platform configuration")
192
+
193
+
187
194
 
188
195
  Using SDK with Streamlit for Local Development
189
196
  ----------------------------------------------
@@ -200,8 +207,12 @@ To use the SDK with Streamlit for local development, follow these steps:
200
207
  streamlit run alita_local.py
201
208
  ```
202
209
 
203
- Note: If **streamlite** throws an error related to **pytorch**, add this `--server.fileWatcherType none` extra arguments.
204
- Sometimes it try to index **pytorch** modules and since they are **C** modules it raises an exception.
210
+ Note: If **streamlit** throws an error related to **pytorch**, add this `--server.fileWatcherType none` extra arguments.
211
+ Sometimes it tries to index **pytorch** modules, and since they are **C** modules it raises an exception.
212
+
213
+ Example of launch configuration for Streamlit:
214
+ Important: Make sure to set the correct path to your `.env` file and streamlit.
215
+ ![Launch configuration example](docs/readme_imgs/launch_config.png "Launch configuration")
205
216
 
206
217
  Streamlit Web Application
207
218
  ------------------------
@@ -227,7 +238,7 @@ The Alita SDK includes a Streamlit web application that provides a user-friendly
227
238
  - After authentication, you'll see a list of available agents
228
239
  - Select an agent from the dropdown menu
229
240
  - Specify a version name (default: 'latest')
230
- - Optionally select an agent type and add custom tools
241
+ - Optionally, select an agent type and add custom tools
231
242
  - Click "Load Agent" to initialize the agent
232
243
 
233
244
  3. **Interacting with the Agent**:
@@ -241,23 +252,200 @@ The Alita SDK includes a Streamlit web application that provides a user-friendly
241
252
 
242
253
  This web application simplifies the process of testing and interacting with your Alita agents, making development and debugging more efficient.
243
254
 
244
- Adding Alita-Tools to PYTHONPATH
245
- --------------------------------
255
+ Using Elitea toolkits and tools with Streamlit for Local Development
256
+ ----------------------------------------------
246
257
 
247
- If you have another repository containing Alita tools, you can add it to your PYTHONPATH to make the tools available to your project. For example:
258
+ Actually, toolkits are part of the Alita SDK (`alita-sdk/tools`), so you can use them in your local development environment as well.
259
+ To debug it, you can use the `alita_local.py` file, which is a Streamlit application that allows you
260
+ to interact with your agents and toolkits by setting the breakpoints in the code of corresponding tool.
248
261
 
249
- 1. Clone the repository containing the Alita tools:
250
- ```bash
251
- git clone https://github.com/yourusername/alita-tools.git
252
- ```
262
+ # Example of agent's debugging with Streamlit:
263
+ Assume we try to debug the user's agent called `Questionnaire` with the `Confluence` toolkit and `get_pages_with_label` method.
264
+ Pre-requisites:
265
+ - Make sure you have set correct variables in your `.env` file
266
+ - Set the breakpoints in the `alita_sdk/tools/confluence/api_wrapper.py` file, in the `get_pages_with_label` method
253
267
 
254
- 2. Add the repository to your PYTHONPATH:
268
+ 1. Run the Streamlit app (using debug):
255
269
  ```bash
256
- export PYTHONPATH=$PYTHONPATH:/path/to/alita-tools
270
+ streamlit run alita_local.py
257
271
  ```
272
+ 2. Login into the application with your credentials (populated from .env file)
273
+ - Enter your deployment URL, API key, and project ID (optionally)
274
+ - Click "Login" to authenticate with the Alita Platform
258
275
 
259
- 3. Verify that the tools are accessible in your project:
260
- ```python
261
- import sys
262
- print(sys.path)
263
- ```
276
+ ![login](docs/readme_imgs/login.png "login")
277
+ 3. Select `Questionnaire` agent
278
+
279
+ ![agent_selection](docs/readme_imgs/agent_selection.png "agent_selection")
280
+ 4. Query the agent with the required prompt:
281
+ ```
282
+ get pages with label `ai-mb`
283
+ ```
284
+ 5. Debug the agent's code:
285
+ - The Streamlit app will call the `get_pages_with_label` method of the `Confluence` toolkit
286
+ - The execution will stop at the breakpoint you set in the `alita_sdk/tools/confluence/api_wrapper.py` file
287
+ - You can inspect variables, step through the code, and analyze the flow of execution
288
+ ![debugging](docs/readme_imgs/debugging.png "debugging")
289
+
290
+
291
+ How to create a new toolkit
292
+ ----------------------------------------------
293
+ The toolkit is a collection of pre-built tools and functionalities designed to simplify the development of AI agents. These toolkits provide developers with the necessary resources, such as APIs, data connectors to required services and systems.
294
+ As an initial step, you have to decide on its capabilities to design required tools and its args schema.
295
+ Example of the Testrail toolkit's capabilities:
296
+ - `get_test_cases`: Retrieve test cases from Testrail
297
+ - `get_test_runs`: Retrieve test runs from Testrail
298
+ - `get_test_plans`: Retrieve test plans from Testrail
299
+ - `create_test_case`: Create a new test case in Testrail
300
+ - etc.
301
+
302
+ ### General Steps to Create a Toolkit
303
+ ### 1. Create the Toolkit package
304
+ Create a new package under `alita_sdk/tools/` for your toolkit, e.g., `alita_sdk/tools/mytoolkit/`.
305
+
306
+ ### 2. Implement the API Wrapper
307
+ Create an `api_wrapper.py` file in your toolkit directory. This file should:
308
+ - Define a config class (subclassing `BaseToolApiWrapper`).
309
+ - Implement methods for each tool/action you want to implement.
310
+ - Provide a `get_available_tools()` method that returns tools' metadata and argument schemas.
311
+
312
+ Note:
313
+ - args schema should be defined using Pydantic models, which will help in validating the input parameters for each tool.
314
+ - make sure tools descriptions are clear and concise, as they will be used by LLM to define on tool's execution chain.
315
+ - clearly define the input parameters for each tool, as they will be used by LLM to generate the correct input for the tool and whether it is required or optional (refer to https://docs.pydantic.dev/2.2/migration/#required-optional-and-nullable-fields if needed).
316
+
317
+ **Example:**
318
+ ```python
319
+ # alita_sdk/tools/mytoolkit/api_wrapper.py
320
+ from ...elitea_base import BaseToolApiWrapper
321
+ from pydantic import create_model, Field
322
+
323
+
324
+ class MyToolkitConfig(BaseToolApiWrapper):
325
+
326
+
327
+ # Define config fields (e.g., API keys, endpoints)
328
+ api_key: str
329
+
330
+
331
+ def do_something(self, param1: str):
332
+
333
+
334
+ """Perform an action with param1."""
335
+ # Implement your logic here
336
+ return {"result": f"Did something with {param1}"}
337
+
338
+
339
+ def get_available_tools(self):
340
+
341
+
342
+ return [
343
+ {
344
+ "name": "do_something",
345
+ "ref": self.do_something,
346
+ "description": self.do_something.__doc__,
347
+ "args_schema": create_model(
348
+ "DoSomethingModel",
349
+ param1=(str, Field(description="Parameter 1"))
350
+ ),
351
+ }
352
+ ]
353
+ ```
354
+
355
+ ### 3. Implement the Toolkit Configuration Class
356
+ Create an `__init__.py` file in your toolkit directory. This file should:
357
+ - Define a `toolkit_config_schema()` static method for toolkit's configuration (this data is used for toolkit configuration card rendering on UI).
358
+ - Implement a `get_tools(tool)` method to grab toolkit's configuration parameters based on the configuration on UI.
359
+ - Implement a `get_toolkit()` class method to instantiate tools.
360
+ - Return a list of tool instances via `get_tools()`.
361
+ **Example:**
362
+ ```python
363
+ # alita_sdk/tools/mytoolkit/__init__.py
364
+ from pydantic import BaseModel, Field, create_model
365
+ from langchain_core.tools import BaseToolkit, BaseTool
366
+ from .api_wrapper import MyToolkitConfig
367
+ from ...base.tool import BaseAction
368
+
369
+ name = "mytoolkit"
370
+
371
+ def get_tools(tool):
372
+ return MyToolkit().get_toolkit(
373
+ selected_tools=tool['settings'].get('selected_tools', []),
374
+ url=tool['settings']['url'],
375
+ password=tool['settings'].get('password', None),
376
+ email=tool['settings'].get('email', None),
377
+ toolkit_name=tool.get('toolkit_name')
378
+ ).get_tools()
379
+
380
+ class MyToolkit(BaseToolkit):
381
+
382
+
383
+ tools: list[BaseTool] = []
384
+
385
+
386
+ @staticmethod
387
+ def toolkit_config_schema() -> BaseModel:
388
+
389
+
390
+ return create_model(
391
+ name,
392
+ url=(str, Field(title="Base URL", description="Base URL for the API")),
393
+ email=(str, Field(title="Email", description="Email for authentication", default=None)),
394
+ password=(str, Field(title="Password", description="Password for authentication", default=None)),
395
+ selected_tools=(list[str], Field(title="Selected Tools", description="List of tools to enable", default=[])),
396
+ )
397
+
398
+
399
+ @classmethod
400
+ def get_toolkit(cls, selected_tools=None, toolkit_name=None, **kwargs):
401
+ config = MyToolkitConfig(**kwargs)
402
+
403
+
404
+ available_tools = config.get_available_tools()
405
+ tools = []
406
+ for tool in available_tools:
407
+ if selected_tools and tool["name"] not in selected_tools:
408
+ continue
409
+ tools.append(BaseAction(
410
+ api_wrapper=config,
411
+ name=tool["name"],
412
+ description=tool["description"],
413
+ args_schema=tool["args_schema"]
414
+ ))
415
+ return cls(tools=tools)
416
+
417
+
418
+ def get_tools(self) -> list[BaseTool]:
419
+
420
+
421
+ return self.tools
422
+ ```
423
+
424
+ ### 4. Add the Toolkit to the SDK
425
+ Update the `__init__.py` file in the `alita_sdk/tools/` directory to include your new toolkit:
426
+
427
+ ```python
428
+ # alita_sdk/tools/__init__.py
429
+
430
+ def get_tools(tools_list, alita: 'AlitaClient', llm: 'LLMLikeObject', *args, **kwargs):
431
+ ...
432
+ # add your toolkit here with proper type
433
+ elif tool['type'] == 'mytoolkittype':
434
+ tools.extend(get_mytoolkit(tool))
435
+
436
+ # add toolkit's config schema
437
+ def get_toolkits():
438
+ return [
439
+ ...,
440
+ MyToolkit.toolkit_config_schema(),
441
+ ]
442
+ ```
443
+
444
+ ### 5. Test Your Toolkit
445
+ To test your toolkit, you can use the Streamlit application (`alita_local.py`) to load and interact with your toolkit.
446
+ - Login to the platform
447
+ - Select `Toolkit testing` tab
448
+ - Choose your toolkit from the dropdown menu.
449
+ - Adjust the configuration parameters as needed, and then test the tools by sending queries to them.
450
+
451
+ ![custom_toolkit_config](docs/readme_imgs/custom_toolkit_config.png "custom_toolkit_config")
@@ -109,8 +109,8 @@ alita_sdk/runtime/tools/application.py,sha256=7XSqwASZGihvQ9uZxnQp61ypFT6twrzBH_
109
109
  alita_sdk/runtime/tools/artifact.py,sha256=-5c4vAh1EC-brLwjVC2Q2yR8CkHc-A5Pyc-pQgKaOsU,6164
110
110
  alita_sdk/runtime/tools/datasource.py,sha256=pvbaSfI-ThQQnjHG-QhYNSTYRnZB0rYtZFpjCfpzxYI,2443
111
111
  alita_sdk/runtime/tools/echo.py,sha256=spw9eCweXzixJqHnZofHE1yWiSUa04L4VKycf3KCEaM,486
112
- alita_sdk/runtime/tools/function.py,sha256=euKboKwEXFXKx_1xjruUCVCXmnhM2O9zWJNZ77UvteI,2688
113
- alita_sdk/runtime/tools/indexer_tool.py,sha256=LbHojqTbLkyh9e3Sbv3k0FQn7m5CVcQqH84o9Daqrk4,4262
112
+ alita_sdk/runtime/tools/function.py,sha256=ZFpd7TGwIawze2e7BHlKwP0NHwNw42wwrmmnXyJQJhk,2600
113
+ alita_sdk/runtime/tools/indexer_tool.py,sha256=whSLPevB4WD6dhh2JDXEivDmTvbjiMV1MrPl9cz5eLA,4375
114
114
  alita_sdk/runtime/tools/llm.py,sha256=UUd4U4CuCNImHxVJAF5daYbew-7X9H8k21bUWy2PDvg,3502
115
115
  alita_sdk/runtime/tools/loop.py,sha256=uds0WhZvwMxDVFI6MZHrcmMle637cQfBNg682iLxoJA,8335
116
116
  alita_sdk/runtime/tools/loop_output.py,sha256=U4hO9PCQgWlXwOq6jdmCGbegtAxGAPXObSxZQ3z38uk,8069
@@ -132,33 +132,33 @@ alita_sdk/tools/__init__.py,sha256=rAfKAUM8htvFH-YBc75kIK1COhyMSbzP2ysnjS9fbKY,8
132
132
  alita_sdk/tools/elitea_base.py,sha256=PdeslMciJ9lEaxI561FNASi4uIWI_Dn99odB8VjWn-A,20927
133
133
  alita_sdk/tools/ado/__init__.py,sha256=mD6GHcYMTtffPJkJvFPe2rzvye_IRmXmWfI7xYuZhO4,912
134
134
  alita_sdk/tools/ado/utils.py,sha256=PTCludvaQmPLakF2EbCGy66Mro4-rjDtavVP-xcB2Wc,1252
135
- alita_sdk/tools/ado/repos/__init__.py,sha256=vCWN7Z4qn0_N5qr8DgCX_KKXnj-yYx8xPhZOPqswQq8,5077
135
+ alita_sdk/tools/ado/repos/__init__.py,sha256=U8MA5VA3hDRomcbbZ2bS8zzwnGYnAfOlLN3jfIOdWMU,5217
136
136
  alita_sdk/tools/ado/repos/repos_wrapper.py,sha256=RfhHr7aL1peIubW1FgL9r7p5WExzFfXzotuZmeCzlO8,47931
137
- alita_sdk/tools/ado/test_plan/__init__.py,sha256=rLBhB9S-IKLLxcS3nFd-3WtEuqfi6D3FXb-tHdYijGM,3277
137
+ alita_sdk/tools/ado/test_plan/__init__.py,sha256=ctn2CUkH_xS0Wkv2gLrO3FHQ36BvNCc0VcpMuddvU8E,3404
138
138
  alita_sdk/tools/ado/test_plan/test_plan_wrapper.py,sha256=oIvVhLUMP5ZGctoAtK6sU0y6Si9gNv9-mbLqcWtw3gY,12525
139
- alita_sdk/tools/ado/wiki/__init__.py,sha256=YVUApmZ-EQQ_dGTm3E9w5GGZUPhJIYs8DmfBNHj7iLY,3657
139
+ alita_sdk/tools/ado/wiki/__init__.py,sha256=92AIAXVYSEYKnNvEG08W2YmR2lC35Bn92CiXJ8T3vpA,3736
140
140
  alita_sdk/tools/ado/wiki/ado_wrapper.py,sha256=l4bc2QoKSUXg9UqNcx0ylv7YL9JPPQd35Ti5MXyEgC4,12690
141
- alita_sdk/tools/ado/work_item/__init__.py,sha256=1LEsuMeMwA4nMfDO8QnqVfxytfdGtRGwpbRE8UHfzUY,3705
141
+ alita_sdk/tools/ado/work_item/__init__.py,sha256=ZF6x0IWESIuwJ7jggM4o5koaZycks4lMrwdWlEzBEp0,3873
142
142
  alita_sdk/tools/ado/work_item/ado_wrapper.py,sha256=t0D9xubU0yy_JmRJ_zEtRCxwFLyanT1StbIrtHGaqpw,26108
143
- alita_sdk/tools/advanced_jira_mining/__init__.py,sha256=KonZxj_yQ488PuCluW4Q6Q4vapcQrrnX_u8ygMPYZCs,4273
143
+ alita_sdk/tools/advanced_jira_mining/__init__.py,sha256=pUTzECqGvYaR5qWY3JPUhrImrZgc7pCXuqSe5eWIE80,4604
144
144
  alita_sdk/tools/advanced_jira_mining/data_mining_wrapper.py,sha256=nZPtuwVWp8VeHw1B8q9kdwf-6ZvHnlXTOGdcIMDkKpw,44211
145
145
  alita_sdk/tools/azure_ai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
146
- alita_sdk/tools/azure_ai/search/__init__.py,sha256=QaGjLT5uztWThPO0b6c8yvVhw7yR95emPqMuQ8t3VKs,3590
146
+ alita_sdk/tools/azure_ai/search/__init__.py,sha256=FFSMBINRfODSjs7hNalwRx9BrroHUnfv6Jw8nN0w2Y8,3808
147
147
  alita_sdk/tools/azure_ai/search/api_wrapper.py,sha256=E4p6HPDlwgxfT_i6cvg9rN4Vn_47CVAyNBAKLIGq3mU,7265
148
148
  alita_sdk/tools/base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
149
149
  alita_sdk/tools/base/tool.py,sha256=-N27AodZS49vdPCgFkU-bFS9bxoPopZBnNrmwInx3d0,864
150
- alita_sdk/tools/bitbucket/__init__.py,sha256=MCXxWG4AnUHZAPJp6FNb4wYNoxjAH7Uh26IBSClq25Y,3284
150
+ alita_sdk/tools/bitbucket/__init__.py,sha256=987vZZvFnrmKeaefXtXs4DjF6OFVEOKAG9F5ZHf1A_4,3562
151
151
  alita_sdk/tools/bitbucket/api_wrapper.py,sha256=HAmxY43VwfI08u0J6Z3ViBvADGNKM6LKAj1Iq5DNvMU,7133
152
152
  alita_sdk/tools/bitbucket/bitbucket_constants.py,sha256=UsbhQ1iEvrKoxceTFPWTYhaXS1zSxbmjs1TwY0-P4gw,462
153
153
  alita_sdk/tools/bitbucket/cloud_api_wrapper.py,sha256=9pvU--c02EB2JVkXuMI4cehWU657HsFpywAmtLC3yVs,7731
154
154
  alita_sdk/tools/bitbucket/tools.py,sha256=a0Q_MiGI7oOn4G53L2gdyaUkVGgHuWMH-e3OU1uiR-0,10997
155
- alita_sdk/tools/browser/__init__.py,sha256=kpDNqcxp0B57UIDFZoZWPkpcp9aITc9imwJPMlCa4Ic,5163
155
+ alita_sdk/tools/browser/__init__.py,sha256=iByi9uMGjd6v44SagIPTm5fu1vWnxIkjn3xsx86uRwI,5249
156
156
  alita_sdk/tools/browser/crawler.py,sha256=jhE35dU94eQLURSM-D50tspOqEMsiGzMDbYNqNSR2mU,2279
157
157
  alita_sdk/tools/browser/duck_duck_go_search.py,sha256=iKws923v34o-ySXohJw-8xTDBWlj3fMsnzC_ZRuPugE,2002
158
158
  alita_sdk/tools/browser/google_search_rag.py,sha256=QVHFbVwymiJGuno_HLSJOK1c_MpgMdBSTYQKf6fLRk8,1838
159
159
  alita_sdk/tools/browser/utils.py,sha256=4k3YM_f1Kqlhjz9vt2pNsGkvCjhy-EmY3nvcwdFCsLA,2501
160
160
  alita_sdk/tools/browser/wiki.py,sha256=Qh3HBFd4dkS2VavXbFJOm4b8SjVSIe5xSD7CY1vEkKE,1126
161
- alita_sdk/tools/carrier/__init__.py,sha256=MPX8bjD8maEhLQacc-4q8JzbmGDxQenevjqRXt6lgKk,4508
161
+ alita_sdk/tools/carrier/__init__.py,sha256=pP-nk-dpqOkrvwcRY_szgwqoowyVNl_GobD4Inp-Qus,4435
162
162
  alita_sdk/tools/carrier/api_wrapper.py,sha256=Ns0lGbtGKRGBTdOWseWtz4heyY3hP4AcnB9QEx_d5JU,5344
163
163
  alita_sdk/tools/carrier/backend_reports_tool.py,sha256=WNZVGBIZusakOdbd7lG6o6xL180VZfER-uDw_SSGupo,11005
164
164
  alita_sdk/tools/carrier/backend_tests_tool.py,sha256=arq275qiP9t3ST-MPn7FlxbLLSPiIGEnyPdgJ-AvOoQ,5917
@@ -195,7 +195,7 @@ alita_sdk/tools/chunkers/sematic/markdown_chunker.py,sha256=clmhRgewfBD-Ho1v0bSW
195
195
  alita_sdk/tools/chunkers/sematic/proposal_chunker.py,sha256=t8JjX9TH6yHXXaemiDK1E6000tlES2Kl8XfyezmlIoo,5116
196
196
  alita_sdk/tools/chunkers/sematic/statistical_chunker.py,sha256=VDQcMC-ky72GqdWJiHMmcRmfJTTU5XglBF1IWg2Qews,13403
197
197
  alita_sdk/tools/cloud/__init__.py,sha256=ekqANTJAyuURqpjNTn6MmSn2q6qEKwENxEXBUFGkkck,512
198
- alita_sdk/tools/cloud/aws/__init__.py,sha256=dpDwcRypj_oCx-LDfAjC9Q8JHYo0O52Jjohatf-gYxA,2703
198
+ alita_sdk/tools/cloud/aws/__init__.py,sha256=mhmsdTT6YiKUtKEg2GliAa7haup_YAZber76yQn3v28,3032
199
199
  alita_sdk/tools/cloud/aws/api_wrapper.py,sha256=uY4QfwgWud18kqSJc2WQV5V_5HYTvFRtR4ma4octP2U,1993
200
200
  alita_sdk/tools/cloud/azure/__init__.py,sha256=u39sv031g4GAMGgopkJBTZ2i9UMjGAbC2b3cSOITtw0,2875
201
201
  alita_sdk/tools/cloud/azure/api_wrapper.py,sha256=neHpaxsE-BHU-qhMoMekLWPuZOj9d-ERAwfE3U-vzcU,4042
@@ -204,42 +204,42 @@ alita_sdk/tools/cloud/gcp/api_wrapper.py,sha256=cq6pT4khy_eYt8noqOjDDh4ZqaYk9sBM
204
204
  alita_sdk/tools/cloud/k8s/__init__.py,sha256=sUXRUc7Yj8AgNwDm1U6HWk5ZGPM3XM8PvI1K3XIJZ7o,2761
205
205
  alita_sdk/tools/cloud/k8s/api_wrapper.py,sha256=ZRtmlYND86SPLJcl9MiKFmlIPsXFlqBnvY0Unwqg0Bg,5535
206
206
  alita_sdk/tools/code/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
207
- alita_sdk/tools/code/linter/__init__.py,sha256=amBp-_gywxYDezKkblYg740CAZbMtMZNJfUkr-Qt8o8,1946
207
+ alita_sdk/tools/code/linter/__init__.py,sha256=SJPWxsSnoouuz5z2VBoVahhBkxcU0WmLdV5XRKbyoMc,2272
208
208
  alita_sdk/tools/code/linter/api_wrapper.py,sha256=wylpwhAw02Jt8L18CqBq2He5PbwIkxUPFTc3tQTdXMM,3865
209
209
  alita_sdk/tools/code/loaders/codesearcher.py,sha256=XoXXZtIQZhvjIwZlnl_4wVGHC-3saYzFo5oDR_Zh3EY,529
210
- alita_sdk/tools/code/sonar/__init__.py,sha256=L8Dnnalrn3LWjxDTECRCHFdQUsQi7lnjo44_91cqb5w,2703
210
+ alita_sdk/tools/code/sonar/__init__.py,sha256=u8wpgXJ_shToLl3G9-XEtGDor5dhmsnurIImh1-e-U0,3165
211
211
  alita_sdk/tools/code/sonar/api_wrapper.py,sha256=nNqxcWN_6W8c0ckj-Er9HkNuAdgQLoWBXh5UyzNutis,2653
212
- alita_sdk/tools/confluence/__init__.py,sha256=A998BDKhnfzpdF_knTd_ZbwdHmmg4MdDXoq3owbEZY4,5918
212
+ alita_sdk/tools/confluence/__init__.py,sha256=ySsU3XzjQhSdl-XG1z_9H-Vmie-kqIY4_4yvf1NPdXQ,6088
213
213
  alita_sdk/tools/confluence/api_wrapper.py,sha256=-0NYvc_vCdNYSVcBq3UP4YN5s3y7h78KhYABMWy3Hxw,72281
214
214
  alita_sdk/tools/confluence/loader.py,sha256=aHqgdIQMqkyRry8feHAhyd-a_ASEyW3JrV6epTRG6-c,9162
215
215
  alita_sdk/tools/confluence/utils.py,sha256=Lxo6dBD0OlvM4o0JuK6qeB_4LV9BptiwJA9e1vqNcDw,435
216
- alita_sdk/tools/custom_open_api/__init__.py,sha256=fLb8p7YVVPpTe2s90vjif2DxFYcVWs7JpSt-iHP-9ws,2292
216
+ alita_sdk/tools/custom_open_api/__init__.py,sha256=9aT5SPNPWcJC6jMZEM-3rUCXVULj_3-qJLQKmnreKNo,2537
217
217
  alita_sdk/tools/custom_open_api/api_wrapper.py,sha256=sDSFpvEqpSvXHGiBISdQQcUecfO3md-_F8hAi6p2dvg,4340
218
- alita_sdk/tools/elastic/__init__.py,sha256=Ft4TPJNWzT3kOZv4v4yKSkSjLm167EfCdBqJP17cryQ,2816
218
+ alita_sdk/tools/elastic/__init__.py,sha256=iwnSRppRpzvJ1da2K3Glu8Uu41MhBDCYbguboLkEbW0,2818
219
219
  alita_sdk/tools/elastic/api_wrapper.py,sha256=pl8CqQxteJAGwyOhMcld-ZgtOTFwwbv42OITQVe8rM0,1948
220
- alita_sdk/tools/figma/__init__.py,sha256=xkK7Yk9wfcJ1iVUc0U8SLwYe8ACLDmktejHf1i0-0z8,3930
220
+ alita_sdk/tools/figma/__init__.py,sha256=rtEebf9zj1zUD0bpkN-SupaYpjmHFM01gY8XZNE9TI0,4088
221
221
  alita_sdk/tools/figma/api_wrapper.py,sha256=G96pEp_qUOouwkM5xMqRg-Ywfx_kEey8NV8iO7YLodE,17190
222
- alita_sdk/tools/github/__init__.py,sha256=ySAseUI0dzSmPgV3_Yx9MDHy_yR90Qh402nkhdZ5b5U,6169
222
+ alita_sdk/tools/github/__init__.py,sha256=s-ejtyNXjQ3Wo-QhLMJkOSab-qY5ZJC6V_df0GuS3ro,6337
223
223
  alita_sdk/tools/github/api_wrapper.py,sha256=-98miPAF_JQMIEDT3g8KS6QJ7bHMUSlj4s38zXyFJ2M,8281
224
224
  alita_sdk/tools/github/github_client.py,sha256=grUumLCQAdwddy46AyjV9xyhT_Ml8qCjHl2XM4wNFsw,60876
225
225
  alita_sdk/tools/github/graphql_client_wrapper.py,sha256=d3AGjzLGH_hdQV2V8HeAX92dJ4dlnE5OXqUlCO_PBr0,71539
226
226
  alita_sdk/tools/github/schemas.py,sha256=mlJcz22nsBqS8f3jHIH0b1aE2_TRGoZbR0pmGHlXrvw,12004
227
227
  alita_sdk/tools/github/tool.py,sha256=Jnnv5lenV5ds8AAdyo2m8hSzyJ117HZBjzHC6T1ck-M,1037
228
228
  alita_sdk/tools/github/tool_prompts.py,sha256=y6ZW_FpUCE87Uop3WuQAZVRnzxO5t7xjBOI5bCqiluw,30194
229
- alita_sdk/tools/gitlab/__init__.py,sha256=Qy03t16dd6kCjQ_jqGi3TcAuZ38kuyItViC5-nyO80w,3444
229
+ alita_sdk/tools/gitlab/__init__.py,sha256=_nbp3tJviTZxfewyV3Hp9-TK1vCxTmqlxhpwv0f_x4Y,3602
230
230
  alita_sdk/tools/gitlab/api_wrapper.py,sha256=qE99QPNMZ1MKZZHpd8EVJ5SYQxbkA8CVaJ43BsCMIGc,18179
231
231
  alita_sdk/tools/gitlab/tools.py,sha256=X6nK3hHeC-LgnzGSajVjnRHu6GTQdTv6HCi2sbiS0P4,18136
232
232
  alita_sdk/tools/gitlab/utils.py,sha256=Z2XiqIg54ouqqt1to-geFybmkCb1I6bpE91wfnINH1I,2320
233
- alita_sdk/tools/gitlab_org/__init__.py,sha256=d330FkD28QmhzjO2WrkJbwFEE3nimLX8UTDarLA4LBk,3555
233
+ alita_sdk/tools/gitlab_org/__init__.py,sha256=_DJ5y92E6GuNBtCuaEZakGNInxbuFtvLYZMTMCDf3Js,3713
234
234
  alita_sdk/tools/gitlab_org/api_wrapper.py,sha256=WQr5HjxDV3Ry4vreIV67sHYesHmzreQ6teQ06Ub71Ms,28196
235
235
  alita_sdk/tools/gmail/__init__.py,sha256=RkVWqVT335tpSUEVZUWqqPYMOYnxjkPmkBKLYdkpKto,887
236
236
  alita_sdk/tools/gmail/gmail_wrapper.py,sha256=t0IYM3zb77Ub8o9kv6HugNm_OoG5tN9T730hYmY8F-c,1312
237
237
  alita_sdk/tools/gmail/utils.py,sha256=cu6pbSsyMIr1BQOSs9et1rbAkk-Z_u48PB9FtJwFhUs,448
238
- alita_sdk/tools/google_places/__init__.py,sha256=vGCIvKehhv0AdSnSzLnbpYZx0aBCx8DzUEwqminU3sQ,2648
238
+ alita_sdk/tools/google_places/__init__.py,sha256=mHKc7u9P2gqGDzqqJNQC9qiZYEm5gncnM_1XjtrM17o,3152
239
239
  alita_sdk/tools/google_places/api_wrapper.py,sha256=7nZly6nk4f4Tm7s2MVdnnwlb-1_WHRrDhyjDiqoyPjA,4674
240
- alita_sdk/tools/jira/__init__.py,sha256=p2FIQT9HVcdMvVWgAphRAlA16Qzw4ThiPLwgcrKNdyQ,4981
240
+ alita_sdk/tools/jira/__init__.py,sha256=rHfbnECLMCK0DvPvnYNKnz0ZalbpeLMXnsQl7hDuMcA,5151
241
241
  alita_sdk/tools/jira/api_wrapper.py,sha256=i0TIHhVnh44dAVTt6RWrZ4o9hyhSMfVkYtk6FB3D2zA,62035
242
- alita_sdk/tools/keycloak/__init__.py,sha256=zIl_gQpHc3DQprrVeRbVdstoREvfyAUb5sYvGe8fpeo,2991
242
+ alita_sdk/tools/keycloak/__init__.py,sha256=0WB9yXMUUAHQRni1ghDEmd7GYa7aJPsTVlZgMCM9cQ0,3050
243
243
  alita_sdk/tools/keycloak/api_wrapper.py,sha256=cOGr0f3S3-c6tRDBWI8wMnetjoNSxiV5rvC_0VHb8uw,3100
244
244
  alita_sdk/tools/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
245
245
  alita_sdk/tools/llm/img_utils.py,sha256=-DEdA9G7W3JNQdLK7HbptRlp0W6IVA1q2SCaxGRFS1M,1603
@@ -247,11 +247,11 @@ alita_sdk/tools/llm/llm_utils.py,sha256=v3_lWP_Nk6tJLkj0BYohOun0OWNfvzqLjPdPAMl-
247
247
  alita_sdk/tools/localgit/__init__.py,sha256=NScO0Eu-wl-rc63jjD5Qv1RXXB1qukSIJXx-yS_JQLI,2529
248
248
  alita_sdk/tools/localgit/local_git.py,sha256=gsAftNcK7nMCd8VsIkwDLs2SoG0MgpYdkQG5tmoynkA,18074
249
249
  alita_sdk/tools/localgit/tool.py,sha256=It_B24rMvFPurB355Oy5IShg2BsZTASsEoSS8hu2SXw,998
250
- alita_sdk/tools/ocr/__init__.py,sha256=LHo5zqBYm0eihRdHlANo_CAwE8f_ryB_cxy2FG6RPl0,3030
250
+ alita_sdk/tools/ocr/__init__.py,sha256=pvslKVXyJmK0q23FFDNieuc7RBIuzNXTjTNj-GqhGb0,3335
251
251
  alita_sdk/tools/ocr/api_wrapper.py,sha256=08UF8wj1sR8DcW0z16pw19bgLatLkBF8dySW-Ds8iRk,29649
252
252
  alita_sdk/tools/ocr/text_detection.py,sha256=1DBxt54r3_HdEi93QynSIVta3rH3UpIvy799TPtDTtk,23825
253
253
  alita_sdk/tools/openapi/__init__.py,sha256=eVFAR8BngaJaEMYhZZZcU5ZctTtAM1oyHx1P-YM3F1Q,4450
254
- alita_sdk/tools/pandas/__init__.py,sha256=5AZdTq8Ue4kHSuktUn2WhntE9f1-2hMSWBxaIav7XDs,2511
254
+ alita_sdk/tools/pandas/__init__.py,sha256=rGenKJH5b9__qM4GerpyLT5YEhNk7W1gA7gn6Zpew04,2748
255
255
  alita_sdk/tools/pandas/api_wrapper.py,sha256=froH0h7NPPyFUHWNioESzJ-PQQ522oBM7hNTMfh3qAw,11494
256
256
  alita_sdk/tools/pandas/dataframe/__init__.py,sha256=iOZRlYDEtwqg2MaYFFxETjN8yHAkUqSNe86cm6ao4LA,108
257
257
  alita_sdk/tools/pandas/dataframe/errors.py,sha256=MBzpi5e2p3lNKxiVadzuT5A_DwuTT8cpJ059rXsdabs,320
@@ -270,50 +270,50 @@ alita_sdk/tools/pandas/statsmodels/base_stats.py,sha256=jeKW1KfyaNi4M6wkru2iXHNr
270
270
  alita_sdk/tools/pandas/statsmodels/descriptive.py,sha256=APdofBnEiRhMrn6tLKwH076NPp5uHe8VwmblN3lQLfQ,10217
271
271
  alita_sdk/tools/pandas/statsmodels/hypothesis_testing.py,sha256=fdNAayMB3W7avMfKJCcbf2_P54vUXbq8KVebOB48348,10508
272
272
  alita_sdk/tools/pandas/statsmodels/regression.py,sha256=Y1pWK4u_qzrfA740K-FX0nZ5FREGGPk8mfvykPIYoiI,9164
273
- alita_sdk/tools/pptx/__init__.py,sha256=t-_JlOdrLmTbwMGGyoTest0a42hPYi6Wd46Zf44MPC8,3299
273
+ alita_sdk/tools/pptx/__init__.py,sha256=LNSTQk0BncfdWLXAOGX2WXezG3D4qSEuYwLpokmF9iM,3438
274
274
  alita_sdk/tools/pptx/pptx_wrapper.py,sha256=yyCYcTlIY976kJ4VfPo4dyxj4yeii9j9TWP6W8ZIpN8,29195
275
- alita_sdk/tools/qtest/__init__.py,sha256=DA5x6eZvOIM4u8I5ae27mMDYyaUwndBCSJ1QEs_vzIo,3410
275
+ alita_sdk/tools/qtest/__init__.py,sha256=yNQA5bGuVnR7RJ-IZoX4PCjYI_QTsVrxYCOnl5CrCVw,3661
276
276
  alita_sdk/tools/qtest/api_wrapper.py,sha256=cWXpmjjel9CYIXXjetJkARLYZXqvHufSghctTHN0ggc,22296
277
277
  alita_sdk/tools/qtest/tool.py,sha256=kKzNPS4fUC76WQQttQ6kdVANViHEvKE8Kf174MQiNYU,562
278
- alita_sdk/tools/rally/__init__.py,sha256=9GcZrYwzi2GlvzV8PhaDE0KzfqIPGVSfK0FTs0iQiZk,3946
278
+ alita_sdk/tools/rally/__init__.py,sha256=gw5EkDTeVQ77zGz7NSOkDuhycUpJ_DQC7g_bwwVn64k,4105
279
279
  alita_sdk/tools/rally/api_wrapper.py,sha256=mouzU6g0KML4UNapdk0k6Q0pU3MpJuWnNo71n9PSEHM,11752
280
- alita_sdk/tools/report_portal/__init__.py,sha256=eW4rEEnOBOLcmo1XtX9b4gQ7WrPnLcUyci4_rUIs7Kg,2846
280
+ alita_sdk/tools/report_portal/__init__.py,sha256=716wEBO8-acrdXIZuuzurAYSZMHjRSVKu_vVFzstz38,3064
281
281
  alita_sdk/tools/report_portal/api_wrapper.py,sha256=-xiCeWyAnvDa9qLZ2cUr_KCR3feZ-UzUFw1PabkhrPU,9512
282
282
  alita_sdk/tools/report_portal/report_portal_client.py,sha256=-wUDudCQJZCJ38LI2aApRFb-IQOD8bp_YmVUz3xubZ4,2812
283
- alita_sdk/tools/salesforce/__init__.py,sha256=9uHNLSsVlDzMUQi6DtUmfU8tgY1W3fm3xT3OsWoEQ60,2747
283
+ alita_sdk/tools/salesforce/__init__.py,sha256=dwkLuvxPbfLZV31c1GqlQcDlhaloJxQ2X3Dc4z5BUEc,3003
284
284
  alita_sdk/tools/salesforce/api_wrapper.py,sha256=kvl7WGzN8Kto5OSgm91AxMFmBFJHRhV_5aFwKWExFMM,9451
285
285
  alita_sdk/tools/salesforce/model.py,sha256=wzpbTdUx5mANApAZFQIKzq7xXtYBiiSlKvrTX4ySQS8,1887
286
- alita_sdk/tools/servicenow/__init__.py,sha256=OS2zOIr32NMimqU7YuFGi0Lhj0cRduowStJHJ12kk5w,4095
286
+ alita_sdk/tools/servicenow/__init__.py,sha256=sVDgpRsAH8po78XWrMNAPH8YZrBqDyUh2h-lnadNbm8,4267
287
287
  alita_sdk/tools/servicenow/api_wrapper.py,sha256=WpH-bBLGFdhehs4g-K-WAkNuaD1CSrwsDpdgB3RG53s,6120
288
288
  alita_sdk/tools/servicenow/servicenow_client.py,sha256=Rdqfu-ll-qbnclMzChLZBsfXRDzgoX_FdeI2WLApWxc,3269
289
- alita_sdk/tools/sharepoint/__init__.py,sha256=_EA2gcp8a8dxWU1tFkbRJ03LTY4ASYkPzdwSR3_XOF4,2786
289
+ alita_sdk/tools/sharepoint/__init__.py,sha256=HqKQDFboab1AYh20uJvHxs9HFLJSqVfVTjpX9sfOP-8,2995
290
290
  alita_sdk/tools/sharepoint/api_wrapper.py,sha256=qCHCIH4FRDtgdpIK22ewFhZJeOaTv9hT9BVivslxxlE,7119
291
291
  alita_sdk/tools/sharepoint/authorization_helper.py,sha256=n-nL5dlBoLMK70nHu7P2RYCb8C6c9HMA_gEaw8LxuhE,2007
292
292
  alita_sdk/tools/sharepoint/utils.py,sha256=fZ1YzAu5CTjKSZeslowpOPH974902S8vCp1Wu7L44LM,446
293
- alita_sdk/tools/sql/__init__.py,sha256=9IA9ZJ1uYQqUvMsGkqNU37MDBZxFydpoGrTUbVRrr_c,3153
293
+ alita_sdk/tools/sql/__init__.py,sha256=9Lh8YHKO8zD5eeolpR4O9swTUsjpXj9LVDn8fM-T5IM,3506
294
294
  alita_sdk/tools/sql/api_wrapper.py,sha256=Rky0_CX9HWDQ2mClHGAgP3LHjYVX4iymPuilZMtaDlQ,3687
295
295
  alita_sdk/tools/sql/models.py,sha256=AKJgSl_kEEz4fZfw3kbvdGHXaRZ-yiaqfJOB6YOj3i0,641
296
- alita_sdk/tools/testio/__init__.py,sha256=Uf1H-xzycJ4s3hixoFNCLJ1tZ6g2tVjIXvUp2OVyV08,2405
296
+ alita_sdk/tools/testio/__init__.py,sha256=qi12wyJXN02hrUXg08CbijcCL5pi30JMbJfiXjn1Zr0,2646
297
297
  alita_sdk/tools/testio/api_wrapper.py,sha256=BvmL5h634BzG6p7ajnQLmj-uoAw1gjWnd4FHHu1h--Q,21638
298
- alita_sdk/tools/testrail/__init__.py,sha256=daGuAu_TGtnTKSfNVs_tdaVVV7A6KeHhSFgO67sxhc0,3454
298
+ alita_sdk/tools/testrail/__init__.py,sha256=83G9oS2fSiATLnW9783LqdoDyubgnmABEk-1hQcsTGE,3805
299
299
  alita_sdk/tools/testrail/api_wrapper.py,sha256=QkF1j2QIdtqeWUZB0GYtdmKATu0gPTQVmM5faK-ASaI,24495
300
300
  alita_sdk/tools/utils/__init__.py,sha256=155xepXPr4OEzs2Mz5YnjXcBpxSv1X2eznRUVoPtyK0,3268
301
301
  alita_sdk/tools/utils/content_parser.py,sha256=-87Lrl3_50YFFxf6pcIWwyMwEC8tomgcg2qk15urem4,4262
302
- alita_sdk/tools/xray/__init__.py,sha256=oUfftnU4h7rU_52P2oTJ0H8lXqkOEYysutOe-kVVFOs,2939
302
+ alita_sdk/tools/xray/__init__.py,sha256=dn-Ine9mHF8c_yZ-pWkn-gvSvSmGwdrqxPJOz6Cmqc4,3297
303
303
  alita_sdk/tools/xray/api_wrapper.py,sha256=l7Cwvh_5bEaH0IM3yLo1PSClqV1E20wH_sEHaJntM3s,8517
304
304
  alita_sdk/tools/yagmail/__init__.py,sha256=c4Qn3em0tLxzRmFKpzbBgY9W2EnOoKf0azoDJHng5CY,2208
305
305
  alita_sdk/tools/yagmail/yagmail_wrapper.py,sha256=SKoGVd1X4Ew3ad5tOdtPoY00M6jStNdT3q7GXEjQc5g,1952
306
306
  alita_sdk/tools/zephyr/Zephyr.py,sha256=ODZbg9Aw0H0Rbv-HcDXLI4KHbPiLDHoteDofshw9A_k,1508
307
- alita_sdk/tools/zephyr/__init__.py,sha256=ZmErnXMC_Fg_RG5StAVbic5ipeVKMG-Sn2scttLwSnw,2606
307
+ alita_sdk/tools/zephyr/__init__.py,sha256=8B2Ibz5QTmB5WkV0q8Sq4kuj92FFaFWZLrT877zRRLg,2897
308
308
  alita_sdk/tools/zephyr/api_wrapper.py,sha256=lJCYPG03ej0qgdpLflnS7LFB4HSAfGzIvTjAJt07CQs,6244
309
309
  alita_sdk/tools/zephyr/rest_client.py,sha256=7vSD3oYIX-3KbAFed-mphSQif_VRuXrq5O07ryNQ7Pk,6208
310
- alita_sdk/tools/zephyr_enterprise/__init__.py,sha256=heNLTQMfxudjco5Wto1lFbM_5zXboJwYeQXj0xqAeFY,2593
310
+ alita_sdk/tools/zephyr_enterprise/__init__.py,sha256=y9KDJS3E3D22xc0l08AUuhmGSjS6195XKrSlrDrJ-Zs,2807
311
311
  alita_sdk/tools/zephyr_enterprise/api_wrapper.py,sha256=Ir3zHljhbZQJRJJQOBzS_GL5xvxb3-Vq5VF8XIMkxck,9348
312
312
  alita_sdk/tools/zephyr_enterprise/zephyr_enterprise.py,sha256=hV9LIrYfJT6oYp-ZfQR0YHflqBFPsUw2Oc55HwK0H48,6809
313
- alita_sdk/tools/zephyr_scale/__init__.py,sha256=whQzAZmMNcPVPMb8wLgtv5rHpaedqZASFjrK0_sleZQ,4407
313
+ alita_sdk/tools/zephyr_scale/__init__.py,sha256=2NTcdrfkx4GSegqyXhsPLsEpc4FlACuDy85b0fk6cAo,4572
314
314
  alita_sdk/tools/zephyr_scale/api_wrapper.py,sha256=UHVQUVqcBc3SZvDfO78HSuBzwAsRw2cCDQa-xMOzndE,68663
315
- alita_sdk-0.3.145.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
316
- alita_sdk-0.3.145.dist-info/METADATA,sha256=WeAjA1KYcb2YAIwMT-MdQi4EdWylK8Jb6NEUHDpl_1s,11052
317
- alita_sdk-0.3.145.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
318
- alita_sdk-0.3.145.dist-info/top_level.txt,sha256=0vJYy5p_jK6AwVb1aqXr7Kgqgk3WDtQ6t5C-XI9zkmg,10
319
- alita_sdk-0.3.145.dist-info/RECORD,,
315
+ alita_sdk-0.3.147.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
316
+ alita_sdk-0.3.147.dist-info/METADATA,sha256=heNiiswu9vSjcZ3RiiOKYhgTyJLSUXYA0nW8dYeskWc,18231
317
+ alita_sdk-0.3.147.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
318
+ alita_sdk-0.3.147.dist-info/top_level.txt,sha256=0vJYy5p_jK6AwVb1aqXr7Kgqgk3WDtQ6t5C-XI9zkmg,10
319
+ alita_sdk-0.3.147.dist-info/RECORD,,