alita-sdk 0.3.250__py3-none-any.whl → 0.3.252__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/configurations/confluence.py +2 -2
- alita_sdk/tools/ado/repos/__init__.py +0 -11
- alita_sdk/tools/confluence/__init__.py +1 -16
- alita_sdk/tools/elitea_base.py +4 -4
- {alita_sdk-0.3.250.dist-info → alita_sdk-0.3.252.dist-info}/METADATA +1 -1
- {alita_sdk-0.3.250.dist-info → alita_sdk-0.3.252.dist-info}/RECORD +9 -9
- {alita_sdk-0.3.250.dist-info → alita_sdk-0.3.252.dist-info}/WHEEL +0 -0
- {alita_sdk-0.3.250.dist-info → alita_sdk-0.3.252.dist-info}/licenses/LICENSE +0 -0
- {alita_sdk-0.3.250.dist-info → alita_sdk-0.3.252.dist-info}/top_level.txt +0 -0
@@ -14,11 +14,11 @@ class ConfluenceConfiguration(BaseModel):
|
|
14
14
|
"required": False,
|
15
15
|
"subsections": [
|
16
16
|
{
|
17
|
-
"name": "
|
17
|
+
"name": "Basic",
|
18
18
|
"fields": ["username", "api_key"]
|
19
19
|
},
|
20
20
|
{
|
21
|
-
"name": "
|
21
|
+
"name": "Bearer",
|
22
22
|
"fields": ["token"]
|
23
23
|
}
|
24
24
|
]
|
@@ -60,17 +60,6 @@ class AzureDevOpsReposToolkit(BaseToolkit):
|
|
60
60
|
{
|
61
61
|
"label": "ADO repos",
|
62
62
|
"icon_url": "ado-repos-icon.svg",
|
63
|
-
"sections": {
|
64
|
-
"auth": {
|
65
|
-
"required": True,
|
66
|
-
"subsections": [
|
67
|
-
{
|
68
|
-
"name": "Token",
|
69
|
-
"fields": ["token"]
|
70
|
-
}
|
71
|
-
]
|
72
|
-
}
|
73
|
-
},
|
74
63
|
"categories": ["code repositories"],
|
75
64
|
"extra_categories": ["code", "repository", "version control"],
|
76
65
|
# "configuration_group": {
|
@@ -91,22 +91,7 @@ class ConfluenceToolkit(BaseToolkit):
|
|
91
91
|
'metadata': {
|
92
92
|
"label": "Confluence",
|
93
93
|
"icon_url": None,
|
94
|
-
"
|
95
|
-
"auth": {
|
96
|
-
"required": True,
|
97
|
-
"subsections": [
|
98
|
-
{
|
99
|
-
"name": "Bearer",
|
100
|
-
"fields": ["token"]
|
101
|
-
},
|
102
|
-
{
|
103
|
-
"name": "Basic",
|
104
|
-
"fields": ["username", "api_key"]
|
105
|
-
}
|
106
|
-
]
|
107
|
-
}
|
108
|
-
},
|
109
|
-
"categories": ["documentation"],
|
94
|
+
"categories": ["documentation"],
|
110
95
|
"extra_categories": ["confluence", "wiki", "knowledge base", "documentation", "atlassian"]
|
111
96
|
}
|
112
97
|
})
|
alita_sdk/tools/elitea_base.py
CHANGED
@@ -37,8 +37,8 @@ BaseCodeIndexParams = create_model(
|
|
37
37
|
"BaseCodeIndexParams",
|
38
38
|
collection_suffix=(str, Field(description="Suffix for collection name (max 7 characters) used to separate datasets", min_length=1, max_length=7)),
|
39
39
|
branch=(Optional[str], Field(description="Branch to index files from. Defaults to active branch if None.", default=None)),
|
40
|
-
whitelist=(Optional[List[str]], Field(description=
|
41
|
-
blacklist=(Optional[List[str]], Field(description=
|
40
|
+
whitelist=(Optional[List[str]], Field(description='File extensions or paths to include. Defaults to all files if None. Example: ["*.md", "*.java"]', default=None)),
|
41
|
+
blacklist=(Optional[List[str]], Field(description='File extensions or paths to exclude. Defaults to no exclusions if None. Example: ["*.md", "*.java"]', default=None)),
|
42
42
|
)
|
43
43
|
|
44
44
|
RemoveIndexParams = create_model(
|
@@ -52,7 +52,7 @@ BaseSearchParams = create_model(
|
|
52
52
|
collection_suffix=(Optional[str], Field(
|
53
53
|
description="Optional suffix for collection name (max 7 characters). Leave empty to search across all datasets",
|
54
54
|
default="", max_length=7)),
|
55
|
-
filter=(Optional[dict
|
55
|
+
filter=(Optional[dict], Field(
|
56
56
|
description="Filter to apply to the search results. Can be a dictionary or a JSON string.",
|
57
57
|
default={},
|
58
58
|
examples=["{\"key\": \"value\"}", "{\"status\": \"active\"}"]
|
@@ -82,7 +82,7 @@ BaseStepbackSearchParams = create_model(
|
|
82
82
|
query=(str, Field(description="Query text to search in the index")),
|
83
83
|
collection_suffix=(Optional[str], Field(description="Optional suffix for collection name (max 7 characters)", default="", max_length=7)),
|
84
84
|
messages=(Optional[List], Field(description="Chat messages for stepback search context", default=[])),
|
85
|
-
filter=(Optional[dict
|
85
|
+
filter=(Optional[dict], Field(
|
86
86
|
description="Filter to apply to the search results. Can be a dictionary or a JSON string.",
|
87
87
|
default={},
|
88
88
|
examples=["{\"key\": \"value\"}", "{\"status\": \"active\"}"]
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: alita_sdk
|
3
|
-
Version: 0.3.
|
3
|
+
Version: 0.3.252
|
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=sP6eDLhEqr_u6CXm8Scx45rcn1wf-J_Y2fjkp5n58
|
|
6
6
|
alita_sdk/configurations/azure_search.py,sha256=PV2wMeNZI9XTN1nbrT0Li3xDAV7x8S9SJBoEKJqn_KY,809
|
7
7
|
alita_sdk/configurations/bigquery.py,sha256=-hG5HnNKhxeQKRy85V6cunTmQNUobbACNOg4Z1KPc-g,920
|
8
8
|
alita_sdk/configurations/bitbucket.py,sha256=iX0HAV_OJbgxitCVw5T_gJHOg7EAqHV2Ty8kwQA56L8,1206
|
9
|
-
alita_sdk/configurations/confluence.py,sha256=
|
9
|
+
alita_sdk/configurations/confluence.py,sha256=JgmI9oALfgMig-7LdFnNqbRuNpoIBRFyTGnJkm1Rf1M,1422
|
10
10
|
alita_sdk/configurations/delta_lake.py,sha256=ADWcjabi7Krq2yxIpoc_tmhdncdgot2GBphE7ziDeTY,1133
|
11
11
|
alita_sdk/configurations/embedding.py,sha256=8GSC8Feh8CH7bT_6cQhNqlS6raE91S2YRAtb2N9bUA8,552
|
12
12
|
alita_sdk/configurations/figma.py,sha256=vecZ20IyZgnFO2GdphkovYHMISRPcUYh7fxkUQsPwX8,1306
|
@@ -119,11 +119,11 @@ alita_sdk/runtime/utils/toolkit_utils.py,sha256=I9QFqnaqfVgN26LUr6s3XlBlG6y0CoHU
|
|
119
119
|
alita_sdk/runtime/utils/utils.py,sha256=CpEl3LCeLbhzQySz08lkKPm7Auac6IiLF7WB8wmArMI,589
|
120
120
|
alita_sdk/tools/__init__.py,sha256=ko5TToGYZFmBrho26DRAVvrkHWxQ2sfs8gVAASinYp8,10611
|
121
121
|
alita_sdk/tools/base_indexer_toolkit.py,sha256=qQfMHzsQ2BfusKMV_DNiHOtZVheiQ4gBfy5JXjYi0UY,20231
|
122
|
-
alita_sdk/tools/elitea_base.py,sha256=
|
122
|
+
alita_sdk/tools/elitea_base.py,sha256=qXSrl0A8KxIuv6796bTkjPpxBm4WQ5zmpskIAwCFfC8,30394
|
123
123
|
alita_sdk/tools/non_code_indexer_toolkit.py,sha256=v9uq1POE1fQKCd152mbqDtF-HSe0qoDj83k4E5LAkMI,1080
|
124
124
|
alita_sdk/tools/ado/__init__.py,sha256=bArTObt5cqG1SkijKevWGbsIILHBA3aCStg8Q1jd69k,1243
|
125
125
|
alita_sdk/tools/ado/utils.py,sha256=PTCludvaQmPLakF2EbCGy66Mro4-rjDtavVP-xcB2Wc,1252
|
126
|
-
alita_sdk/tools/ado/repos/__init__.py,sha256=
|
126
|
+
alita_sdk/tools/ado/repos/__init__.py,sha256=zPLrWuAZamPrcUStOYHwWb-_Cvq6qm2JOwbn4Nnog2w,5374
|
127
127
|
alita_sdk/tools/ado/repos/repos_wrapper.py,sha256=nPVsS10Se52yHmZ_YXVGywCSaYLlBEYBTBlhBcDJr80,50143
|
128
128
|
alita_sdk/tools/ado/test_plan/__init__.py,sha256=4fEw_3cm4shuZ868HhAU-uMH3xNXPyb3uRjyNWoBKls,5243
|
129
129
|
alita_sdk/tools/ado/test_plan/test_plan_wrapper.py,sha256=jQt8kFmdAzsopjByLTMiSnWtoqz_IUOmYkhPTVGeMnU,20265
|
@@ -211,7 +211,7 @@ alita_sdk/tools/code/linter/api_wrapper.py,sha256=wylpwhAw02Jt8L18CqBq2He5PbwIkx
|
|
211
211
|
alita_sdk/tools/code/loaders/codesearcher.py,sha256=XoXXZtIQZhvjIwZlnl_4wVGHC-3saYzFo5oDR_Zh3EY,529
|
212
212
|
alita_sdk/tools/code/sonar/__init__.py,sha256=u8wpgXJ_shToLl3G9-XEtGDor5dhmsnurIImh1-e-U0,3165
|
213
213
|
alita_sdk/tools/code/sonar/api_wrapper.py,sha256=nNqxcWN_6W8c0ckj-Er9HkNuAdgQLoWBXh5UyzNutis,2653
|
214
|
-
alita_sdk/tools/confluence/__init__.py,sha256=
|
214
|
+
alita_sdk/tools/confluence/__init__.py,sha256=xLsxdBZ62NL0k9NxaV4KnspwmDcucQzcl-tAaz7eLB8,6562
|
215
215
|
alita_sdk/tools/confluence/api_wrapper.py,sha256=4WqjVeFWyFeb4-VD5v4_J69pbyjire4Op7cBSKU9EXw,85057
|
216
216
|
alita_sdk/tools/confluence/loader.py,sha256=4bf5qrJMEiJzuZp2NlxO2XObLD1w7fxss_WyMUpe8sg,9290
|
217
217
|
alita_sdk/tools/confluence/utils.py,sha256=Lxo6dBD0OlvM4o0JuK6qeB_4LV9BptiwJA9e1vqNcDw,435
|
@@ -333,8 +333,8 @@ alita_sdk/tools/zephyr_scale/api_wrapper.py,sha256=JAeWf-RXohsxheUpT0iMDClc_izj-
|
|
333
333
|
alita_sdk/tools/zephyr_squad/__init__.py,sha256=0AI_j27xVO5Gk5HQMFrqPTd4uvuVTpiZUicBrdfEpKg,2796
|
334
334
|
alita_sdk/tools/zephyr_squad/api_wrapper.py,sha256=kmw_xol8YIYFplBLWTqP_VKPRhL_1ItDD0_vXTe_UuI,14906
|
335
335
|
alita_sdk/tools/zephyr_squad/zephyr_squad_cloud_client.py,sha256=R371waHsms4sllHCbijKYs90C-9Yu0sSR3N4SUfQOgU,5066
|
336
|
-
alita_sdk-0.3.
|
337
|
-
alita_sdk-0.3.
|
338
|
-
alita_sdk-0.3.
|
339
|
-
alita_sdk-0.3.
|
340
|
-
alita_sdk-0.3.
|
336
|
+
alita_sdk-0.3.252.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
337
|
+
alita_sdk-0.3.252.dist-info/METADATA,sha256=cjq5dRUI9GInG6Gl604MS3ZAOXkIJjVjg4Pv4is04L0,18897
|
338
|
+
alita_sdk-0.3.252.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
339
|
+
alita_sdk-0.3.252.dist-info/top_level.txt,sha256=0vJYy5p_jK6AwVb1aqXr7Kgqgk3WDtQ6t5C-XI9zkmg,10
|
340
|
+
alita_sdk-0.3.252.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|