alita-sdk 0.3.128__py3-none-any.whl → 0.3.129__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/clients/client.py +1 -1
- alita_sdk/langchain/langraph_agent.py +2 -1
- alita_sdk/llms/alita.py +22 -3
- alita_sdk/tools/loop_output.py +2 -2
- alita_sdk/tools/tool.py +2 -2
- {alita_sdk-0.3.128.dist-info → alita_sdk-0.3.129.dist-info}/METADATA +2 -2
- {alita_sdk-0.3.128.dist-info → alita_sdk-0.3.129.dist-info}/RECORD +10 -10
- {alita_sdk-0.3.128.dist-info → alita_sdk-0.3.129.dist-info}/WHEEL +0 -0
- {alita_sdk-0.3.128.dist-info → alita_sdk-0.3.129.dist-info}/licenses/LICENSE +0 -0
- {alita_sdk-0.3.128.dist-info → alita_sdk-0.3.129.dist-info}/top_level.txt +0 -0
alita_sdk/clients/client.py
CHANGED
@@ -348,7 +348,7 @@ class AlitaClient:
|
|
348
348
|
response_data = response.json()
|
349
349
|
response_messages = []
|
350
350
|
for message in response_data['messages']:
|
351
|
-
if message.get('
|
351
|
+
if message.get('role') == 'user':
|
352
352
|
response_messages.append(HumanMessage(content=message['content']))
|
353
353
|
else:
|
354
354
|
response_messages.append(AIMessage(content=message['content']))
|
@@ -399,7 +399,8 @@ def create_graph(
|
|
399
399
|
input_variables=node.get('input', ['messages'])))
|
400
400
|
elif node_type == 'agent':
|
401
401
|
input_params = node.get('input', ['messages'])
|
402
|
-
input_mapping = {'task': {'type': 'fstring', 'value': f"{node.get('task', '')}"}
|
402
|
+
input_mapping = {'task': {'type': 'fstring', 'value': f"{node.get('task', '')}"},
|
403
|
+
'chat_history': {'type': 'fixed', 'value': []}}
|
403
404
|
# Add 'chat_history' to input_mapping only if 'messages' is in input_params
|
404
405
|
if 'messages' in input_params:
|
405
406
|
input_mapping['chat_history'] = {'type': 'variable', 'value': 'messages'}
|
alita_sdk/llms/alita.py
CHANGED
@@ -150,14 +150,33 @@ class AlitaChatModel(BaseChatModel):
|
|
150
150
|
logger.debug(f"message before getting to ChatGenerationChunk: {message}")
|
151
151
|
yield ChatGenerationChunk(message=message, generation_info=generation_info)
|
152
152
|
|
153
|
-
async def
|
153
|
+
async def _astream(
|
154
154
|
self,
|
155
155
|
messages: List[BaseMessage],
|
156
156
|
stop: Optional[List[str]] = None,
|
157
|
-
run_manager: Optional[
|
157
|
+
run_manager: Optional[AsyncCallbackManagerForLLMRun] = None,
|
158
158
|
**kwargs: Any,
|
159
159
|
) -> AsyncIterator[ChatGenerationChunk]:
|
160
|
-
|
160
|
+
iterator = await run_in_executor(
|
161
|
+
None,
|
162
|
+
self._stream,
|
163
|
+
messages,
|
164
|
+
stop,
|
165
|
+
run_manager.get_sync() if run_manager else None,
|
166
|
+
**kwargs,
|
167
|
+
)
|
168
|
+
done = object()
|
169
|
+
while True:
|
170
|
+
item: ChatGenerationChunk | object = await run_in_executor(
|
171
|
+
None,
|
172
|
+
next,
|
173
|
+
iterator,
|
174
|
+
done,
|
175
|
+
)
|
176
|
+
if item is done:
|
177
|
+
break
|
178
|
+
if isinstance(item, ChatGenerationChunk):
|
179
|
+
yield item
|
161
180
|
|
162
181
|
def _create_chat_result(self, response: list[BaseMessage]) -> ChatResult:
|
163
182
|
token_usage = 0
|
alita_sdk/tools/loop_output.py
CHANGED
@@ -39,8 +39,8 @@ Tool arguments schema:
|
|
39
39
|
"""
|
40
40
|
unstructured_output: str = """Expected output is JSON that to be used as a KWARGS for the tool call like {{"key": "value"}}
|
41
41
|
in case your key is "chat_history" value should be a list of messages with roles like {{"chat_history": [{{"role": "user", "content": "input"}}, {{"role": "assistant", "content": "output"}}]}}.
|
42
|
-
Tool won't have access to
|
43
|
-
|
42
|
+
Tool won't have access to conversation so all keys and values need to be actual and independent.
|
43
|
+
Answer must be JSON only extractable by JSON.LOADS."""
|
44
44
|
|
45
45
|
def invoke(
|
46
46
|
self,
|
alita_sdk/tools/tool.py
CHANGED
@@ -37,8 +37,8 @@ Tool arguments schema:
|
|
37
37
|
"""
|
38
38
|
unstructured_output: str = """Expected output is JSON that to be used as a KWARGS for the tool call like {{"key": "value"}}
|
39
39
|
in case your key is "chat_history" value should be a list of messages with roles like {{"chat_history": [{{"role": "user", "content": "input"}}, {{"role": "assistant", "content": "output"}}]}}.
|
40
|
-
Tool won't have access to
|
41
|
-
|
40
|
+
Tool won't have access to conversation so all keys and values need to be actual and independent.
|
41
|
+
Answer must be JSON only extractable by JSON.LOADS."""
|
42
42
|
|
43
43
|
def invoke(
|
44
44
|
self,
|
@@ -1,7 +1,7 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: alita_sdk
|
3
|
-
Version: 0.3.
|
4
|
-
Summary: SDK for building langchain agents using
|
3
|
+
Version: 0.3.129
|
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
|
Project-URL: Homepage, https://projectalita.ai
|
7
7
|
Project-URL: Issues, https://github.com/ProjectAlita/alita-sdk/issues
|
@@ -4,7 +4,7 @@ alita_sdk/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
|
|
4
4
|
alita_sdk/agents/llamaAgentParser.py,sha256=N_Nw6WJ8xrNX3fr_JFwjUIg_Urai9lLU3poMgZz0Cyk,1701
|
5
5
|
alita_sdk/clients/__init__.py,sha256=5O_7WsZmvg5z5uZf_Jkx-f8j5C6yKIuSwQR6AQ-TM84,31
|
6
6
|
alita_sdk/clients/artifact.py,sha256=W6oLlthtsUHfUWjhihaDdhLZdRVqj1D2j7oHHELxJfs,2639
|
7
|
-
alita_sdk/clients/client.py,sha256=
|
7
|
+
alita_sdk/clients/client.py,sha256=egrBkmuNh79WTaCLO2sBiTHA1YBT6R4pif-nWZbnSNw,18475
|
8
8
|
alita_sdk/clients/datasource.py,sha256=HAZovoQN9jBg0_-lIlGBQzb4FJdczPhkHehAiVG3Wx0,1020
|
9
9
|
alita_sdk/clients/prompt.py,sha256=li1RG9eBwgNK_Qf0qUaZ8QNTmsncFrAL2pv3kbxZRZg,1447
|
10
10
|
alita_sdk/community/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -19,7 +19,7 @@ alita_sdk/langchain/assistant.py,sha256=J_xhwbNl934BgDKSpAMC9a1u6v03DZQcTYaamCzt
|
|
19
19
|
alita_sdk/langchain/chat_message_template.py,sha256=kPz8W2BG6IMyITFDA5oeb5BxVRkHEVZhuiGl4MBZKdc,2176
|
20
20
|
alita_sdk/langchain/constants.py,sha256=eHVJ_beJNTf1WJo4yq7KMK64fxsRvs3lKc34QCXSbpk,3319
|
21
21
|
alita_sdk/langchain/indexer.py,sha256=0ENHy5EOhThnAiYFc7QAsaTNp9rr8hDV_hTK8ahbatk,37592
|
22
|
-
alita_sdk/langchain/langraph_agent.py,sha256=
|
22
|
+
alita_sdk/langchain/langraph_agent.py,sha256=mPoyC2fJWf8F29lEZfhjh6_Cx_TQNXqmikBy6zQxqVI,39849
|
23
23
|
alita_sdk/langchain/mixedAgentParser.py,sha256=M256lvtsL3YtYflBCEp-rWKrKtcY1dJIyRGVv7KW9ME,2611
|
24
24
|
alita_sdk/langchain/mixedAgentRenderes.py,sha256=asBtKqm88QhZRILditjYICwFVKF5KfO38hu2O-WrSWE,5964
|
25
25
|
alita_sdk/langchain/utils.py,sha256=Npferkn10dvdksnKzLJLBI5bNGQyVWTBwqp3vQtUqmY,6631
|
@@ -61,7 +61,7 @@ alita_sdk/langchain/tools/bdd_parser/feature_types.py,sha256=l3AdjSQnNv1CE1NuHi7
|
|
61
61
|
alita_sdk/langchain/tools/bdd_parser/parser.py,sha256=1H1Nd_OH5Wx8A5YV1zUghBxo613yPptZ7fqNo8Eg48M,17289
|
62
62
|
alita_sdk/llamaindex/assistant.py,sha256=P0gisfQG9NJMJZTmCOL22AN96lrwoajN_29tzrkX0RU,21
|
63
63
|
alita_sdk/llms/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
64
|
-
alita_sdk/llms/alita.py,sha256=
|
64
|
+
alita_sdk/llms/alita.py,sha256=oAALCyrTbQ8gygJO7xzZLjOowpUnTbh8R363argRUVs,10119
|
65
65
|
alita_sdk/llms/preloaded.py,sha256=TFdoScswWI5vMkqFwEyQn_yW3mIoebWLxjciz_Ars3w,11222
|
66
66
|
alita_sdk/toolkits/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
67
67
|
alita_sdk/toolkits/application.py,sha256=LrxbBV05lkRP3_WtKGBKtMdoQHXVY-_AtFr1cUuHz40,2341
|
@@ -81,12 +81,12 @@ alita_sdk/tools/function.py,sha256=wzPS5Y8ScmsXspmn73MQnkCcAghsllAg7BLh61ZNuVw,2
|
|
81
81
|
alita_sdk/tools/indexer_tool.py,sha256=P9S_omk5TZkizb6UXyxMO87Pzj4UCaye0CuXBgCnhTU,4258
|
82
82
|
alita_sdk/tools/llm.py,sha256=JA0OnSU13CLdkS5NFv6iRk8P7k-B47L-oPjk8xrzk48,3223
|
83
83
|
alita_sdk/tools/loop.py,sha256=uds0WhZvwMxDVFI6MZHrcmMle637cQfBNg682iLxoJA,8335
|
84
|
-
alita_sdk/tools/loop_output.py,sha256=
|
84
|
+
alita_sdk/tools/loop_output.py,sha256=U4hO9PCQgWlXwOq6jdmCGbegtAxGAPXObSxZQ3z38uk,8069
|
85
85
|
alita_sdk/tools/mcp_server_tool.py,sha256=xcH9AiqfR2TYrwJ3Ixw-_A7XDodtJCnwmq1SsikXpYk,1930
|
86
86
|
alita_sdk/tools/pgvector_search.py,sha256=NN2BGAnq4SsDHIhUcFZ8d_dbEOM8QwB0UwpsWCYruXU,11692
|
87
87
|
alita_sdk/tools/prompt.py,sha256=nJafb_e5aOM1Rr3qGFCR-SKziU9uCsiP2okIMs9PppM,741
|
88
88
|
alita_sdk/tools/router.py,sha256=wCvZjVkdXK9dMMeEerrgKf5M790RudH68pDortnHSz0,1517
|
89
|
-
alita_sdk/tools/tool.py,sha256=
|
89
|
+
alita_sdk/tools/tool.py,sha256=nhmJGyIzkNxSSdZk8OkJ8vAsiMZ8tsdTFcX4dXWql5s,5420
|
90
90
|
alita_sdk/tools/vectorstore.py,sha256=F-DoHxPa4UVsKB-FEd-wWa59QGQifKMwcSNcZ5WZOKc,23496
|
91
91
|
alita_sdk/utils/AlitaCallback.py,sha256=cvpDhR4QLVCNQci6CO6TEUrUVDZU9_CRSwzcHGm3SGw,7356
|
92
92
|
alita_sdk/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -94,10 +94,10 @@ alita_sdk/utils/evaluate.py,sha256=iM1P8gzBLHTuSCe85_Ng_h30m52hFuGuhNXJ7kB1tgI,1
|
|
94
94
|
alita_sdk/utils/logging.py,sha256=hBE3qAzmcLMdamMp2YRXwOOK9P4lmNaNhM76kntVljs,3124
|
95
95
|
alita_sdk/utils/streamlit.py,sha256=zp8owZwHI3HZplhcExJf6R3-APtWx-z6s5jznT2hY_k,29124
|
96
96
|
alita_sdk/utils/utils.py,sha256=dM8whOJAuFJFe19qJ69-FLzrUp6d2G-G6L7d4ss2XqM,346
|
97
|
-
alita_sdk-0.3.
|
97
|
+
alita_sdk-0.3.129.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
98
98
|
tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
99
99
|
tests/test_jira_analysis.py,sha256=I0cErH5R_dHVyutpXrM1QEo7jfBuKWTmDQvJBPjx18I,3281
|
100
|
-
alita_sdk-0.3.
|
101
|
-
alita_sdk-0.3.
|
102
|
-
alita_sdk-0.3.
|
103
|
-
alita_sdk-0.3.
|
100
|
+
alita_sdk-0.3.129.dist-info/METADATA,sha256=HRyKs3QA8Q-vF56MHtzey9Jq7veAPj5a5j93s1Jv5AQ,7076
|
101
|
+
alita_sdk-0.3.129.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
102
|
+
alita_sdk-0.3.129.dist-info/top_level.txt,sha256=SWRhxB7Et3cOy3RkE5hR7OIRnHoo3K8EXzoiNlkfOmc,25
|
103
|
+
alita_sdk-0.3.129.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|