alita-sdk 0.3.457__py3-none-any.whl → 0.3.465__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.

Potentially problematic release.


This version of alita-sdk might be problematic. Click here for more details.

Files changed (37) hide show
  1. alita_sdk/cli/__init__.py +10 -0
  2. alita_sdk/cli/__main__.py +17 -0
  3. alita_sdk/cli/agent/__init__.py +0 -0
  4. alita_sdk/cli/agent/default.py +176 -0
  5. alita_sdk/cli/agent_executor.py +155 -0
  6. alita_sdk/cli/agent_loader.py +197 -0
  7. alita_sdk/cli/agent_ui.py +218 -0
  8. alita_sdk/cli/agents.py +1911 -0
  9. alita_sdk/cli/callbacks.py +576 -0
  10. alita_sdk/cli/cli.py +159 -0
  11. alita_sdk/cli/config.py +164 -0
  12. alita_sdk/cli/formatting.py +182 -0
  13. alita_sdk/cli/input_handler.py +256 -0
  14. alita_sdk/cli/mcp_loader.py +315 -0
  15. alita_sdk/cli/toolkit.py +330 -0
  16. alita_sdk/cli/toolkit_loader.py +55 -0
  17. alita_sdk/cli/tools/__init__.py +36 -0
  18. alita_sdk/cli/tools/approval.py +224 -0
  19. alita_sdk/cli/tools/filesystem.py +905 -0
  20. alita_sdk/cli/tools/planning.py +403 -0
  21. alita_sdk/cli/tools/terminal.py +280 -0
  22. alita_sdk/runtime/clients/client.py +16 -1
  23. alita_sdk/runtime/langchain/constants.py +2 -1
  24. alita_sdk/runtime/langchain/langraph_agent.py +17 -5
  25. alita_sdk/runtime/langchain/utils.py +1 -1
  26. alita_sdk/runtime/tools/function.py +17 -5
  27. alita_sdk/runtime/tools/llm.py +65 -7
  28. alita_sdk/tools/base_indexer_toolkit.py +54 -2
  29. alita_sdk/tools/qtest/api_wrapper.py +871 -32
  30. alita_sdk/tools/sharepoint/api_wrapper.py +22 -2
  31. alita_sdk/tools/sharepoint/authorization_helper.py +17 -1
  32. {alita_sdk-0.3.457.dist-info → alita_sdk-0.3.465.dist-info}/METADATA +145 -2
  33. {alita_sdk-0.3.457.dist-info → alita_sdk-0.3.465.dist-info}/RECORD +37 -15
  34. alita_sdk-0.3.465.dist-info/entry_points.txt +2 -0
  35. {alita_sdk-0.3.457.dist-info → alita_sdk-0.3.465.dist-info}/WHEEL +0 -0
  36. {alita_sdk-0.3.457.dist-info → alita_sdk-0.3.465.dist-info}/licenses/LICENSE +0 -0
  37. {alita_sdk-0.3.457.dist-info → alita_sdk-0.3.465.dist-info}/top_level.txt +0 -0
@@ -130,9 +130,24 @@ class SharepointApiWrapper(NonCodeIndexerToolkit):
130
130
  if not limit_files:
131
131
  limit_files = 100
132
132
  #
133
+ site_segments = [seg for seg in self.site_url.strip('/').split('/') if seg][-2:]
134
+ full_path_prefix = '/'.join(site_segments)
135
+ #
133
136
  for lib in all_libraries:
134
137
  library_type = decode_sharepoint_string(lib.properties["EntityTypeName"])
135
- target_folder_url = f"{library_type}/{folder_name}" if folder_name else library_type
138
+ target_folder_url = library_type
139
+ if folder_name:
140
+ folder_path = folder_name.strip('/')
141
+ expected_prefix = f'{full_path_prefix}/{library_type}'
142
+ if folder_path.startswith(full_path_prefix):
143
+ if folder_path.startswith(expected_prefix):
144
+ target_folder_url = folder_path.removeprefix(f'{full_path_prefix}/')
145
+ else:
146
+ # ignore full path folder which is not targeted to current library
147
+ continue
148
+ else:
149
+ target_folder_url = f"{library_type}/{folder_name}"
150
+ #
136
151
  files = (self._client.web.get_folder_by_server_relative_path(target_folder_url)
137
152
  .get_files(True)
138
153
  .execute_query())
@@ -226,13 +241,18 @@ class SharepointApiWrapper(NonCodeIndexerToolkit):
226
241
  'skip_extensions': (Optional[List[str]], Field(
227
242
  description="List of file extensions to skip when processing: i.e. ['*.png', '*.jpg']",
228
243
  default=[])),
244
+ 'path': (Optional[str], Field(
245
+ description="Folder path. "
246
+ "Accepts either a full server-relative path (e.g., '/sites/SiteName/...') or a relative path. "
247
+ "If a relative path is provided, the search will be performed recursively under 'Shared Documents' and other private libraries.",
248
+ default=None)),
229
249
  }
230
250
 
231
251
  def _base_loader(self, **kwargs) -> Generator[Document, None, None]:
232
252
 
233
253
  self._log_tool_event(message="Starting SharePoint files extraction", tool_name="loader")
234
254
  try:
235
- all_files = self.get_files_list(limit_files=kwargs.get('limit_files', 10000))
255
+ all_files = self.get_files_list(kwargs.get('path'), kwargs.get('limit_files', 10000))
236
256
  self._log_tool_event(message="List of the files has been extracted", tool_name="loader")
237
257
  except Exception as e:
238
258
  raise ToolException(f"Unable to extract files: {e}")
@@ -147,12 +147,28 @@ class SharepointAuthorizationHelper:
147
147
  if limit_files is not None and len(result) + len(files) >= limit_files:
148
148
  return files[:limit_files - len(result)]
149
149
  return files
150
+ #
151
+ site_segments = [seg for seg in site_url.strip('/').split('/') if seg][-2:]
152
+ full_path_prefix = '/'.join(site_segments)
153
+ #
150
154
  for drive in drives:
151
155
  drive_id = drive.get("id")
152
156
  drive_path = unquote(urlparse(drive.get("webUrl")).path) if drive.get("webUrl") else ""
153
157
  if not drive_id:
154
158
  continue # skip drives without id
155
- files = _recurse_drive(drive_id, drive_path, folder_name, limit_files)
159
+ #
160
+ sub_folder = folder_name
161
+ if folder_name:
162
+ folder_path = folder_name.strip('/')
163
+ expected_prefix = drive_path.strip('/')#f'{full_path_prefix}/{library_type}'
164
+ if folder_path.startswith(full_path_prefix):
165
+ if folder_path.startswith(expected_prefix):
166
+ sub_folder = folder_path.removeprefix(f'{expected_prefix}').strip('/')#target_folder_url = folder_path.removeprefix(f'{full_path_prefix}/')
167
+ else:
168
+ # ignore full path folder which is not targeted to current drive
169
+ continue
170
+ #
171
+ files = _recurse_drive(drive_id, drive_path, sub_folder, limit_files)
156
172
  result.extend(files)
157
173
  if limit_files is not None and len(result) >= limit_files:
158
174
  return result[:limit_files]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: alita_sdk
3
- Version: 0.3.457
3
+ Version: 0.3.465
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 <lifedj27@gmail.com>, Artem Dubrovskiy <ad13box@gmail.com>
6
6
  License-Expression: Apache-2.0
@@ -18,7 +18,7 @@ Requires-Dist: python-dotenv~=1.0.1
18
18
  Requires-Dist: jinja2~=3.1.3
19
19
  Requires-Dist: pillow~=11.1.0
20
20
  Requires-Dist: requests~=2.3
21
- Requires-Dist: pydantic~=2.10.0
21
+ Requires-Dist: pydantic~=2.12.0
22
22
  Requires-Dist: chardet==5.2.0
23
23
  Requires-Dist: fastapi==0.115.9
24
24
  Requires-Dist: httpcore==1.0.7
@@ -144,6 +144,11 @@ Requires-Dist: pytest-cov; extra == "dev"
144
144
  Requires-Dist: black; extra == "dev"
145
145
  Requires-Dist: flake8; extra == "dev"
146
146
  Requires-Dist: mypy; extra == "dev"
147
+ Provides-Extra: cli
148
+ Requires-Dist: click>=8.1.0; extra == "cli"
149
+ Requires-Dist: rich>=13.0.0; extra == "cli"
150
+ Requires-Dist: pyyaml>=6.0; extra == "cli"
151
+ Requires-Dist: langchain-mcp-adapters; extra == "cli"
147
152
  Dynamic: license-file
148
153
 
149
154
  Alita SDK
@@ -201,6 +206,144 @@ PROJECT_ID=<your_project_id>
201
206
  NOTE: these variables can be grabbed from your Elitea platform configuration page.
202
207
  ![Platform configuration](docs/readme_imgs/platform_config.png "Platform configuration")
203
208
 
209
+ ### Custom .env File Location
210
+
211
+ By default, the CLI looks for `.env` files in the following order:
212
+ 1. `.alita/.env` (recommended)
213
+ 2. `.env` in the current directory
214
+
215
+ You can override this by setting the `ALITA_ENV_FILE` environment variable:
216
+
217
+ ```bash
218
+ export ALITA_ENV_FILE=/path/to/your/.env
219
+ alita-cli agent chat
220
+ ```
221
+
222
+ Using the CLI for Interactive Chat
223
+ ----------------------------------
224
+
225
+ The Alita SDK includes a powerful CLI for interactive agent chat sessions.
226
+
227
+ ### Starting a Chat Session
228
+
229
+ ```bash
230
+ # Interactive selection (shows all available agents + direct chat option)
231
+ alita-cli agent chat
232
+
233
+ # Chat with a specific local agent
234
+ alita-cli agent chat .alita/agents/my-agent.agent.md
235
+
236
+ # Chat with a platform agent
237
+ alita-cli agent chat my-agent-name
238
+ ```
239
+
240
+ ### Direct Chat Mode (No Agent)
241
+
242
+ You can start a chat session directly with the LLM without any agent configuration:
243
+
244
+ ```bash
245
+ alita-cli agent chat
246
+ # Select option 1: "Direct chat with model (no agent)"
247
+ ```
248
+
249
+ This is useful for quick interactions or testing without setting up an agent.
250
+
251
+ ### Chat Commands
252
+
253
+ During a chat session, you can use the following commands:
254
+
255
+ | Command | Description |
256
+ |---------|-------------|
257
+ | `/help` | Show all available commands |
258
+ | `/model` | Switch to a different model (preserves chat history) |
259
+ | `/add_mcp` | Add an MCP server from your local mcp.json (preserves chat history) |
260
+ | `/add_toolkit` | Add a toolkit from $ALITA_DIR/tools (preserves chat history) |
261
+ | `/clear` | Clear conversation history |
262
+ | `/history` | Show conversation history |
263
+ | `/save` | Save conversation to file |
264
+ | `exit` | End conversation |
265
+
266
+ ### Enhanced Input Features
267
+
268
+ The chat interface includes readline-based input enhancements:
269
+
270
+ | Feature | Key/Action |
271
+ |---------|------------|
272
+ | **Tab completion** | Press `Tab` to autocomplete commands (e.g., `/mo` → `/model`) |
273
+ | **Command history** | `↑` / `↓` arrows to navigate through previous messages |
274
+ | **Cursor movement** | `←` / `→` arrows to move within the current line |
275
+ | **Start of line** | `Ctrl+A` jumps to the beginning of the line |
276
+ | **End of line** | `Ctrl+E` jumps to the end of the line |
277
+ | **Delete word** | `Ctrl+W` deletes the word before cursor |
278
+ | **Clear line** | `Ctrl+U` clears from cursor to beginning of line |
279
+
280
+ ### Dynamic Model Switching
281
+
282
+ Use `/model` to switch models on the fly:
283
+
284
+ ```
285
+ > /model
286
+
287
+ 🔧 Select a model:
288
+
289
+ # Model Type
290
+ 1 gpt-4o openai
291
+ 2 gpt-4o-mini openai
292
+ 3 claude-3-sonnet anthropic
293
+
294
+ Select model number: 1
295
+
296
+ ✓ Selected: gpt-4o
297
+ ╭──────────────────────────────────────────────────────────────╮
298
+ │ ℹ Model switched to gpt-4o. Agent state reset, chat history │
299
+ │ preserved. │
300
+ ╰──────────────────────────────────────────────────────────────╯
301
+ ```
302
+
303
+ ### Adding MCP Servers Dynamically
304
+
305
+ Use `/add_mcp` to add MCP servers during a chat session. Servers are loaded from your local `mcp.json` file (typically at `.alita/mcp.json`):
306
+
307
+ ```
308
+ > /add_mcp
309
+
310
+ 🔌 Select an MCP server to add:
311
+
312
+ # Server Type Command/URL
313
+ 1 playwright stdio npx @playwright/mcp@latest
314
+ 2 filesystem stdio npx @anthropic/mcp-fs
315
+
316
+ Select MCP server number: 1
317
+
318
+ ✓ Selected: playwright
319
+ ╭──────────────────────────────────────────────────────────────╮
320
+ │ ℹ Added MCP: playwright. Agent state reset, chat history │
321
+ │ preserved. │
322
+ ╰──────────────────────────────────────────────────────────────╯
323
+ ```
324
+
325
+ ### Adding Toolkits Dynamically
326
+
327
+ Use `/add_toolkit` to add toolkits from your `$ALITA_DIR/tools` directory (default: `.alita/tools`):
328
+
329
+ ```
330
+ > /add_toolkit
331
+
332
+ 🧰 Select a toolkit to add:
333
+
334
+ # Toolkit Type File
335
+ 1 jira jira jira-config.json
336
+ 2 github github github-config.json
337
+
338
+ Select toolkit number: 1
339
+
340
+ ✓ Selected: jira
341
+ ╭──────────────────────────────────────────────────────────────╮
342
+ │ ℹ Added toolkit: jira. Agent state reset, chat history │
343
+ │ preserved. │
344
+ ╰──────────────────────────────────────────────────────────────╯
345
+ ```
346
+
204
347
 
205
348
 
206
349
  Using SDK with Streamlit for Local Development
@@ -1,4 +1,25 @@
1
1
  alita_sdk/__init__.py,sha256=fxeNiqiVpIFAJls31Oomifyrtd5gT9iPUTdkWjDOB2Y,656
2
+ alita_sdk/cli/__init__.py,sha256=HiHHouMh0EHmK1qMVzvz6vfIOu8Pm6XXw0dd_hXZ288,278
3
+ alita_sdk/cli/__main__.py,sha256=dAhgWWWEOG1ZiwCs6wQoJwnD62cFRnxiyiAoiFqU8K4,420
4
+ alita_sdk/cli/agent_executor.py,sha256=HBTOhNyZsvYdwcRSBgMo1nG7saVT147FJnmQtMhP4oQ,5580
5
+ alita_sdk/cli/agent_loader.py,sha256=ujlnKePxGUX7_qCOhoPh7r6y0usyvuBM46McsYCdJtA,7919
6
+ alita_sdk/cli/agent_ui.py,sha256=shHGIVTDHh3Hc33cct3qtRiMtbzGEPCZ_EYPGQXQ3jM,8346
7
+ alita_sdk/cli/agents.py,sha256=eGXGTDZpvGmm05dXiRzTLULxj-QUA7LANPdckXn4Pfs,91516
8
+ alita_sdk/cli/callbacks.py,sha256=LSjgGl9Q5-I96PWL3d0A9RlyqDbxDOcCeJ4eV8nlRtQ,19327
9
+ alita_sdk/cli/cli.py,sha256=UWD07iNOEJVSZXCEaF_mm3tb_nT-Ny5N8uQP4DEZiQQ,4917
10
+ alita_sdk/cli/config.py,sha256=sWFa_G3ND2zDwZ3IuaSjqEexxKlWsE0FdVmAVCGCV-Y,5168
11
+ alita_sdk/cli/formatting.py,sha256=ip95brhcFcx3Ub7PRLv1aDGniGW13RCGDgc1_8i9ZwM,6566
12
+ alita_sdk/cli/input_handler.py,sha256=lRQGx_hrMwva-yn7FOBZke96qCOh2C-VCRXMeYxE4EM,7653
13
+ alita_sdk/cli/mcp_loader.py,sha256=SfdQl5RWu9Ml-guqOd9busPm1_3NksJZq1UFz9zfn7A,12364
14
+ alita_sdk/cli/toolkit.py,sha256=IC1zCXiIRUh-swcBC5VhdREIaXGCu5-OfSWyGSUOx0Q,11693
15
+ alita_sdk/cli/toolkit_loader.py,sha256=5KoWkQEHmq32-jKGg-7W57-XjY0oZmMuv4ZHRWgS_4c,1755
16
+ alita_sdk/cli/agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
17
+ alita_sdk/cli/agent/default.py,sha256=OnH6jAPh26O_EQGnBXfHOvk4CAStLEzJCLkmfSdTWHo,6278
18
+ alita_sdk/cli/tools/__init__.py,sha256=UTWy-Y2RA5AkPE1fbjl1AxRZRkb0Zq1s_WIAsHp5N0I,889
19
+ alita_sdk/cli/tools/approval.py,sha256=b_TtmyOaMJHjHAiig-1ds9qgNYbniWqPqv-dkNQ_r4Q,7536
20
+ alita_sdk/cli/tools/filesystem.py,sha256=1XKDRXammYWwmN0K_6ubF8gbBZqcBVIOvrADDY8nhKA,36771
21
+ alita_sdk/cli/tools/planning.py,sha256=I-R0vM2e2OfgSB63pVDy4oKbRZJ7WY0MEZ4H5nNK1PI,14265
22
+ alita_sdk/cli/tools/terminal.py,sha256=H8e6-gJNlc-0NjGVEd2zMIws4Jaee9uA7P0bMblwqyU,8760
2
23
  alita_sdk/community/__init__.py,sha256=8N7wWwPhoyOq3p8wlV3-pb3l3nJCR8TUrtV9iIPLU88,2523
3
24
  alita_sdk/community/utils.py,sha256=lvuCJaNqVPHOORJV6kIPcXJcdprVW_TJvERtYAEgpjM,249
4
25
  alita_sdk/configurations/__init__.py,sha256=3_MlzyzAi1dog6MFQD_ICOZvaPfXf2UfhSZwlF1knnw,3983
@@ -36,7 +57,7 @@ alita_sdk/configurations/zephyr_essential.py,sha256=TiZedsBlfIDroflipvoqxjJeEWPo
36
57
  alita_sdk/runtime/__init__.py,sha256=4W0UF-nl3QF2bvET5lnah4o24CoTwSoKXhuN0YnwvEE,828
37
58
  alita_sdk/runtime/clients/__init__.py,sha256=BdehU5GBztN1Qi1Wul0cqlU46FxUfMnI6Vq2Zd_oq1M,296
38
59
  alita_sdk/runtime/clients/artifact.py,sha256=b7hVuGRROt6qUcT11uAZqzJqslzmlgW-Y6oGsiwNmjI,4029
39
- alita_sdk/runtime/clients/client.py,sha256=trgvD6vzOqepn29ks0i1ALKigdVxiBinaJiOi-ejNb0,47754
60
+ alita_sdk/runtime/clients/client.py,sha256=ybMSEEv4fyFWKudcGI8FzPv8_KNZNdTg6vJb0KBadjM,48372
40
61
  alita_sdk/runtime/clients/datasource.py,sha256=HAZovoQN9jBg0_-lIlGBQzb4FJdczPhkHehAiVG3Wx0,1020
41
62
  alita_sdk/runtime/clients/mcp_discovery.py,sha256=aFJ0wYQ8EAmXa9qLUusHZfQXkNec1wbgkqHdVeSFX-g,11697
42
63
  alita_sdk/runtime/clients/mcp_manager.py,sha256=DRbqiO761l7UgOdv_keHbD2g0oZodtPHejpArXYZIoE,9050
@@ -45,13 +66,13 @@ alita_sdk/runtime/clients/sandbox_client.py,sha256=kGOGfm3OAFmYeTM4bIuKbhRsOiOhF
45
66
  alita_sdk/runtime/langchain/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
46
67
  alita_sdk/runtime/langchain/assistant.py,sha256=t93SNBcdki59gvW_Osl68E-x0ohcO2z32jtR8nqEaRI,16201
47
68
  alita_sdk/runtime/langchain/chat_message_template.py,sha256=kPz8W2BG6IMyITFDA5oeb5BxVRkHEVZhuiGl4MBZKdc,2176
48
- alita_sdk/runtime/langchain/constants.py,sha256=oiEHg1h_IYUA5NE8O6nEF24hpxahi9BTvJWrkXjbVcU,3405
69
+ alita_sdk/runtime/langchain/constants.py,sha256=ZcNdsihfmK2m1klSY4gwfDtKniiYhi7ONvkQDb7Jb5s,3451
49
70
  alita_sdk/runtime/langchain/indexer.py,sha256=0ENHy5EOhThnAiYFc7QAsaTNp9rr8hDV_hTK8ahbatk,37592
50
- alita_sdk/runtime/langchain/langraph_agent.py,sha256=tLgZ1Z7iqN_AWkmb9lvmSEpg27ECl9JWm6HS7WtzK1U,54419
71
+ alita_sdk/runtime/langchain/langraph_agent.py,sha256=VCGpT4Sv4fSpZnESq1SHqQEhKu5JdJUQ50tS3esIDYw,55145
51
72
  alita_sdk/runtime/langchain/mixedAgentParser.py,sha256=M256lvtsL3YtYflBCEp-rWKrKtcY1dJIyRGVv7KW9ME,2611
52
73
  alita_sdk/runtime/langchain/mixedAgentRenderes.py,sha256=asBtKqm88QhZRILditjYICwFVKF5KfO38hu2O-WrSWE,5964
53
74
  alita_sdk/runtime/langchain/store_manager.py,sha256=i8Fl11IXJhrBXq1F1ukEVln57B1IBe-tqSUvfUmBV4A,2218
54
- alita_sdk/runtime/langchain/utils.py,sha256=UDxYSYzWfhVB2-qBqJwaTvcIt3EEsujUdgkpX5PMNxo,8506
75
+ alita_sdk/runtime/langchain/utils.py,sha256=jH2Dt_DTgn6Engp1xFLodN73QWYFLHgqeeqkN13es68,8531
55
76
  alita_sdk/runtime/langchain/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
56
77
  alita_sdk/runtime/langchain/agents/xml_chat.py,sha256=Mx7PK5T97_GrFCwHHZ3JZP42S7MwtUzV0W-_8j6Amt8,6212
57
78
  alita_sdk/runtime/langchain/document_loaders/AlitaBDDScenariosLoader.py,sha256=4kFU1ijrM1Jw7cywQv8mUiBHlE6w-uqfzSZP4hUV5P4,3771
@@ -114,11 +135,11 @@ alita_sdk/runtime/tools/application.py,sha256=RCGe-mRfj8372gTFkEX2xBvcYhw7IKdU1t
114
135
  alita_sdk/runtime/tools/artifact.py,sha256=u3szFwZqguHrPZ3tZJ7S_TiZl7cxlT3oHYd6zbdpRDE,13842
115
136
  alita_sdk/runtime/tools/datasource.py,sha256=pvbaSfI-ThQQnjHG-QhYNSTYRnZB0rYtZFpjCfpzxYI,2443
116
137
  alita_sdk/runtime/tools/echo.py,sha256=spw9eCweXzixJqHnZofHE1yWiSUa04L4VKycf3KCEaM,486
117
- alita_sdk/runtime/tools/function.py,sha256=8KTMwut7BnruaVhgO2zFn9YvCU5bT7REQdpPV-SbHh8,6605
138
+ alita_sdk/runtime/tools/function.py,sha256=1kBVMgLNjoE2yQb5rX8O6MR82rDaylJSrj2Hd-JdkN8,7002
118
139
  alita_sdk/runtime/tools/graph.py,sha256=7jImBBSEdP5Mjnn2keOiyUwdGDFhEXLUrgUiugO3mgA,3503
119
140
  alita_sdk/runtime/tools/image_generation.py,sha256=Kls9D_ke_SK7xmVr7I9SlQcAEBJc86gf66haN0qIj9k,7469
120
141
  alita_sdk/runtime/tools/indexer_tool.py,sha256=whSLPevB4WD6dhh2JDXEivDmTvbjiMV1MrPl9cz5eLA,4375
121
- alita_sdk/runtime/tools/llm.py,sha256=iRG_wU4T01LRsjEMPZe5Uah7LiMqDc-vspwkMuQtltk,16136
142
+ alita_sdk/runtime/tools/llm.py,sha256=MBFQPDY3M_lpJOZ-a6nstVI8cNH0YtBHRhzhxZ9WkP4,18743
122
143
  alita_sdk/runtime/tools/loop.py,sha256=uds0WhZvwMxDVFI6MZHrcmMle637cQfBNg682iLxoJA,8335
123
144
  alita_sdk/runtime/tools/loop_output.py,sha256=U4hO9PCQgWlXwOq6jdmCGbegtAxGAPXObSxZQ3z38uk,8069
124
145
  alita_sdk/runtime/tools/mcp_inspect_tool.py,sha256=38X8euaxDbEGjcfp6ElvExZalpZun6QEr6ZEW4nU5pQ,11496
@@ -144,7 +165,7 @@ alita_sdk/runtime/utils/toolkit_runtime.py,sha256=MU63Fpxj0b5_r1IUUc0Q3-PN9VwL7r
144
165
  alita_sdk/runtime/utils/toolkit_utils.py,sha256=_6cKy514v4ueIZynXTA8LwGC9Q447MfgrQKkDwDI4qM,5886
145
166
  alita_sdk/runtime/utils/utils.py,sha256=PJK8A-JVIzY1IowOjGG8DIqsIiEFe65qDKvFcjJCKWA,1041
146
167
  alita_sdk/tools/__init__.py,sha256=uQzvtnyOsgfdHl3pdo2LqK49Hb3SKFXDBXW_szN2R3k,10992
147
- alita_sdk/tools/base_indexer_toolkit.py,sha256=k8uIwpasxbjqtcsoS2-lvYdYzEZ14qoVSaQuFvkzpHs,27362
168
+ alita_sdk/tools/base_indexer_toolkit.py,sha256=sI7Hv0NoCoxUbZG54vTo6yKK2gfEXFh7FDvgUTV7nOE,29218
148
169
  alita_sdk/tools/code_indexer_toolkit.py,sha256=2VkOC8JfBDc25_jp-NWyMYqpaYRETIzTJFLrIYrfBpE,7814
149
170
  alita_sdk/tools/elitea_base.py,sha256=34fmVdYgd2YXifU5LFNjMQysr4OOIZ6AOZjq4GxLgSw,34417
150
171
  alita_sdk/tools/non_code_indexer_toolkit.py,sha256=6Lrqor1VeSLbPLDHAfg_7UAUqKFy1r_n6bdsc4-ak98,1315
@@ -311,7 +332,7 @@ alita_sdk/tools/postman/postman_analysis.py,sha256=ckc2BfKEop0xnmLPksVRE_Y94ixuq
311
332
  alita_sdk/tools/pptx/__init__.py,sha256=JP4523kvgcRbKevy9s7KllDbzHV9-ArKMNBuzeT97VI,3378
312
333
  alita_sdk/tools/pptx/pptx_wrapper.py,sha256=yyCYcTlIY976kJ4VfPo4dyxj4yeii9j9TWP6W8ZIpN8,29195
313
334
  alita_sdk/tools/qtest/__init__.py,sha256=IGObKF5m7vCE1Pq4cQ7iAMBckryZ5gowdBbnAey5DFQ,4384
314
- alita_sdk/tools/qtest/api_wrapper.py,sha256=YiXkCPlzudHl7Hke-U8oWvix1mD_00poD8MNa9F2YR4,61841
335
+ alita_sdk/tools/qtest/api_wrapper.py,sha256=PRT_ys6xTfK4WOcd_qnZ05Qv1QZ_VnTIxP1lHL8JC9k,98361
315
336
  alita_sdk/tools/qtest/tool.py,sha256=kKzNPS4fUC76WQQttQ6kdVANViHEvKE8Kf174MQiNYU,562
316
337
  alita_sdk/tools/rally/__init__.py,sha256=VESgUY_m0lQVyoSuuCRyLgURn7vHs-JIMS_0oH4e0LQ,3347
317
338
  alita_sdk/tools/rally/api_wrapper.py,sha256=mouzU6g0KML4UNapdk0k6Q0pU3MpJuWnNo71n9PSEHM,11752
@@ -325,8 +346,8 @@ alita_sdk/tools/servicenow/__init__.py,sha256=rI8WrlA5mKxdSe7NYX6Ehd0NTfGx2CEbE6
325
346
  alita_sdk/tools/servicenow/api_wrapper.py,sha256=WpH-bBLGFdhehs4g-K-WAkNuaD1CSrwsDpdgB3RG53s,6120
326
347
  alita_sdk/tools/servicenow/servicenow_client.py,sha256=Rdqfu-ll-qbnclMzChLZBsfXRDzgoX_FdeI2WLApWxc,3269
327
348
  alita_sdk/tools/sharepoint/__init__.py,sha256=mtBw8oBq2LWQpMAgidF7BDn3oOgD3QCWEQjBW80RN3M,4117
328
- alita_sdk/tools/sharepoint/api_wrapper.py,sha256=yOAZfa9-GcjohTak-TqcFL8f7s18hIA89FNO0qXjb_s,16614
329
- alita_sdk/tools/sharepoint/authorization_helper.py,sha256=GN_UkI_HOn9b5UFlxqck7sm6HuB_Kh4wCIGBYFPe2dg,11924
349
+ alita_sdk/tools/sharepoint/api_wrapper.py,sha256=wzwqEmsNRopGzOjOleSsrsfZON4zRyExYZpZqUdWp60,17809
350
+ alita_sdk/tools/sharepoint/authorization_helper.py,sha256=tlmsw3l2UGvVRZS3cHCKCy_arx_IkUuhBOCf9GZ9T6U,12818
330
351
  alita_sdk/tools/sharepoint/utils.py,sha256=CO1PNRC5CpQaVo2Gdenj_jqm2bReSqUT92Bk5s37d8M,573
331
352
  alita_sdk/tools/slack/__init__.py,sha256=AurOivHcpqvrrbg7rwTz8lrMfM6KPskWmHs6ml0jZVM,4057
332
353
  alita_sdk/tools/slack/api_wrapper.py,sha256=5VrV7iSGno8ZcDzEHdGPNhInhtODGPPvAzoZ9W9iQWE,14009
@@ -361,8 +382,9 @@ alita_sdk/tools/zephyr_scale/api_wrapper.py,sha256=kT0TbmMvuKhDUZc0i7KO18O38JM9S
361
382
  alita_sdk/tools/zephyr_squad/__init__.py,sha256=Gl1YAFaMMufTNjIpnuo_c_lbDsQkmproYdZz2ZppgJ4,3007
362
383
  alita_sdk/tools/zephyr_squad/api_wrapper.py,sha256=kmw_xol8YIYFplBLWTqP_VKPRhL_1ItDD0_vXTe_UuI,14906
363
384
  alita_sdk/tools/zephyr_squad/zephyr_squad_cloud_client.py,sha256=R371waHsms4sllHCbijKYs90C-9Yu0sSR3N4SUfQOgU,5066
364
- alita_sdk-0.3.457.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
365
- alita_sdk-0.3.457.dist-info/METADATA,sha256=xRSIN92EqxXvLR792kq6AtWjEH6RhKCZ1ztyELDto04,19101
366
- alita_sdk-0.3.457.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
367
- alita_sdk-0.3.457.dist-info/top_level.txt,sha256=0vJYy5p_jK6AwVb1aqXr7Kgqgk3WDtQ6t5C-XI9zkmg,10
368
- alita_sdk-0.3.457.dist-info/RECORD,,
385
+ alita_sdk-0.3.465.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
386
+ alita_sdk-0.3.465.dist-info/METADATA,sha256=b3KcqSczOheqUjiubIMJ62479hijCL1GaLktQFHEtqc,24215
387
+ alita_sdk-0.3.465.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
388
+ alita_sdk-0.3.465.dist-info/entry_points.txt,sha256=VijN0h4alp1WXm8tfS3P7vuGxN4a5RZqHjXAoEIBZnI,49
389
+ alita_sdk-0.3.465.dist-info/top_level.txt,sha256=0vJYy5p_jK6AwVb1aqXr7Kgqgk3WDtQ6t5C-XI9zkmg,10
390
+ alita_sdk-0.3.465.dist-info/RECORD,,
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ alita = alita_sdk.cli.cli:main