alita-sdk 0.3.244__py3-none-any.whl → 0.3.246__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/__init__.py +2 -0
- alita_sdk/configurations/figma.py +38 -0
- alita_sdk/configurations/rally.py +39 -0
- alita_sdk/tools/figma/__init__.py +6 -19
- alita_sdk/tools/gitlab/__init__.py +0 -11
- alita_sdk/tools/gitlab_org/__init__.py +15 -17
- alita_sdk/tools/rally/__init__.py +10 -24
- {alita_sdk-0.3.244.dist-info → alita_sdk-0.3.246.dist-info}/METADATA +1 -1
- {alita_sdk-0.3.244.dist-info → alita_sdk-0.3.246.dist-info}/RECORD +12 -10
- {alita_sdk-0.3.244.dist-info → alita_sdk-0.3.246.dist-info}/WHEEL +0 -0
- {alita_sdk-0.3.244.dist-info → alita_sdk-0.3.246.dist-info}/licenses/LICENSE +0 -0
- {alita_sdk-0.3.244.dist-info → alita_sdk-0.3.246.dist-info}/top_level.txt +0 -0
@@ -39,6 +39,8 @@ _safe_import_configuration('azure_search', 'azure_search', 'AzureSearchConfigura
|
|
39
39
|
_safe_import_configuration('delta_lake', 'delta_lake', 'DeltaLakeConfiguration')
|
40
40
|
_safe_import_configuration('bigquery', 'bigquery', 'BigQueryConfiguration')
|
41
41
|
_safe_import_configuration('embedding', 'embedding', 'EmbeddingConfiguration')
|
42
|
+
_safe_import_configuration('figma', 'figma', 'FigmaConfiguration')
|
43
|
+
_safe_import_configuration('rally', 'rally', 'RallyConfiguration')
|
42
44
|
|
43
45
|
# Log import summary
|
44
46
|
available_count = len(AVAILABLE_CONFIGURATIONS)
|
@@ -0,0 +1,38 @@
|
|
1
|
+
from typing import Optional
|
2
|
+
|
3
|
+
from pydantic import BaseModel, ConfigDict, Field, SecretStr
|
4
|
+
|
5
|
+
|
6
|
+
class FigmaConfiguration(BaseModel):
|
7
|
+
model_config = ConfigDict(
|
8
|
+
json_schema_extra={
|
9
|
+
"metadata": {
|
10
|
+
"label": "Figma",
|
11
|
+
"icon_url": "figma-icon.svg",
|
12
|
+
"sections": {
|
13
|
+
"auth": {
|
14
|
+
"required": True,
|
15
|
+
"subsections": [
|
16
|
+
{
|
17
|
+
"name": "Token",
|
18
|
+
"fields": ["token"]
|
19
|
+
},
|
20
|
+
{
|
21
|
+
"name": "Oath2",
|
22
|
+
"fields": ["oauth2"]
|
23
|
+
}
|
24
|
+
]
|
25
|
+
}
|
26
|
+
},
|
27
|
+
"section": "credentials",
|
28
|
+
"type": "figma",
|
29
|
+
"categories": ["other"],
|
30
|
+
"extra_categories": ["figma", "design", "ui/ux", "prototyping", "collaboration"],
|
31
|
+
}
|
32
|
+
}
|
33
|
+
)
|
34
|
+
url: str = Field(description="Testrail URL")
|
35
|
+
email: str = Field(description="TestRail Email")
|
36
|
+
password: SecretStr = Field(description="TestRail Password")
|
37
|
+
token: Optional[SecretStr] = Field(description="Figma Token", json_schema_extra={"secret": True}, default=None)
|
38
|
+
oauth2: Optional[SecretStr] = Field(description="OAuth2 Token", json_schema_extra={"secret": True}, default=None)
|
@@ -0,0 +1,39 @@
|
|
1
|
+
from typing import Optional
|
2
|
+
|
3
|
+
from pydantic import BaseModel, ConfigDict, Field, SecretStr
|
4
|
+
|
5
|
+
|
6
|
+
class RallyConfiguration(BaseModel):
|
7
|
+
model_config = ConfigDict(
|
8
|
+
json_schema_extra={
|
9
|
+
"metadata": {
|
10
|
+
"label": "Rally",
|
11
|
+
"icon_url": "rally.svg",
|
12
|
+
"sections": {
|
13
|
+
"auth": {
|
14
|
+
"required": True,
|
15
|
+
"subsections": [
|
16
|
+
{
|
17
|
+
"name": "Password",
|
18
|
+
"fields": ["username", "password"]
|
19
|
+
},
|
20
|
+
{
|
21
|
+
"name": "API Key",
|
22
|
+
"fields": ["api_key"]
|
23
|
+
}
|
24
|
+
]
|
25
|
+
}
|
26
|
+
},
|
27
|
+
"section": "credentials",
|
28
|
+
"type": "rally",
|
29
|
+
"categories": ["project management"],
|
30
|
+
"extra_categories": ["agile management", "test management", "scrum", "kanban"]
|
31
|
+
}
|
32
|
+
}
|
33
|
+
)
|
34
|
+
|
35
|
+
server: str = Field(description="Rally server url")
|
36
|
+
api_key: Optional[SecretStr] = Field(default=None, description="User's API key", json_schema_extra={'secret': True})
|
37
|
+
username: Optional[str] = Field(default=None, description="Username")
|
38
|
+
password: Optional[SecretStr] = Field(default=None, description="User's password",
|
39
|
+
json_schema_extra={'secret': True})
|
@@ -7,6 +7,7 @@ from ..base.tool import BaseAction
|
|
7
7
|
from .api_wrapper import FigmaApiWrapper, GLOBAL_LIMIT
|
8
8
|
from ..utils import clean_string, TOOLKIT_SPLITTER, get_max_toolkit_length
|
9
9
|
from ...configurations.embedding import EmbeddingConfiguration
|
10
|
+
from ...configurations.figma import FigmaConfiguration
|
10
11
|
from ...configurations.pgvector import PgVectorConfiguration
|
11
12
|
|
12
13
|
name = "figma"
|
@@ -16,8 +17,7 @@ def get_tools(tool):
|
|
16
17
|
FigmaToolkit()
|
17
18
|
.get_toolkit(
|
18
19
|
selected_tools=tool["settings"].get("selected_tools", []),
|
19
|
-
|
20
|
-
oauth2=tool["settings"].get("oauth2", None),
|
20
|
+
figma_configuration=tool['settings']['figma_configuration'],
|
21
21
|
global_limit=tool["settings"].get("global_limit", GLOBAL_LIMIT),
|
22
22
|
global_regexp=tool["settings"].get("global_regexp", None),
|
23
23
|
toolkit_name=tool.get('toolkit_name'),
|
@@ -47,14 +47,15 @@ class FigmaToolkit(BaseToolkit):
|
|
47
47
|
FigmaToolkit.toolkit_max_length = get_max_toolkit_length(selected_tools)
|
48
48
|
return create_model(
|
49
49
|
name,
|
50
|
-
token=(Optional[SecretStr], Field(description="Figma Token", json_schema_extra={"secret": True}, default=None)),
|
51
|
-
oauth2=(Optional[SecretStr], Field(description="OAuth2 Token", json_schema_extra={"secret": True}, default=None)),
|
52
50
|
global_limit=(Optional[int], Field(description="Global limit", default=GLOBAL_LIMIT)),
|
53
51
|
global_regexp=(Optional[str], Field(description="Global regex pattern", default=None)),
|
54
52
|
selected_tools=(
|
55
53
|
List[Literal[tuple(selected_tools)]],
|
56
54
|
Field(default=[], json_schema_extra={"args_schemas": selected_tools}),
|
57
55
|
),
|
56
|
+
# Figma configuration
|
57
|
+
figma_configuration=(Optional[FigmaConfiguration], Field(description="Figma configuration", json_schema_extra={'configuration_types': ['figma']})),
|
58
|
+
|
58
59
|
# indexer settings
|
59
60
|
pgvector_configuration=(Optional[PgVectorConfiguration], Field(description="PgVector Configuration", json_schema_extra={'configuration_types': ['pgvector']})),
|
60
61
|
|
@@ -68,21 +69,6 @@ class FigmaToolkit(BaseToolkit):
|
|
68
69
|
"label": "Figma",
|
69
70
|
"icon_url": "figma-icon.svg",
|
70
71
|
"max_length": FigmaToolkit.toolkit_max_length,
|
71
|
-
"sections": {
|
72
|
-
"auth": {
|
73
|
-
"required": True,
|
74
|
-
"subsections": [
|
75
|
-
{
|
76
|
-
"name": "Token",
|
77
|
-
"fields": ["token"]
|
78
|
-
},
|
79
|
-
{
|
80
|
-
"name": "Oath2",
|
81
|
-
"fields": ["oauth2"]
|
82
|
-
}
|
83
|
-
]
|
84
|
-
}
|
85
|
-
},
|
86
72
|
"categories": ["other"],
|
87
73
|
"extra_categories": ["figma", "design", "ui/ux", "prototyping", "collaboration"],
|
88
74
|
}
|
@@ -96,6 +82,7 @@ class FigmaToolkit(BaseToolkit):
|
|
96
82
|
selected_tools = []
|
97
83
|
wrapper_payload = {
|
98
84
|
**kwargs,
|
85
|
+
**kwargs.get('figma_configuration'),
|
99
86
|
**(kwargs.get('pgvector_configuration') or {}),
|
100
87
|
**(kwargs.get('embedding_configuration') or {}),
|
101
88
|
}
|
@@ -58,17 +58,6 @@ class AlitaGitlabToolkit(BaseToolkit):
|
|
58
58
|
'metadata': {
|
59
59
|
"label": "GitLab",
|
60
60
|
"icon_url": None,
|
61
|
-
"sections": {
|
62
|
-
"auth": {
|
63
|
-
"required": True,
|
64
|
-
"subsections": [
|
65
|
-
{
|
66
|
-
"name": "GitLab private token",
|
67
|
-
"fields": ["private_token"]
|
68
|
-
}
|
69
|
-
]
|
70
|
-
}
|
71
|
-
},
|
72
61
|
"categories": ["code repositories"],
|
73
62
|
"extra_categories": ["gitlab", "git", "repository", "code", "version control"],
|
74
63
|
}
|
@@ -5,16 +5,16 @@ from langchain_core.tools import BaseTool
|
|
5
5
|
from ..base.tool import BaseAction
|
6
6
|
from pydantic import create_model, BaseModel, ConfigDict, Field, SecretStr
|
7
7
|
from ..utils import clean_string, TOOLKIT_SPLITTER, get_max_toolkit_length
|
8
|
+
from ...configurations.gitlab import GitlabConfiguration
|
8
9
|
|
9
10
|
name = "gitlab_org"
|
10
11
|
|
11
12
|
def get_tools(tool):
|
12
13
|
return AlitaGitlabSpaceToolkit().get_toolkit(
|
13
14
|
selected_tools=tool['settings'].get('selected_tools', []),
|
14
|
-
|
15
|
+
gitlab_configuration=tool['settings']['gitlab_configuration'],
|
15
16
|
repositories=tool['settings'].get('repositories', ''),
|
16
17
|
branch=tool['settings']['branch'],
|
17
|
-
private_token=tool['settings']['private_token'],
|
18
18
|
toolkit_name=tool.get('toolkit_name')
|
19
19
|
).get_tools()
|
20
20
|
|
@@ -28,29 +28,22 @@ class AlitaGitlabSpaceToolkit(BaseToolkit):
|
|
28
28
|
AlitaGitlabSpaceToolkit.toolkit_max_length = get_max_toolkit_length(selected_tools)
|
29
29
|
return create_model(
|
30
30
|
name,
|
31
|
-
|
31
|
+
name=(str, Field(description="Toolkit name", json_schema_extra={'toolkit_name': True,
|
32
|
+
'max_toolkit_length': AlitaGitlabSpaceToolkit.toolkit_max_length})),
|
33
|
+
gitlab_configuration=(Optional[GitlabConfiguration], Field(description="GitLab configuration",
|
34
|
+
json_schema_extra={
|
35
|
+
'configuration_types': ['gitlab']})),
|
32
36
|
repositories=(str, Field(
|
33
37
|
description="List of comma separated repositories user plans to interact with. Leave it empty in case you pass it in instruction.",
|
34
38
|
default=''
|
35
39
|
)),
|
36
|
-
private_token=(SecretStr, Field(description="GitLab private token", json_schema_extra={'secret': True})),
|
37
40
|
branch=(str, Field(description="Main branch", default="main")),
|
38
|
-
selected_tools=(List[Literal[tuple(selected_tools)]],
|
41
|
+
selected_tools=(List[Literal[tuple(selected_tools)]],
|
42
|
+
Field(default=[], json_schema_extra={'args_schemas': selected_tools})),
|
39
43
|
__config__=ConfigDict(json_schema_extra={
|
40
44
|
'metadata': {
|
41
45
|
"label": "GitLab Org",
|
42
46
|
"icon_url": None,
|
43
|
-
"sections": {
|
44
|
-
"auth": {
|
45
|
-
"required": True,
|
46
|
-
"subsections": [
|
47
|
-
{
|
48
|
-
"name": "GitLab private token",
|
49
|
-
"fields": ["private_token"]
|
50
|
-
}
|
51
|
-
]
|
52
|
-
}
|
53
|
-
},
|
54
47
|
"categories": ["code repositories"],
|
55
48
|
"extra_categories": ["gitlab", "git", "repository", "code", "version control"],
|
56
49
|
}
|
@@ -61,7 +54,12 @@ class AlitaGitlabSpaceToolkit(BaseToolkit):
|
|
61
54
|
def get_toolkit(cls, selected_tools: list[str] | None = None, toolkit_name: Optional[str] = None, **kwargs):
|
62
55
|
if selected_tools is None:
|
63
56
|
selected_tools = []
|
64
|
-
|
57
|
+
wrapper_payload = {
|
58
|
+
**kwargs,
|
59
|
+
# TODO use gitlab_configuration fields
|
60
|
+
**kwargs['gitlab_configuration'],
|
61
|
+
}
|
62
|
+
gitlab_wrapper = GitLabWorkspaceAPIWrapper(**wrapper_payload)
|
65
63
|
prefix = clean_string(toolkit_name, AlitaGitlabSpaceToolkit.toolkit_max_length) + TOOLKIT_SPLITTER if toolkit_name else ''
|
66
64
|
available_tools = gitlab_wrapper.get_available_tools()
|
67
65
|
tools = []
|
@@ -5,16 +5,14 @@ from .api_wrapper import RallyApiWrapper
|
|
5
5
|
from langchain_core.tools import BaseTool
|
6
6
|
from ..base.tool import BaseAction
|
7
7
|
from ..utils import clean_string, TOOLKIT_SPLITTER, get_max_toolkit_length
|
8
|
+
from ...configurations.rally import RallyConfiguration
|
8
9
|
|
9
10
|
name = "rally"
|
10
11
|
|
11
12
|
def get_tools(tool):
|
12
13
|
return RallyToolkit().get_toolkit(
|
13
14
|
selected_tools=tool['settings'].get('selected_tools', []),
|
14
|
-
|
15
|
-
api_key=tool['settings'].get('api_key'),
|
16
|
-
username=tool['settings'].get('username'),
|
17
|
-
password=tool['settings'].get('password'),
|
15
|
+
rally_configuration=tool['settings']['rally_configuration'],
|
18
16
|
workspace=tool['settings'].get('workspace', None),
|
19
17
|
project=tool['settings'].get('project', None),
|
20
18
|
toolkit_name=tool.get('toolkit_name')
|
@@ -30,10 +28,9 @@ class RallyToolkit(BaseToolkit):
|
|
30
28
|
RallyToolkit.toolkit_max_length = get_max_toolkit_length(selected_tools)
|
31
29
|
return create_model(
|
32
30
|
name,
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
password=(Optional[SecretStr], Field(default=None, description="User's password", json_schema_extra={'secret': True})),
|
31
|
+
name=(str, Field(description="Toolkit name", json_schema_extra={'toolkit_name': True,
|
32
|
+
'max_toolkit_length': RallyToolkit.toolkit_max_length})),
|
33
|
+
rally_configuration=(Optional[RallyConfiguration], Field(description="Rally configuration", json_schema_extra={'configuration_types': ['rally']})),
|
37
34
|
workspace=(Optional[str], Field(default=None, description="Rally workspace")),
|
38
35
|
project=(Optional[str], Field(default=None, description="Rally project")),
|
39
36
|
selected_tools=(List[Literal[tuple(selected_tools)]], Field(default=[], json_schema_extra={'args_schemas': selected_tools})),
|
@@ -41,21 +38,6 @@ class RallyToolkit(BaseToolkit):
|
|
41
38
|
'metadata': {
|
42
39
|
"label": "Rally",
|
43
40
|
"icon_url": "rally.svg",
|
44
|
-
"sections": {
|
45
|
-
"auth": {
|
46
|
-
"required": True,
|
47
|
-
"subsections": [
|
48
|
-
{
|
49
|
-
"name": "Password",
|
50
|
-
"fields": ["username", "password"]
|
51
|
-
},
|
52
|
-
{
|
53
|
-
"name": "API Key",
|
54
|
-
"fields": ["api_key"]
|
55
|
-
}
|
56
|
-
]
|
57
|
-
}
|
58
|
-
},
|
59
41
|
"categories": ["project management"],
|
60
42
|
"extra_categories": ["agile management", "test management", "scrum", "kanban"]
|
61
43
|
}
|
@@ -66,7 +48,11 @@ class RallyToolkit(BaseToolkit):
|
|
66
48
|
def get_toolkit(cls, selected_tools: list[str] | None = None, toolkit_name: Optional[str] = None, **kwargs):
|
67
49
|
if selected_tools is None:
|
68
50
|
selected_tools = []
|
69
|
-
|
51
|
+
wrapper_payload = {
|
52
|
+
**kwargs,
|
53
|
+
**kwargs.get('rally_configuration'),
|
54
|
+
}
|
55
|
+
rally_api_wrapper = RallyApiWrapper(**wrapper_payload)
|
70
56
|
prefix = clean_string(toolkit_name, cls.toolkit_max_length) + TOOLKIT_SPLITTER if toolkit_name else ''
|
71
57
|
available_tools = rally_api_wrapper.get_available_tools()
|
72
58
|
tools = []
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: alita_sdk
|
3
|
-
Version: 0.3.
|
3
|
+
Version: 0.3.246
|
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
|
@@ -1,7 +1,7 @@
|
|
1
1
|
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
|
-
alita_sdk/configurations/__init__.py,sha256=
|
4
|
+
alita_sdk/configurations/__init__.py,sha256=jC-n6E7ygOxNmcIusE8R0iI5D5gaDWr4PROe0OHO8hw,3039
|
5
5
|
alita_sdk/configurations/ado.py,sha256=sP6eDLhEqr_u6CXm8Scx45rcn1wf-J_Y2fjkp5n582k,1189
|
6
6
|
alita_sdk/configurations/azure_search.py,sha256=PV2wMeNZI9XTN1nbrT0Li3xDAV7x8S9SJBoEKJqn_KY,809
|
7
7
|
alita_sdk/configurations/bigquery.py,sha256=-hG5HnNKhxeQKRy85V6cunTmQNUobbACNOg4Z1KPc-g,920
|
@@ -9,12 +9,14 @@ alita_sdk/configurations/bitbucket.py,sha256=iX0HAV_OJbgxitCVw5T_gJHOg7EAqHV2Ty8
|
|
9
9
|
alita_sdk/configurations/confluence.py,sha256=LFFjhp0whiWcAN-2DnOVSUnQmjURBmV4C4iDyKs7vys,1423
|
10
10
|
alita_sdk/configurations/delta_lake.py,sha256=ADWcjabi7Krq2yxIpoc_tmhdncdgot2GBphE7ziDeTY,1133
|
11
11
|
alita_sdk/configurations/embedding.py,sha256=8GSC8Feh8CH7bT_6cQhNqlS6raE91S2YRAtb2N9bUA8,552
|
12
|
+
alita_sdk/configurations/figma.py,sha256=UmnIKvC8G3hVvX47O-w_syiJwJAMn1LCmoZMWJTK40w,1473
|
12
13
|
alita_sdk/configurations/github.py,sha256=GSj6sA4f6SfW0ZpoHXKi5FzbPDC6wE1AlscwWqIPj14,1832
|
13
14
|
alita_sdk/configurations/gitlab.py,sha256=15tXlnFM3IQSUA10wy4tpfHC-dJIW-xYmHoSzoqRRc4,1077
|
14
15
|
alita_sdk/configurations/jira.py,sha256=OxvkJ7a_ig7DQGqpL8rSZod_lJzN25KFaJDRnjt2xPs,1380
|
15
16
|
alita_sdk/configurations/pgvector.py,sha256=P-Q07ocIg4CXN_7hUBDM6r9gN62XS1N2jyP79tM9Tig,500
|
16
17
|
alita_sdk/configurations/postman.py,sha256=IdLjfFDZqGuvIAnVDlQWeFm4VOC8viUMpKgWruYgDso,1121
|
17
18
|
alita_sdk/configurations/qtest.py,sha256=LHM6RXxs_iSwSUdBjNXXVvqiiehT9fkBESE-ECDukt0,695
|
19
|
+
alita_sdk/configurations/rally.py,sha256=1rwYh7bVV3XXufWRuPbr3Gz6zVPnfbA42bJYvJYsY-o,1515
|
18
20
|
alita_sdk/configurations/service_now.py,sha256=EXYrhXImaL5AT7zDJ244sVVf_0Vc-tHHIGdfRBo2XCg,1197
|
19
21
|
alita_sdk/configurations/slack.py,sha256=x-Hz_Uo1xXCtlpMfJUY39q9kXm5IB0IR9l4wSLAFnR0,1315
|
20
22
|
alita_sdk/configurations/testrail.py,sha256=k0fPmHBIrWAfEKhrDdB9Rdirw-UFHFoXkRePyrsqcWI,725
|
@@ -213,7 +215,7 @@ alita_sdk/tools/custom_open_api/__init__.py,sha256=9aT5SPNPWcJC6jMZEM-3rUCXVULj_
|
|
213
215
|
alita_sdk/tools/custom_open_api/api_wrapper.py,sha256=sDSFpvEqpSvXHGiBISdQQcUecfO3md-_F8hAi6p2dvg,4340
|
214
216
|
alita_sdk/tools/elastic/__init__.py,sha256=iwnSRppRpzvJ1da2K3Glu8Uu41MhBDCYbguboLkEbW0,2818
|
215
217
|
alita_sdk/tools/elastic/api_wrapper.py,sha256=pl8CqQxteJAGwyOhMcld-ZgtOTFwwbv42OITQVe8rM0,1948
|
216
|
-
alita_sdk/tools/figma/__init__.py,sha256=
|
218
|
+
alita_sdk/tools/figma/__init__.py,sha256=xaYyPdg9qZkp6y5h0EeOmyXqFznkRbLUSEg326Hwbbo,4763
|
217
219
|
alita_sdk/tools/figma/api_wrapper.py,sha256=Rtgt9FvR8VD0oPdYhlgvVyXLVqLTjtiOPTlwNeaV80w,20560
|
218
220
|
alita_sdk/tools/github/__init__.py,sha256=BEtPsqP-yuyt05pINlic2fJ41j_tx7OmGGqCN75kgEo,5406
|
219
221
|
alita_sdk/tools/github/api_wrapper.py,sha256=uDwYckdnpYRJtb0uZnDkaz2udvdDLVxuCh1tSwspsiU,8411
|
@@ -222,11 +224,11 @@ alita_sdk/tools/github/graphql_client_wrapper.py,sha256=d3AGjzLGH_hdQV2V8HeAX92d
|
|
222
224
|
alita_sdk/tools/github/schemas.py,sha256=yFsqivfjCPRk9GxFJrL8sTz6nnjFCZ0j5DIfPtGSsvA,13852
|
223
225
|
alita_sdk/tools/github/tool.py,sha256=Jnnv5lenV5ds8AAdyo2m8hSzyJ117HZBjzHC6T1ck-M,1037
|
224
226
|
alita_sdk/tools/github/tool_prompts.py,sha256=y6ZW_FpUCE87Uop3WuQAZVRnzxO5t7xjBOI5bCqiluw,30194
|
225
|
-
alita_sdk/tools/gitlab/__init__.py,sha256=
|
227
|
+
alita_sdk/tools/gitlab/__init__.py,sha256=JniVJI_lYC0OSrc2lES-pyZY4zw5zUR3nMA2NoOmNVU,4618
|
226
228
|
alita_sdk/tools/gitlab/api_wrapper.py,sha256=KYCRO2pF8EPTLhWuEj64XsHPCYSucsf8S3R_ofJttrA,22301
|
227
229
|
alita_sdk/tools/gitlab/tools.py,sha256=vOGTlSaGaFmWn6LS6YFP-FuTqUPun9vnv1VrUcUHAZQ,16500
|
228
230
|
alita_sdk/tools/gitlab/utils.py,sha256=Z2XiqIg54ouqqt1to-geFybmkCb1I6bpE91wfnINH1I,2320
|
229
|
-
alita_sdk/tools/gitlab_org/__init__.py,sha256=
|
231
|
+
alita_sdk/tools/gitlab_org/__init__.py,sha256=k8ECZzeGCmgKJ9UaVmPPlFxf-h1E6taC2SnPVrxPpHY,3775
|
230
232
|
alita_sdk/tools/gitlab_org/api_wrapper.py,sha256=RYt5gIZffpukKAvynCMgHbXJy8c8ABMbm56ZVPttCbU,30130
|
231
233
|
alita_sdk/tools/gmail/__init__.py,sha256=RkVWqVT335tpSUEVZUWqqPYMOYnxjkPmkBKLYdkpKto,887
|
232
234
|
alita_sdk/tools/gmail/gmail_wrapper.py,sha256=t0IYM3zb77Ub8o9kv6HugNm_OoG5tN9T730hYmY8F-c,1312
|
@@ -280,7 +282,7 @@ alita_sdk/tools/pptx/pptx_wrapper.py,sha256=yyCYcTlIY976kJ4VfPo4dyxj4yeii9j9TWP6
|
|
280
282
|
alita_sdk/tools/qtest/__init__.py,sha256=4vXCB9GSKNFeRTimSB7wklAnO-4reZgrw0Nw1_QuRKE,4070
|
281
283
|
alita_sdk/tools/qtest/api_wrapper.py,sha256=cWXpmjjel9CYIXXjetJkARLYZXqvHufSghctTHN0ggc,22296
|
282
284
|
alita_sdk/tools/qtest/tool.py,sha256=kKzNPS4fUC76WQQttQ6kdVANViHEvKE8Kf174MQiNYU,562
|
283
|
-
alita_sdk/tools/rally/__init__.py,sha256=
|
285
|
+
alita_sdk/tools/rally/__init__.py,sha256=JvLt_hW_hC1WiCcwBwi1TlOH7QudJpM2z7XXGWYVaqI,3423
|
284
286
|
alita_sdk/tools/rally/api_wrapper.py,sha256=mouzU6g0KML4UNapdk0k6Q0pU3MpJuWnNo71n9PSEHM,11752
|
285
287
|
alita_sdk/tools/report_portal/__init__.py,sha256=716wEBO8-acrdXIZuuzurAYSZMHjRSVKu_vVFzstz38,3064
|
286
288
|
alita_sdk/tools/report_portal/api_wrapper.py,sha256=-xiCeWyAnvDa9qLZ2cUr_KCR3feZ-UzUFw1PabkhrPU,9512
|
@@ -327,8 +329,8 @@ alita_sdk/tools/zephyr_scale/api_wrapper.py,sha256=JAeWf-RXohsxheUpT0iMDClc_izj-
|
|
327
329
|
alita_sdk/tools/zephyr_squad/__init__.py,sha256=0AI_j27xVO5Gk5HQMFrqPTd4uvuVTpiZUicBrdfEpKg,2796
|
328
330
|
alita_sdk/tools/zephyr_squad/api_wrapper.py,sha256=kmw_xol8YIYFplBLWTqP_VKPRhL_1ItDD0_vXTe_UuI,14906
|
329
331
|
alita_sdk/tools/zephyr_squad/zephyr_squad_cloud_client.py,sha256=R371waHsms4sllHCbijKYs90C-9Yu0sSR3N4SUfQOgU,5066
|
330
|
-
alita_sdk-0.3.
|
331
|
-
alita_sdk-0.3.
|
332
|
-
alita_sdk-0.3.
|
333
|
-
alita_sdk-0.3.
|
334
|
-
alita_sdk-0.3.
|
332
|
+
alita_sdk-0.3.246.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
333
|
+
alita_sdk-0.3.246.dist-info/METADATA,sha256=BIXd2N9XBcsMHRxhz70BPclMgN-V_tSki3y31i7MK2Q,18897
|
334
|
+
alita_sdk-0.3.246.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
335
|
+
alita_sdk-0.3.246.dist-info/top_level.txt,sha256=0vJYy5p_jK6AwVb1aqXr7Kgqgk3WDtQ6t5C-XI9zkmg,10
|
336
|
+
alita_sdk-0.3.246.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|