alita-sdk 0.3.189__py3-none-any.whl → 0.3.191__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.
- alita_sdk/tools/ado/test_plan/test_plan_wrapper.py +1 -4
- alita_sdk/tools/ado/wiki/__init__.py +1 -1
- alita_sdk/tools/ado/work_item/__init__.py +1 -1
- alita_sdk/tools/elitea_base.py +4 -0
- {alita_sdk-0.3.189.dist-info → alita_sdk-0.3.191.dist-info}/METADATA +1 -1
- {alita_sdk-0.3.189.dist-info → alita_sdk-0.3.191.dist-info}/RECORD +9 -9
- {alita_sdk-0.3.189.dist-info → alita_sdk-0.3.191.dist-info}/WHEEL +0 -0
- {alita_sdk-0.3.189.dist-info → alita_sdk-0.3.191.dist-info}/licenses/LICENSE +0 -0
- {alita_sdk-0.3.189.dist-info → alita_sdk-0.3.191.dist-info}/top_level.txt +0 -0
@@ -116,7 +116,6 @@ TestCasesCreateModel = create_model(
|
|
116
116
|
Input format:
|
117
117
|
[
|
118
118
|
{'{'}
|
119
|
-
project: str
|
120
119
|
plan_id: str
|
121
120
|
suite_id: str
|
122
121
|
title: str
|
@@ -127,7 +126,6 @@ TestCasesCreateModel = create_model(
|
|
127
126
|
...
|
128
127
|
]
|
129
128
|
Where:
|
130
|
-
project - Project ID or project name;
|
131
129
|
plan_id - ID of the test plan to which test cases are to be added;
|
132
130
|
suite_id - ID of the test suite to which test cases are to be added
|
133
131
|
title - Test case title;
|
@@ -263,7 +261,6 @@ class TestPlanApiWrapper(BaseToolApiWrapper):
|
|
263
261
|
"""Creates new test cases in specified suite in Azure DevOps."""
|
264
262
|
test_cases = json.loads(create_test_cases_parameters)
|
265
263
|
return [self.create_test_case(
|
266
|
-
project=test_case['project'],
|
267
264
|
plan_id=test_case['plan_id'],
|
268
265
|
suite_id=test_case['suite_id'],
|
269
266
|
title=test_case['title'],
|
@@ -289,7 +286,7 @@ class TestPlanApiWrapper(BaseToolApiWrapper):
|
|
289
286
|
"""
|
290
287
|
:param title: test title
|
291
288
|
:param description: test description
|
292
|
-
:param
|
289
|
+
:param steps_xml: steps xml
|
293
290
|
:return: JSON with ADO fields
|
294
291
|
"""
|
295
292
|
return {
|
@@ -27,7 +27,7 @@ class AzureDevOpsWikiToolkit(BaseToolkit):
|
|
27
27
|
),
|
28
28
|
organization_url=(str, Field(title="Organization URL",
|
29
29
|
description="ADO organization url")),
|
30
|
-
project=(str, Field(description="ADO project"
|
30
|
+
project=(str, Field(description="ADO project")),
|
31
31
|
token=(SecretStr, Field(description="ADO token", json_schema_extra={'secret': True})),
|
32
32
|
selected_tools=(List[Literal[tuple(selected_tools)]],
|
33
33
|
Field(default=[], json_schema_extra={'args_schemas': selected_tools})),
|
@@ -26,7 +26,7 @@ class AzureDevOpsWorkItemsToolkit(BaseToolkit):
|
|
26
26
|
),
|
27
27
|
organization_url=(str, Field(title="Organization URL",
|
28
28
|
description="ADO organization url")),
|
29
|
-
project=(str, Field(description="ADO project"
|
29
|
+
project=(str, Field(description="ADO project")),
|
30
30
|
token=(SecretStr, Field(description="ADO token", json_schema_extra={'secret': True})),
|
31
31
|
limit=(Optional[int], Field(description="ADO plans limit used for limitation of the list with results", default=5)),
|
32
32
|
selected_tools=(List[Literal[tuple(selected_tools)]], Field(default=[], json_schema_extra={'args_schemas': selected_tools})),
|
alita_sdk/tools/elitea_base.py
CHANGED
@@ -310,18 +310,21 @@ class BaseVectorStoreToolApiWrapper(BaseToolApiWrapper):
|
|
310
310
|
return [
|
311
311
|
{
|
312
312
|
"name": "search_index",
|
313
|
+
"mode": "search_index",
|
313
314
|
"ref": self.search_index,
|
314
315
|
"description": self.search_index.__doc__,
|
315
316
|
"args_schema": BaseSearchParams
|
316
317
|
},
|
317
318
|
{
|
318
319
|
"name": "stepback_search_index",
|
320
|
+
"mode": "stepback_search_index",
|
319
321
|
"ref": self.stepback_search_index,
|
320
322
|
"description": self.stepback_search_index.__doc__,
|
321
323
|
"args_schema": BaseStepbackSearchParams
|
322
324
|
},
|
323
325
|
{
|
324
326
|
"name": "stepback_summary_index",
|
327
|
+
"mode": "stepback_summary_index",
|
325
328
|
"ref": self.stepback_summary_index,
|
326
329
|
"description": self.stepback_summary_index.__doc__,
|
327
330
|
"args_schema": BaseStepbackSearchParams
|
@@ -437,6 +440,7 @@ class BaseCodeToolApiWrapper(BaseVectorStoreToolApiWrapper):
|
|
437
440
|
# Add the index_data tool specific to code toolkits
|
438
441
|
index_tool = {
|
439
442
|
"name": "index_data",
|
443
|
+
"mode": "index_data",
|
440
444
|
"ref": self.index_data,
|
441
445
|
"description": self.index_data.__doc__,
|
442
446
|
"args_schema": BaseCodeIndexParams
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: alita_sdk
|
3
|
-
Version: 0.3.
|
3
|
+
Version: 0.3.191
|
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
|
@@ -99,16 +99,16 @@ alita_sdk/runtime/utils/save_dataframe.py,sha256=i-E1wp-t4wb17Zq3nA3xYwgSILjoXNi
|
|
99
99
|
alita_sdk/runtime/utils/streamlit.py,sha256=gRwsT4lv4kujQfNSQripMPe1ZbmjbHNLSraW3FmL-qA,85710
|
100
100
|
alita_sdk/runtime/utils/utils.py,sha256=dM8whOJAuFJFe19qJ69-FLzrUp6d2G-G6L7d4ss2XqM,346
|
101
101
|
alita_sdk/tools/__init__.py,sha256=UztP-wrR-MuJI2V0gcJzNoMhsNJV6mre07TJNPChAtM,10032
|
102
|
-
alita_sdk/tools/elitea_base.py,sha256=
|
102
|
+
alita_sdk/tools/elitea_base.py,sha256=p1xuAsCe3qUwsmmgp_rdi6QipGeOKXA8wdSwX4MRNk4,21292
|
103
103
|
alita_sdk/tools/ado/__init__.py,sha256=mD6GHcYMTtffPJkJvFPe2rzvye_IRmXmWfI7xYuZhO4,912
|
104
104
|
alita_sdk/tools/ado/utils.py,sha256=PTCludvaQmPLakF2EbCGy66Mro4-rjDtavVP-xcB2Wc,1252
|
105
105
|
alita_sdk/tools/ado/repos/__init__.py,sha256=bzVSEAPwBoH4sY3cNj5_FNXIC3yY8lkofaonNKhwhRk,6286
|
106
106
|
alita_sdk/tools/ado/repos/repos_wrapper.py,sha256=_OWKAls7VFfFtEPTwqj_DxE1MSvpC0ivxdTIULEz3Tk,48206
|
107
107
|
alita_sdk/tools/ado/test_plan/__init__.py,sha256=K-jhCT7D7bxXbiat3GCP_qDVg_ipcBlnh9r3JhmAubM,4408
|
108
|
-
alita_sdk/tools/ado/test_plan/test_plan_wrapper.py,sha256=
|
109
|
-
alita_sdk/tools/ado/wiki/__init__.py,sha256=
|
108
|
+
alita_sdk/tools/ado/test_plan/test_plan_wrapper.py,sha256=p1Mptd_1J6bmkyrvf2M-FB79s8THzEesBlfgaOnRXb8,18152
|
109
|
+
alita_sdk/tools/ado/wiki/__init__.py,sha256=yyqTlzc14TC9w9OapKAmTjrZSuwRpsIdMkV9HUZGRlI,4201
|
110
110
|
alita_sdk/tools/ado/wiki/ado_wrapper.py,sha256=l4bc2QoKSUXg9UqNcx0ylv7YL9JPPQd35Ti5MXyEgC4,12690
|
111
|
-
alita_sdk/tools/ado/work_item/__init__.py,sha256=
|
111
|
+
alita_sdk/tools/ado/work_item/__init__.py,sha256=0vaynh82-stscb-K9MJsPt1okOZ2h9O5pr7efJx3Kno,4299
|
112
112
|
alita_sdk/tools/ado/work_item/ado_wrapper.py,sha256=aLB-aSNQST0FCwP7I01OXanCpZHKVarZZB1u9j2H1LA,26253
|
113
113
|
alita_sdk/tools/advanced_jira_mining/__init__.py,sha256=pUTzECqGvYaR5qWY3JPUhrImrZgc7pCXuqSe5eWIE80,4604
|
114
114
|
alita_sdk/tools/advanced_jira_mining/data_mining_wrapper.py,sha256=nZPtuwVWp8VeHw1B8q9kdwf-6ZvHnlXTOGdcIMDkKpw,44211
|
@@ -297,8 +297,8 @@ alita_sdk/tools/zephyr_scale/api_wrapper.py,sha256=UHVQUVqcBc3SZvDfO78HSuBzwAsRw
|
|
297
297
|
alita_sdk/tools/zephyr_squad/__init__.py,sha256=rq4jOb3lRW2GXvAguk4H1KinO5f-zpygzhBJf-E1Ucw,2773
|
298
298
|
alita_sdk/tools/zephyr_squad/api_wrapper.py,sha256=iOMxyE7vOc_LwFB_nBMiSFXkNtvbptA4i-BrTlo7M0A,5854
|
299
299
|
alita_sdk/tools/zephyr_squad/zephyr_squad_cloud_client.py,sha256=IYUJoMFOMA70knLhLtAnuGoy3OK80RuqeQZ710oyIxE,3631
|
300
|
-
alita_sdk-0.3.
|
301
|
-
alita_sdk-0.3.
|
302
|
-
alita_sdk-0.3.
|
303
|
-
alita_sdk-0.3.
|
304
|
-
alita_sdk-0.3.
|
300
|
+
alita_sdk-0.3.191.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
301
|
+
alita_sdk-0.3.191.dist-info/METADATA,sha256=7-ulNxjrYbxmdKjgcTMdwamNuNbUTtHq-6Dcqth1WVM,18804
|
302
|
+
alita_sdk-0.3.191.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
303
|
+
alita_sdk-0.3.191.dist-info/top_level.txt,sha256=0vJYy5p_jK6AwVb1aqXr7Kgqgk3WDtQ6t5C-XI9zkmg,10
|
304
|
+
alita_sdk-0.3.191.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|