alita-sdk 0.3.251__py3-none-any.whl → 0.3.253__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/ado.py +1 -1
- alita_sdk/configurations/bitbucket.py +2 -2
- alita_sdk/configurations/confluence.py +3 -3
- alita_sdk/configurations/jira.py +1 -1
- alita_sdk/configurations/postman.py +1 -1
- alita_sdk/configurations/service_now.py +1 -1
- alita_sdk/configurations/slack.py +2 -6
- alita_sdk/configurations/xray.py +1 -1
- alita_sdk/configurations/zephyr.py +1 -1
- alita_sdk/tools/ado/repos/__init__.py +0 -11
- alita_sdk/tools/bitbucket/api_wrapper.py +3 -1
- alita_sdk/tools/confluence/__init__.py +1 -16
- alita_sdk/tools/elitea_base.py +2 -2
- {alita_sdk-0.3.251.dist-info → alita_sdk-0.3.253.dist-info}/METADATA +1 -1
- {alita_sdk-0.3.251.dist-info → alita_sdk-0.3.253.dist-info}/RECORD +18 -18
- {alita_sdk-0.3.251.dist-info → alita_sdk-0.3.253.dist-info}/WHEEL +0 -0
- {alita_sdk-0.3.251.dist-info → alita_sdk-0.3.253.dist-info}/licenses/LICENSE +0 -0
- {alita_sdk-0.3.251.dist-info → alita_sdk-0.3.253.dist-info}/top_level.txt +0 -0
alita_sdk/configurations/ado.py
CHANGED
@@ -30,7 +30,7 @@ class AdoReposConfiguration(BaseModel):
|
|
30
30
|
}
|
31
31
|
}
|
32
32
|
)
|
33
|
-
repository_id:
|
33
|
+
repository_id: str = Field(description="ADO repository ID")
|
34
34
|
|
35
35
|
ado_configuration: AdoConfiguration = Field(
|
36
36
|
default_factory=AdoConfiguration,
|
@@ -11,7 +11,7 @@ class BitbucketConfiguration(BaseModel):
|
|
11
11
|
"icon_url": "bitbucket-icon.svg",
|
12
12
|
"sections": {
|
13
13
|
"auth": {
|
14
|
-
"required":
|
14
|
+
"required": True,
|
15
15
|
"subsections": [
|
16
16
|
{
|
17
17
|
"name": "Username & Password",
|
@@ -27,6 +27,6 @@ class BitbucketConfiguration(BaseModel):
|
|
27
27
|
}
|
28
28
|
}
|
29
29
|
)
|
30
|
-
url: str = Field(description="Bitbucket URL")
|
30
|
+
url: Optional[str] = Field(description="Bitbucket URL", default="https://api.bitbucket.org/")
|
31
31
|
username: Optional[str] = Field(description="Bitbucket Username", default=None)
|
32
32
|
password: Optional[SecretStr] = Field(description="Bitbucket Password/App Password", default=None)
|
@@ -11,14 +11,14 @@ class ConfluenceConfiguration(BaseModel):
|
|
11
11
|
"icon_url": "confluence.svg",
|
12
12
|
"sections": {
|
13
13
|
"auth": {
|
14
|
-
"required":
|
14
|
+
"required": True,
|
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
|
]
|
alita_sdk/configurations/jira.py
CHANGED
@@ -11,14 +11,10 @@ class SlackConfiguration(BaseModel):
|
|
11
11
|
"icon_url": "slack.svg",
|
12
12
|
"sections": {
|
13
13
|
"auth": {
|
14
|
-
"required":
|
14
|
+
"required": True,
|
15
15
|
"subsections": [
|
16
16
|
{
|
17
|
-
"name": "
|
18
|
-
"fields": ["name"]
|
19
|
-
},
|
20
|
-
{
|
21
|
-
"name": "User Token",
|
17
|
+
"name": "Slack Token",
|
22
18
|
"fields": ["slack_token"]
|
23
19
|
}
|
24
20
|
]
|
alita_sdk/configurations/xray.py
CHANGED
@@ -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": {
|
@@ -65,8 +65,10 @@ class BitbucketAPIWrapper(BaseCodeToolApiWrapper):
|
|
65
65
|
"atlassian-python-api is not installed. "
|
66
66
|
"Please install it with `pip install atlassian-python-api`"
|
67
67
|
)
|
68
|
+
from langchain_core.utils import get_from_dict_or_env
|
69
|
+
url_value = get_from_dict_or_env(values, ["url"], "BITBUCKET_BASE_URL", default='https://api.bitbucket.org/')
|
68
70
|
cls._bitbucket = BitbucketCloudApi(
|
69
|
-
url=
|
71
|
+
url=url_value,
|
70
72
|
username=values['username'],
|
71
73
|
password=values['password'],
|
72
74
|
workspace=values['project'],
|
@@ -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(
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: alita_sdk
|
3
|
-
Version: 0.3.
|
3
|
+
Version: 0.3.253
|
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
|
@@ -2,26 +2,26 @@ alita_sdk/__init__.py,sha256=fxeNiqiVpIFAJls31Oomifyrtd5gT9iPUTdkWjDOB2Y,656
|
|
2
2
|
alita_sdk/community/__init__.py,sha256=8N7wWwPhoyOq3p8wlV3-pb3l3nJCR8TUrtV9iIPLU88,2523
|
3
3
|
alita_sdk/community/utils.py,sha256=lvuCJaNqVPHOORJV6kIPcXJcdprVW_TJvERtYAEgpjM,249
|
4
4
|
alita_sdk/configurations/__init__.py,sha256=684m4eHUoe4uyhSuLZsYKGVBW6zW0rpyqkShCHssqQU,3196
|
5
|
-
alita_sdk/configurations/ado.py,sha256=
|
5
|
+
alita_sdk/configurations/ado.py,sha256=JvjbfBXhNInxydCv5TSbBr5BKTDFgzTea65G7QadUDk,1165
|
6
6
|
alita_sdk/configurations/azure_search.py,sha256=PV2wMeNZI9XTN1nbrT0Li3xDAV7x8S9SJBoEKJqn_KY,809
|
7
7
|
alita_sdk/configurations/bigquery.py,sha256=-hG5HnNKhxeQKRy85V6cunTmQNUobbACNOg4Z1KPc-g,920
|
8
|
-
alita_sdk/configurations/bitbucket.py,sha256=
|
9
|
-
alita_sdk/configurations/confluence.py,sha256=
|
8
|
+
alita_sdk/configurations/bitbucket.py,sha256=gvAi5hyDPpJHKnLDZlD5kyyJhvInI6NoWDdPdy9HrMU,1253
|
9
|
+
alita_sdk/configurations/confluence.py,sha256=mAW2fgSEOg-BAV768Sc6b_EuRA3H5UL9xfqQ12Zh_w4,1421
|
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
|
13
13
|
alita_sdk/configurations/github.py,sha256=GSj6sA4f6SfW0ZpoHXKi5FzbPDC6wE1AlscwWqIPj14,1832
|
14
14
|
alita_sdk/configurations/gitlab.py,sha256=15tXlnFM3IQSUA10wy4tpfHC-dJIW-xYmHoSzoqRRc4,1077
|
15
|
-
alita_sdk/configurations/jira.py,sha256=
|
15
|
+
alita_sdk/configurations/jira.py,sha256=ASh8I2iVXzOOtwjRX7kYNllXpCXyAIxFMP_YD4Q0PTI,1379
|
16
16
|
alita_sdk/configurations/pgvector.py,sha256=P-Q07ocIg4CXN_7hUBDM6r9gN62XS1N2jyP79tM9Tig,500
|
17
|
-
alita_sdk/configurations/postman.py,sha256=
|
17
|
+
alita_sdk/configurations/postman.py,sha256=wEmbZxwJGKSmeOzNVgk4vWkme275m3PFfYu066-O2CM,1120
|
18
18
|
alita_sdk/configurations/qtest.py,sha256=LHM6RXxs_iSwSUdBjNXXVvqiiehT9fkBESE-ECDukt0,695
|
19
19
|
alita_sdk/configurations/rally.py,sha256=1rwYh7bVV3XXufWRuPbr3Gz6zVPnfbA42bJYvJYsY-o,1515
|
20
|
-
alita_sdk/configurations/service_now.py,sha256=
|
21
|
-
alita_sdk/configurations/slack.py,sha256=
|
20
|
+
alita_sdk/configurations/service_now.py,sha256=Y3EQx0DQmLDm0P7V997FV5DoPQprgJ3Mk-yJmE5rE3M,1196
|
21
|
+
alita_sdk/configurations/slack.py,sha256=fiKs04brkESygJg2EB1p6Dj1mkvKIKyuEozaueL_KMM,1150
|
22
22
|
alita_sdk/configurations/testrail.py,sha256=k0fPmHBIrWAfEKhrDdB9Rdirw-UFHFoXkRePyrsqcWI,725
|
23
|
-
alita_sdk/configurations/xray.py,sha256=
|
24
|
-
alita_sdk/configurations/zephyr.py,sha256=
|
23
|
+
alita_sdk/configurations/xray.py,sha256=xbydsVMqGJYVrNmg6bCr3uMxXVEPFtEhPovgWX6-6_Y,1141
|
24
|
+
alita_sdk/configurations/zephyr.py,sha256=ndqGYFy5OFxjoXB7DzC71rd5W6qGBGAlKMWoqT8TuNk,1653
|
25
25
|
alita_sdk/configurations/zephyr_enterprise.py,sha256=5W1QEcv62Y5Rk_kApI2QmOwvWZeEWMgO5xHOKLVmTm0,710
|
26
26
|
alita_sdk/runtime/__init__.py,sha256=4W0UF-nl3QF2bvET5lnah4o24CoTwSoKXhuN0YnwvEE,828
|
27
27
|
alita_sdk/runtime/clients/__init__.py,sha256=BdehU5GBztN1Qi1Wul0cqlU46FxUfMnI6Vq2Zd_oq1M,296
|
@@ -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
|
@@ -144,7 +144,7 @@ alita_sdk/tools/azure_ai/search/api_wrapper.py,sha256=E4p6HPDlwgxfT_i6cvg9rN4Vn_
|
|
144
144
|
alita_sdk/tools/base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
145
145
|
alita_sdk/tools/base/tool.py,sha256=-N27AodZS49vdPCgFkU-bFS9bxoPopZBnNrmwInx3d0,864
|
146
146
|
alita_sdk/tools/bitbucket/__init__.py,sha256=_ywYlgYoE6gtJlLR94MHcS4EPWIaCFU_Mxy2Iha8nCE,5385
|
147
|
-
alita_sdk/tools/bitbucket/api_wrapper.py,sha256=
|
147
|
+
alita_sdk/tools/bitbucket/api_wrapper.py,sha256=xKa2dQ-gw2YbLJx7P1xrc3JUfgBkXkMsEG-s0mzh3KI,11023
|
148
148
|
alita_sdk/tools/bitbucket/bitbucket_constants.py,sha256=UsbhQ1iEvrKoxceTFPWTYhaXS1zSxbmjs1TwY0-P4gw,462
|
149
149
|
alita_sdk/tools/bitbucket/cloud_api_wrapper.py,sha256=VELi65tLXvszwCGQSqVfyVal0ylx9DgAmAGpRQL_Zkg,15522
|
150
150
|
alita_sdk/tools/bitbucket/tools.py,sha256=zKBUq7t9zLa1EvhlVZzyVcZSvwvdcbtz0oslgPFZeeo,15307
|
@@ -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.253.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
337
|
+
alita_sdk-0.3.253.dist-info/METADATA,sha256=sOv_LdDPyuyBm4c-1hfZH1XG_V5-MeUIDuTJgmDX8Hk,18897
|
338
|
+
alita_sdk-0.3.253.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
339
|
+
alita_sdk-0.3.253.dist-info/top_level.txt,sha256=0vJYy5p_jK6AwVb1aqXr7Kgqgk3WDtQ6t5C-XI9zkmg,10
|
340
|
+
alita_sdk-0.3.253.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|