alita-sdk 0.3.351__py3-none-any.whl → 0.3.499__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/cli/__init__.py +10 -0
- alita_sdk/cli/__main__.py +17 -0
- alita_sdk/cli/agent/__init__.py +5 -0
- alita_sdk/cli/agent/default.py +258 -0
- alita_sdk/cli/agent_executor.py +155 -0
- alita_sdk/cli/agent_loader.py +215 -0
- alita_sdk/cli/agent_ui.py +228 -0
- alita_sdk/cli/agents.py +3601 -0
- alita_sdk/cli/callbacks.py +647 -0
- alita_sdk/cli/cli.py +168 -0
- alita_sdk/cli/config.py +306 -0
- alita_sdk/cli/context/__init__.py +30 -0
- alita_sdk/cli/context/cleanup.py +198 -0
- alita_sdk/cli/context/manager.py +731 -0
- alita_sdk/cli/context/message.py +285 -0
- alita_sdk/cli/context/strategies.py +289 -0
- alita_sdk/cli/context/token_estimation.py +127 -0
- alita_sdk/cli/formatting.py +182 -0
- alita_sdk/cli/input_handler.py +419 -0
- alita_sdk/cli/inventory.py +1256 -0
- alita_sdk/cli/mcp_loader.py +315 -0
- alita_sdk/cli/toolkit.py +327 -0
- alita_sdk/cli/toolkit_loader.py +85 -0
- alita_sdk/cli/tools/__init__.py +43 -0
- alita_sdk/cli/tools/approval.py +224 -0
- alita_sdk/cli/tools/filesystem.py +1751 -0
- alita_sdk/cli/tools/planning.py +389 -0
- alita_sdk/cli/tools/terminal.py +414 -0
- alita_sdk/community/__init__.py +64 -8
- alita_sdk/community/inventory/__init__.py +224 -0
- alita_sdk/community/inventory/config.py +257 -0
- alita_sdk/community/inventory/enrichment.py +2137 -0
- alita_sdk/community/inventory/extractors.py +1469 -0
- alita_sdk/community/inventory/ingestion.py +3172 -0
- alita_sdk/community/inventory/knowledge_graph.py +1457 -0
- alita_sdk/community/inventory/parsers/__init__.py +218 -0
- alita_sdk/community/inventory/parsers/base.py +295 -0
- alita_sdk/community/inventory/parsers/csharp_parser.py +907 -0
- alita_sdk/community/inventory/parsers/go_parser.py +851 -0
- alita_sdk/community/inventory/parsers/html_parser.py +389 -0
- alita_sdk/community/inventory/parsers/java_parser.py +593 -0
- alita_sdk/community/inventory/parsers/javascript_parser.py +629 -0
- alita_sdk/community/inventory/parsers/kotlin_parser.py +768 -0
- alita_sdk/community/inventory/parsers/markdown_parser.py +362 -0
- alita_sdk/community/inventory/parsers/python_parser.py +604 -0
- alita_sdk/community/inventory/parsers/rust_parser.py +858 -0
- alita_sdk/community/inventory/parsers/swift_parser.py +832 -0
- alita_sdk/community/inventory/parsers/text_parser.py +322 -0
- alita_sdk/community/inventory/parsers/yaml_parser.py +370 -0
- alita_sdk/community/inventory/patterns/__init__.py +61 -0
- alita_sdk/community/inventory/patterns/ast_adapter.py +380 -0
- alita_sdk/community/inventory/patterns/loader.py +348 -0
- alita_sdk/community/inventory/patterns/registry.py +198 -0
- alita_sdk/community/inventory/presets.py +535 -0
- alita_sdk/community/inventory/retrieval.py +1403 -0
- alita_sdk/community/inventory/toolkit.py +173 -0
- alita_sdk/community/inventory/visualize.py +1370 -0
- alita_sdk/configurations/bitbucket.py +94 -2
- alita_sdk/configurations/confluence.py +96 -1
- alita_sdk/configurations/gitlab.py +79 -0
- alita_sdk/configurations/jira.py +103 -0
- alita_sdk/configurations/testrail.py +88 -0
- alita_sdk/configurations/xray.py +93 -0
- alita_sdk/configurations/zephyr_enterprise.py +93 -0
- alita_sdk/configurations/zephyr_essential.py +75 -0
- alita_sdk/runtime/clients/artifact.py +1 -1
- alita_sdk/runtime/clients/client.py +214 -42
- alita_sdk/runtime/clients/mcp_discovery.py +342 -0
- alita_sdk/runtime/clients/mcp_manager.py +262 -0
- alita_sdk/runtime/clients/sandbox_client.py +373 -0
- alita_sdk/runtime/langchain/assistant.py +118 -30
- alita_sdk/runtime/langchain/constants.py +8 -1
- alita_sdk/runtime/langchain/document_loaders/AlitaDocxMammothLoader.py +315 -3
- alita_sdk/runtime/langchain/document_loaders/AlitaExcelLoader.py +103 -60
- alita_sdk/runtime/langchain/document_loaders/AlitaJSONLoader.py +4 -1
- alita_sdk/runtime/langchain/document_loaders/AlitaPowerPointLoader.py +41 -12
- alita_sdk/runtime/langchain/document_loaders/AlitaTableLoader.py +1 -1
- alita_sdk/runtime/langchain/document_loaders/constants.py +116 -99
- alita_sdk/runtime/langchain/interfaces/llm_processor.py +2 -2
- alita_sdk/runtime/langchain/langraph_agent.py +307 -71
- alita_sdk/runtime/langchain/utils.py +48 -8
- alita_sdk/runtime/llms/preloaded.py +2 -6
- alita_sdk/runtime/models/mcp_models.py +61 -0
- alita_sdk/runtime/toolkits/__init__.py +26 -0
- alita_sdk/runtime/toolkits/application.py +9 -2
- alita_sdk/runtime/toolkits/artifact.py +18 -6
- alita_sdk/runtime/toolkits/datasource.py +13 -6
- alita_sdk/runtime/toolkits/mcp.py +780 -0
- alita_sdk/runtime/toolkits/planning.py +178 -0
- alita_sdk/runtime/toolkits/tools.py +205 -55
- alita_sdk/runtime/toolkits/vectorstore.py +9 -4
- alita_sdk/runtime/tools/__init__.py +11 -3
- alita_sdk/runtime/tools/application.py +7 -0
- alita_sdk/runtime/tools/artifact.py +225 -12
- alita_sdk/runtime/tools/function.py +95 -5
- alita_sdk/runtime/tools/graph.py +10 -4
- alita_sdk/runtime/tools/image_generation.py +212 -0
- alita_sdk/runtime/tools/llm.py +494 -102
- alita_sdk/runtime/tools/mcp_inspect_tool.py +284 -0
- alita_sdk/runtime/tools/mcp_remote_tool.py +181 -0
- alita_sdk/runtime/tools/mcp_server_tool.py +4 -4
- alita_sdk/runtime/tools/planning/__init__.py +36 -0
- alita_sdk/runtime/tools/planning/models.py +246 -0
- alita_sdk/runtime/tools/planning/wrapper.py +607 -0
- alita_sdk/runtime/tools/router.py +2 -1
- alita_sdk/runtime/tools/sandbox.py +180 -79
- alita_sdk/runtime/tools/vectorstore.py +22 -21
- alita_sdk/runtime/tools/vectorstore_base.py +125 -52
- alita_sdk/runtime/utils/AlitaCallback.py +106 -20
- alita_sdk/runtime/utils/mcp_client.py +465 -0
- alita_sdk/runtime/utils/mcp_oauth.py +244 -0
- alita_sdk/runtime/utils/mcp_sse_client.py +405 -0
- alita_sdk/runtime/utils/mcp_tools_discovery.py +124 -0
- alita_sdk/runtime/utils/streamlit.py +40 -13
- alita_sdk/runtime/utils/toolkit_utils.py +28 -9
- alita_sdk/runtime/utils/utils.py +12 -0
- alita_sdk/tools/__init__.py +77 -33
- alita_sdk/tools/ado/repos/__init__.py +7 -6
- alita_sdk/tools/ado/repos/repos_wrapper.py +11 -11
- alita_sdk/tools/ado/test_plan/__init__.py +7 -7
- alita_sdk/tools/ado/wiki/__init__.py +7 -11
- alita_sdk/tools/ado/wiki/ado_wrapper.py +89 -15
- alita_sdk/tools/ado/work_item/__init__.py +7 -11
- alita_sdk/tools/ado/work_item/ado_wrapper.py +17 -8
- alita_sdk/tools/advanced_jira_mining/__init__.py +8 -7
- alita_sdk/tools/aws/delta_lake/__init__.py +11 -9
- alita_sdk/tools/azure_ai/search/__init__.py +7 -6
- alita_sdk/tools/base_indexer_toolkit.py +345 -70
- alita_sdk/tools/bitbucket/__init__.py +9 -8
- alita_sdk/tools/bitbucket/api_wrapper.py +50 -6
- alita_sdk/tools/browser/__init__.py +4 -4
- alita_sdk/tools/carrier/__init__.py +4 -6
- alita_sdk/tools/chunkers/__init__.py +3 -1
- alita_sdk/tools/chunkers/sematic/json_chunker.py +1 -0
- alita_sdk/tools/chunkers/sematic/markdown_chunker.py +97 -6
- alita_sdk/tools/chunkers/sematic/proposal_chunker.py +1 -1
- alita_sdk/tools/chunkers/universal_chunker.py +270 -0
- alita_sdk/tools/cloud/aws/__init__.py +7 -6
- alita_sdk/tools/cloud/azure/__init__.py +7 -6
- alita_sdk/tools/cloud/gcp/__init__.py +7 -6
- alita_sdk/tools/cloud/k8s/__init__.py +7 -6
- alita_sdk/tools/code/linter/__init__.py +7 -7
- alita_sdk/tools/code/loaders/codesearcher.py +3 -2
- alita_sdk/tools/code/sonar/__init__.py +8 -7
- alita_sdk/tools/code_indexer_toolkit.py +199 -0
- alita_sdk/tools/confluence/__init__.py +9 -8
- alita_sdk/tools/confluence/api_wrapper.py +171 -75
- alita_sdk/tools/confluence/loader.py +10 -0
- alita_sdk/tools/custom_open_api/__init__.py +9 -4
- alita_sdk/tools/elastic/__init__.py +8 -7
- alita_sdk/tools/elitea_base.py +492 -52
- alita_sdk/tools/figma/__init__.py +7 -7
- alita_sdk/tools/figma/api_wrapper.py +2 -1
- alita_sdk/tools/github/__init__.py +9 -9
- alita_sdk/tools/github/api_wrapper.py +9 -26
- alita_sdk/tools/github/github_client.py +62 -2
- alita_sdk/tools/gitlab/__init__.py +8 -8
- alita_sdk/tools/gitlab/api_wrapper.py +135 -33
- alita_sdk/tools/gitlab_org/__init__.py +7 -8
- alita_sdk/tools/google/bigquery/__init__.py +11 -12
- alita_sdk/tools/google_places/__init__.py +8 -7
- alita_sdk/tools/jira/__init__.py +9 -7
- alita_sdk/tools/jira/api_wrapper.py +100 -52
- alita_sdk/tools/keycloak/__init__.py +8 -7
- alita_sdk/tools/localgit/local_git.py +56 -54
- alita_sdk/tools/memory/__init__.py +1 -1
- alita_sdk/tools/non_code_indexer_toolkit.py +3 -2
- alita_sdk/tools/ocr/__init__.py +8 -7
- alita_sdk/tools/openapi/__init__.py +10 -1
- alita_sdk/tools/pandas/__init__.py +8 -7
- alita_sdk/tools/postman/__init__.py +7 -8
- alita_sdk/tools/postman/api_wrapper.py +19 -8
- alita_sdk/tools/postman/postman_analysis.py +8 -1
- alita_sdk/tools/pptx/__init__.py +8 -9
- alita_sdk/tools/qtest/__init__.py +16 -11
- alita_sdk/tools/qtest/api_wrapper.py +1784 -88
- alita_sdk/tools/rally/__init__.py +7 -8
- alita_sdk/tools/report_portal/__init__.py +9 -7
- alita_sdk/tools/salesforce/__init__.py +7 -7
- alita_sdk/tools/servicenow/__init__.py +10 -10
- alita_sdk/tools/sharepoint/__init__.py +7 -6
- alita_sdk/tools/sharepoint/api_wrapper.py +127 -36
- alita_sdk/tools/sharepoint/authorization_helper.py +191 -1
- alita_sdk/tools/sharepoint/utils.py +8 -2
- alita_sdk/tools/slack/__init__.py +7 -6
- alita_sdk/tools/sql/__init__.py +8 -7
- alita_sdk/tools/sql/api_wrapper.py +71 -23
- alita_sdk/tools/testio/__init__.py +7 -6
- alita_sdk/tools/testrail/__init__.py +8 -9
- alita_sdk/tools/utils/__init__.py +26 -4
- alita_sdk/tools/utils/content_parser.py +88 -60
- alita_sdk/tools/utils/text_operations.py +254 -0
- alita_sdk/tools/vector_adapters/VectorStoreAdapter.py +76 -26
- alita_sdk/tools/xray/__init__.py +9 -7
- alita_sdk/tools/zephyr/__init__.py +7 -6
- alita_sdk/tools/zephyr_enterprise/__init__.py +8 -6
- alita_sdk/tools/zephyr_essential/__init__.py +7 -6
- alita_sdk/tools/zephyr_essential/api_wrapper.py +12 -13
- alita_sdk/tools/zephyr_scale/__init__.py +7 -6
- alita_sdk/tools/zephyr_squad/__init__.py +7 -6
- {alita_sdk-0.3.351.dist-info → alita_sdk-0.3.499.dist-info}/METADATA +147 -2
- {alita_sdk-0.3.351.dist-info → alita_sdk-0.3.499.dist-info}/RECORD +206 -130
- alita_sdk-0.3.499.dist-info/entry_points.txt +2 -0
- {alita_sdk-0.3.351.dist-info → alita_sdk-0.3.499.dist-info}/WHEEL +0 -0
- {alita_sdk-0.3.351.dist-info → alita_sdk-0.3.499.dist-info}/licenses/LICENSE +0 -0
- {alita_sdk-0.3.351.dist-info → alita_sdk-0.3.499.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: alita_sdk
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.499
|
|
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,12 +18,13 @@ 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.
|
|
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
|
|
25
25
|
Requires-Dist: urllib3>=2
|
|
26
26
|
Requires-Dist: certifi==2024.8.30
|
|
27
|
+
Requires-Dist: aiohttp>=3.9.0
|
|
27
28
|
Provides-Extra: runtime
|
|
28
29
|
Requires-Dist: streamlit>=1.28.0; extra == "runtime"
|
|
29
30
|
Requires-Dist: langchain_core<0.4.0,>=0.3.76; extra == "runtime"
|
|
@@ -133,6 +134,7 @@ Provides-Extra: community
|
|
|
133
134
|
Requires-Dist: retry-extended==0.2.3; extra == "community"
|
|
134
135
|
Requires-Dist: pyobjtojson==0.3; extra == "community"
|
|
135
136
|
Requires-Dist: elitea-analyse==0.1.2; extra == "community"
|
|
137
|
+
Requires-Dist: networkx>=3.0; extra == "community"
|
|
136
138
|
Provides-Extra: all
|
|
137
139
|
Requires-Dist: alita-sdk[runtime]; extra == "all"
|
|
138
140
|
Requires-Dist: alita-sdk[tools]; extra == "all"
|
|
@@ -143,6 +145,11 @@ Requires-Dist: pytest-cov; extra == "dev"
|
|
|
143
145
|
Requires-Dist: black; extra == "dev"
|
|
144
146
|
Requires-Dist: flake8; extra == "dev"
|
|
145
147
|
Requires-Dist: mypy; extra == "dev"
|
|
148
|
+
Provides-Extra: cli
|
|
149
|
+
Requires-Dist: click>=8.1.0; extra == "cli"
|
|
150
|
+
Requires-Dist: rich>=13.0.0; extra == "cli"
|
|
151
|
+
Requires-Dist: pyyaml>=6.0; extra == "cli"
|
|
152
|
+
Requires-Dist: langchain-mcp-adapters; extra == "cli"
|
|
146
153
|
Dynamic: license-file
|
|
147
154
|
|
|
148
155
|
Alita SDK
|
|
@@ -200,6 +207,144 @@ PROJECT_ID=<your_project_id>
|
|
|
200
207
|
NOTE: these variables can be grabbed from your Elitea platform configuration page.
|
|
201
208
|

|
|
202
209
|
|
|
210
|
+
### Custom .env File Location
|
|
211
|
+
|
|
212
|
+
By default, the CLI looks for `.env` files in the following order:
|
|
213
|
+
1. `.alita/.env` (recommended)
|
|
214
|
+
2. `.env` in the current directory
|
|
215
|
+
|
|
216
|
+
You can override this by setting the `ALITA_ENV_FILE` environment variable:
|
|
217
|
+
|
|
218
|
+
```bash
|
|
219
|
+
export ALITA_ENV_FILE=/path/to/your/.env
|
|
220
|
+
alita-cli agent chat
|
|
221
|
+
```
|
|
222
|
+
|
|
223
|
+
Using the CLI for Interactive Chat
|
|
224
|
+
----------------------------------
|
|
225
|
+
|
|
226
|
+
The Alita SDK includes a powerful CLI for interactive agent chat sessions.
|
|
227
|
+
|
|
228
|
+
### Starting a Chat Session
|
|
229
|
+
|
|
230
|
+
```bash
|
|
231
|
+
# Interactive selection (shows all available agents + direct chat option)
|
|
232
|
+
alita-cli agent chat
|
|
233
|
+
|
|
234
|
+
# Chat with a specific local agent
|
|
235
|
+
alita-cli agent chat .alita/agents/my-agent.agent.md
|
|
236
|
+
|
|
237
|
+
# Chat with a platform agent
|
|
238
|
+
alita-cli agent chat my-agent-name
|
|
239
|
+
```
|
|
240
|
+
|
|
241
|
+
### Direct Chat Mode (No Agent)
|
|
242
|
+
|
|
243
|
+
You can start a chat session directly with the LLM without any agent configuration:
|
|
244
|
+
|
|
245
|
+
```bash
|
|
246
|
+
alita-cli agent chat
|
|
247
|
+
# Select option 1: "Direct chat with model (no agent)"
|
|
248
|
+
```
|
|
249
|
+
|
|
250
|
+
This is useful for quick interactions or testing without setting up an agent.
|
|
251
|
+
|
|
252
|
+
### Chat Commands
|
|
253
|
+
|
|
254
|
+
During a chat session, you can use the following commands:
|
|
255
|
+
|
|
256
|
+
| Command | Description |
|
|
257
|
+
|---------|-------------|
|
|
258
|
+
| `/help` | Show all available commands |
|
|
259
|
+
| `/model` | Switch to a different model (preserves chat history) |
|
|
260
|
+
| `/add_mcp` | Add an MCP server from your local mcp.json (preserves chat history) |
|
|
261
|
+
| `/add_toolkit` | Add a toolkit from $ALITA_DIR/tools (preserves chat history) |
|
|
262
|
+
| `/clear` | Clear conversation history |
|
|
263
|
+
| `/history` | Show conversation history |
|
|
264
|
+
| `/save` | Save conversation to file |
|
|
265
|
+
| `exit` | End conversation |
|
|
266
|
+
|
|
267
|
+
### Enhanced Input Features
|
|
268
|
+
|
|
269
|
+
The chat interface includes readline-based input enhancements:
|
|
270
|
+
|
|
271
|
+
| Feature | Key/Action |
|
|
272
|
+
|---------|------------|
|
|
273
|
+
| **Tab completion** | Press `Tab` to autocomplete commands (e.g., `/mo` → `/model`) |
|
|
274
|
+
| **Command history** | `↑` / `↓` arrows to navigate through previous messages |
|
|
275
|
+
| **Cursor movement** | `←` / `→` arrows to move within the current line |
|
|
276
|
+
| **Start of line** | `Ctrl+A` jumps to the beginning of the line |
|
|
277
|
+
| **End of line** | `Ctrl+E` jumps to the end of the line |
|
|
278
|
+
| **Delete word** | `Ctrl+W` deletes the word before cursor |
|
|
279
|
+
| **Clear line** | `Ctrl+U` clears from cursor to beginning of line |
|
|
280
|
+
|
|
281
|
+
### Dynamic Model Switching
|
|
282
|
+
|
|
283
|
+
Use `/model` to switch models on the fly:
|
|
284
|
+
|
|
285
|
+
```
|
|
286
|
+
> /model
|
|
287
|
+
|
|
288
|
+
🔧 Select a model:
|
|
289
|
+
|
|
290
|
+
# Model Type
|
|
291
|
+
1 gpt-4o openai
|
|
292
|
+
2 gpt-4o-mini openai
|
|
293
|
+
3 claude-3-sonnet anthropic
|
|
294
|
+
|
|
295
|
+
Select model number: 1
|
|
296
|
+
|
|
297
|
+
✓ Selected: gpt-4o
|
|
298
|
+
╭──────────────────────────────────────────────────────────────╮
|
|
299
|
+
│ ℹ Model switched to gpt-4o. Agent state reset, chat history │
|
|
300
|
+
│ preserved. │
|
|
301
|
+
╰──────────────────────────────────────────────────────────────╯
|
|
302
|
+
```
|
|
303
|
+
|
|
304
|
+
### Adding MCP Servers Dynamically
|
|
305
|
+
|
|
306
|
+
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`):
|
|
307
|
+
|
|
308
|
+
```
|
|
309
|
+
> /add_mcp
|
|
310
|
+
|
|
311
|
+
🔌 Select an MCP server to add:
|
|
312
|
+
|
|
313
|
+
# Server Type Command/URL
|
|
314
|
+
1 playwright stdio npx @playwright/mcp@latest
|
|
315
|
+
2 filesystem stdio npx @anthropic/mcp-fs
|
|
316
|
+
|
|
317
|
+
Select MCP server number: 1
|
|
318
|
+
|
|
319
|
+
✓ Selected: playwright
|
|
320
|
+
╭──────────────────────────────────────────────────────────────╮
|
|
321
|
+
│ ℹ Added MCP: playwright. Agent state reset, chat history │
|
|
322
|
+
│ preserved. │
|
|
323
|
+
╰──────────────────────────────────────────────────────────────╯
|
|
324
|
+
```
|
|
325
|
+
|
|
326
|
+
### Adding Toolkits Dynamically
|
|
327
|
+
|
|
328
|
+
Use `/add_toolkit` to add toolkits from your `$ALITA_DIR/tools` directory (default: `.alita/tools`):
|
|
329
|
+
|
|
330
|
+
```
|
|
331
|
+
> /add_toolkit
|
|
332
|
+
|
|
333
|
+
🧰 Select a toolkit to add:
|
|
334
|
+
|
|
335
|
+
# Toolkit Type File
|
|
336
|
+
1 jira jira jira-config.json
|
|
337
|
+
2 github github github-config.json
|
|
338
|
+
|
|
339
|
+
Select toolkit number: 1
|
|
340
|
+
|
|
341
|
+
✓ Selected: jira
|
|
342
|
+
╭──────────────────────────────────────────────────────────────╮
|
|
343
|
+
│ ℹ Added toolkit: jira. Agent state reset, chat history │
|
|
344
|
+
│ preserved. │
|
|
345
|
+
╰──────────────────────────────────────────────────────────────╯
|
|
346
|
+
```
|
|
347
|
+
|
|
203
348
|
|
|
204
349
|
|
|
205
350
|
Using SDK with Streamlit for Local Development
|