agentsystems-sdk 0.5.0__py3-none-any.whl → 0.5.2__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.
- agentsystems_sdk/commands/init.py +36 -36
- agentsystems_sdk/licenses/python/ATTRIBUTIONS.md +26 -29
- agentsystems_sdk/licenses/python/THIRD_PARTY_LICENSES.json +25 -25
- agentsystems_sdk/licenses/python/THIRD_PARTY_REQUIREMENTS.txt +14 -14
- {agentsystems_sdk-0.5.0.dist-info → agentsystems_sdk-0.5.2.dist-info}/METADATA +1 -1
- {agentsystems_sdk-0.5.0.dist-info → agentsystems_sdk-0.5.2.dist-info}/RECORD +11 -11
- {agentsystems_sdk-0.5.0.dist-info → agentsystems_sdk-0.5.2.dist-info}/WHEEL +0 -0
- {agentsystems_sdk-0.5.0.dist-info → agentsystems_sdk-0.5.2.dist-info}/entry_points.txt +0 -0
- {agentsystems_sdk-0.5.0.dist-info → agentsystems_sdk-0.5.2.dist-info}/licenses/LICENSE +0 -0
- {agentsystems_sdk-0.5.0.dist-info → agentsystems_sdk-0.5.2.dist-info}/licenses/NOTICE +0 -0
- {agentsystems_sdk-0.5.0.dist-info → agentsystems_sdk-0.5.2.dist-info}/top_level.txt +0 -0
@@ -3,8 +3,9 @@
|
|
3
3
|
from __future__ import annotations
|
4
4
|
|
5
5
|
import pathlib
|
6
|
-
import
|
6
|
+
import secrets
|
7
7
|
import shutil
|
8
|
+
import string
|
8
9
|
import sys
|
9
10
|
import uuid
|
10
11
|
from typing import Optional
|
@@ -30,6 +31,20 @@ from ..utils import (
|
|
30
31
|
console = Console()
|
31
32
|
|
32
33
|
|
34
|
+
def generate_secure_password(length: int = 16) -> str:
|
35
|
+
"""Generate a secure random alphanumeric password.
|
36
|
+
|
37
|
+
Args:
|
38
|
+
length: Password length (default 16)
|
39
|
+
|
40
|
+
Returns:
|
41
|
+
A secure random password containing letters and digits
|
42
|
+
"""
|
43
|
+
# Use alphanumeric characters only for simplicity and compatibility
|
44
|
+
alphabet = string.ascii_letters + string.digits
|
45
|
+
return "".join(secrets.choice(alphabet) for _ in range(length))
|
46
|
+
|
47
|
+
|
33
48
|
def init_command(
|
34
49
|
project_dir: Optional[pathlib.Path] = typer.Argument(
|
35
50
|
None,
|
@@ -69,40 +84,23 @@ def init_command(
|
|
69
84
|
|
70
85
|
# Prompt for missing tokens only if running interactively
|
71
86
|
|
72
|
-
# ---------- Langfuse initial setup
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
password = typer.prompt("Admin password (min 8 chars)", hide_input=True)
|
90
|
-
if len(password) >= 8:
|
91
|
-
break
|
92
|
-
console.print("[red]Password must be at least 8 characters.[/red]")
|
93
|
-
|
94
|
-
pub_key = f"pk-lf-{uuid.uuid4()}"
|
95
|
-
secret_key = f"sk-lf-{uuid.uuid4()}"
|
96
|
-
else:
|
97
|
-
org_name = "ExampleOrg"
|
98
|
-
org_id = "org"
|
99
|
-
project_id = "default"
|
100
|
-
project_name = "Default"
|
101
|
-
user_name = "Admin"
|
102
|
-
email = ""
|
103
|
-
password = ""
|
104
|
-
pub_key = f"pk-lf-{uuid.uuid4()}"
|
105
|
-
secret_key = f"sk-lf-{uuid.uuid4()}"
|
87
|
+
# ---------- Langfuse initial setup ----------
|
88
|
+
# Auto-generate credentials for better onboarding experience
|
89
|
+
org_name = "Default Organization"
|
90
|
+
org_id = "default"
|
91
|
+
project_id = "default"
|
92
|
+
project_name = "Default"
|
93
|
+
user_name = "Admin"
|
94
|
+
email = "admin@localhost.local" # Generic email for local deployment
|
95
|
+
password = generate_secure_password() # Auto-generated secure password
|
96
|
+
pub_key = f"pk-lf-{uuid.uuid4()}"
|
97
|
+
secret_key = f"sk-lf-{uuid.uuid4()}"
|
98
|
+
|
99
|
+
# Inform user about auto-generated credentials
|
100
|
+
# TODO: Uncomment once Langfuse documentation is available
|
101
|
+
# if sys.stdin.isatty():
|
102
|
+
# console.print("\n[bold cyan]✅ Langfuse credentials auto-generated[/bold cyan]")
|
103
|
+
# console.print(" Credentials saved to .env file and available in the UI configuration section")
|
106
104
|
|
107
105
|
# Get the path to the scaffold directory
|
108
106
|
import os
|
@@ -186,7 +184,9 @@ def init_command(
|
|
186
184
|
required_images = get_required_images()
|
187
185
|
|
188
186
|
if not required_images:
|
189
|
-
|
187
|
+
# No images configured for pulling during init - this is expected
|
188
|
+
# Images will be pulled automatically during 'agentsystems up' instead
|
189
|
+
pass
|
190
190
|
else:
|
191
191
|
pull_task = progress.add_task(
|
192
192
|
"Pulling Docker images", total=len(required_images)
|
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
This package relies on the third-party Python packages listed below.
|
4
4
|
|
5
|
-
## agentsystems-sdk 0.5.
|
5
|
+
## agentsystems-sdk 0.5.2
|
6
6
|
- License: UNKNOWN
|
7
7
|
- URL: UNKNOWN
|
8
8
|
- Author: AgentSystems <support@agentsystems.ai>
|
@@ -308,9 +308,9 @@ one at http://mozilla.org/MPL/2.0/.
|
|
308
308
|
```
|
309
309
|
</details>
|
310
310
|
|
311
|
-
## cffi
|
312
|
-
- License:
|
313
|
-
- URL:
|
311
|
+
## cffi 2.0.0
|
312
|
+
- License: UNKNOWN
|
313
|
+
- URL: https://cffi.readthedocs.io/en/latest/whatsnew.html
|
314
314
|
- Author: Armin Rigo, Maciej Fijalkowski
|
315
315
|
|
316
316
|
<details><summary>License text</summary>
|
@@ -321,7 +321,7 @@ Except when otherwise stated (look for LICENSE files in directories or
|
|
321
321
|
information at the beginning of each file) all software and
|
322
322
|
documentation is licensed as follows:
|
323
323
|
|
324
|
-
|
324
|
+
MIT No Attribution
|
325
325
|
|
326
326
|
Permission is hereby granted, free of charge, to any person
|
327
327
|
obtaining a copy of this software and associated documentation
|
@@ -329,10 +329,7 @@ documentation is licensed as follows:
|
|
329
329
|
restriction, including without limitation the rights to use,
|
330
330
|
copy, modify, merge, publish, distribute, sublicense, and/or
|
331
331
|
sell copies of the Software, and to permit persons to whom the
|
332
|
-
Software is furnished to do so
|
333
|
-
|
334
|
-
The above copyright notice and this permission notice shall be included
|
335
|
-
in all copies or substantial portions of the Software.
|
332
|
+
Software is furnished to do so.
|
336
333
|
|
337
334
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
338
335
|
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
@@ -410,7 +407,7 @@ SOFTWARE.
|
|
410
407
|
```
|
411
408
|
</details>
|
412
409
|
|
413
|
-
## click 8.
|
410
|
+
## click 8.3.0
|
414
411
|
- License: UNKNOWN
|
415
412
|
- URL: https://github.com/pallets/click/
|
416
413
|
- Author: UNKNOWN
|
@@ -450,7 +447,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
450
447
|
```
|
451
448
|
</details>
|
452
449
|
|
453
|
-
## coverage 7.10.
|
450
|
+
## coverage 7.10.7
|
454
451
|
- License: Apache-2.0
|
455
452
|
- URL: https://github.com/nedbat/coveragepy
|
456
453
|
- Author: Ned Batchelder and 243 others
|
@@ -639,10 +636,10 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
639
636
|
```
|
640
637
|
</details>
|
641
638
|
|
642
|
-
## cryptography
|
643
|
-
- License:
|
639
|
+
## cryptography 46.0.1
|
640
|
+
- License: UNKNOWN
|
644
641
|
- URL: https://github.com/pyca/cryptography
|
645
|
-
- Author: The
|
642
|
+
- Author: The Python Cryptographic Authority and individual contributors <cryptography-dev@python.org>
|
646
643
|
|
647
644
|
<details><summary>License text</summary>
|
648
645
|
|
@@ -1153,7 +1150,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
1153
1150
|
```
|
1154
1151
|
</details>
|
1155
1152
|
|
1156
|
-
## docutils 0.22
|
1153
|
+
## docutils 0.22.2
|
1157
1154
|
- License: BSD License; GNU General Public License (GPL); Public Domain
|
1158
1155
|
- URL: https://docutils.sourceforge.io
|
1159
1156
|
- Author: David Goodger <goodger@python.org>
|
@@ -1566,7 +1563,7 @@ For more information, please refer to <http://unlicense.org>
|
|
1566
1563
|
```
|
1567
1564
|
</details>
|
1568
1565
|
|
1569
|
-
## identify 2.6.
|
1566
|
+
## identify 2.6.14
|
1570
1567
|
- License: MIT
|
1571
1568
|
- URL: https://github.com/pre-commit/identify
|
1572
1569
|
- Author: Chris Kuehl
|
@@ -2348,7 +2345,7 @@ THE SOFTWARE.
|
|
2348
2345
|
```
|
2349
2346
|
</details>
|
2350
2347
|
|
2351
|
-
## pycparser 2.
|
2348
|
+
## pycparser 2.23
|
2352
2349
|
- License: BSD License
|
2353
2350
|
- URL: https://github.com/eliben/pycparser
|
2354
2351
|
- Author: Eli Bendersky
|
@@ -2457,7 +2454,7 @@ THE SOFTWARE.
|
|
2457
2454
|
```
|
2458
2455
|
</details>
|
2459
2456
|
|
2460
|
-
## pytest 8.4.
|
2457
|
+
## pytest 8.4.2
|
2461
2458
|
- License: MIT License
|
2462
2459
|
- URL: https://docs.pytest.org/en/latest/
|
2463
2460
|
- Author: Holger Krekel, Bruno Oliveira, Ronny Pfannschmidt, Floris Bruynooghe, Brianna Laugher, Florian Bruhin, Others (See AUTHORS)
|
@@ -2490,10 +2487,10 @@ SOFTWARE.
|
|
2490
2487
|
```
|
2491
2488
|
</details>
|
2492
2489
|
|
2493
|
-
## pytest-cov
|
2494
|
-
- License: MIT
|
2495
|
-
- URL: https://
|
2496
|
-
- Author: Marc Schlaich
|
2490
|
+
## pytest-cov 7.0.0
|
2491
|
+
- License: MIT License
|
2492
|
+
- URL: https://pytest-cov.readthedocs.io/en/latest/changelog.html
|
2493
|
+
- Author: Marc Schlaich <marc.schlaich@gmail.com>
|
2497
2494
|
|
2498
2495
|
<details><summary>License text</summary>
|
2499
2496
|
|
@@ -2562,7 +2559,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
2562
2559
|
```
|
2563
2560
|
</details>
|
2564
2561
|
|
2565
|
-
## PyYAML 6.0.
|
2562
|
+
## PyYAML 6.0.3
|
2566
2563
|
- License: MIT License
|
2567
2564
|
- URL: https://pyyaml.org/
|
2568
2565
|
- Author: Kirill Simonov
|
@@ -3240,10 +3237,10 @@ SOFTWARE.
|
|
3240
3237
|
```
|
3241
3238
|
</details>
|
3242
3239
|
|
3243
|
-
## SecretStorage 3.
|
3244
|
-
- License:
|
3240
|
+
## SecretStorage 3.4.0
|
3241
|
+
- License: UNKNOWN
|
3245
3242
|
- URL: https://github.com/mitya57/secretstorage
|
3246
|
-
- Author: Dmitry Shachnev
|
3243
|
+
- Author: Dmitry Shachnev <mitya57@gmail.com>
|
3247
3244
|
|
3248
3245
|
<details><summary>License text</summary>
|
3249
3246
|
|
@@ -3302,8 +3299,8 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
3302
3299
|
```
|
3303
3300
|
</details>
|
3304
3301
|
|
3305
|
-
## twine 6.
|
3306
|
-
- License:
|
3302
|
+
## twine 6.2.0
|
3303
|
+
- License: UNKNOWN
|
3307
3304
|
- URL: https://twine.readthedocs.io/
|
3308
3305
|
- Author: Donald Stufft and individual contributors <donald@stufft.io>
|
3309
3306
|
|
@@ -3488,7 +3485,7 @@ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
3488
3485
|
```
|
3489
3486
|
</details>
|
3490
3487
|
|
3491
|
-
## typer 0.
|
3488
|
+
## typer 0.19.2
|
3492
3489
|
- License: MIT License
|
3493
3490
|
- URL: https://github.com/fastapi/typer
|
3494
3491
|
- Author: =?utf-8?q?Sebasti=C3=A1n_Ram=C3=ADrez?= <tiangolo@gmail.com>
|
@@ -5,7 +5,7 @@
|
|
5
5
|
"LicenseText": "Copyright (c) 2017-2021 Ingy d\u00f6t Net\nCopyright (c) 2006-2016 Kirill Simonov\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\nof the Software, and to permit persons to whom the Software is furnished to do\nso, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
|
6
6
|
"Name": "PyYAML",
|
7
7
|
"URL": "https://pyyaml.org/",
|
8
|
-
"Version": "6.0.
|
8
|
+
"Version": "6.0.3"
|
9
9
|
},
|
10
10
|
{
|
11
11
|
"Author": "Georg Brandl <georg@python.org>",
|
@@ -16,12 +16,12 @@
|
|
16
16
|
"Version": "2.19.2"
|
17
17
|
},
|
18
18
|
{
|
19
|
-
"Author": "Dmitry Shachnev",
|
20
|
-
"License": "
|
19
|
+
"Author": "Dmitry Shachnev <mitya57@gmail.com>",
|
20
|
+
"License": "UNKNOWN",
|
21
21
|
"LicenseText": "Copyright 2012-2018 Dmitry Shachnev <mitya57@gmail.com>\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n1. Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n2. Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n3. Neither the name of the University nor the names of its contributors may be\n used to endorse or promote products derived from this software without\n specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\nANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n",
|
22
22
|
"Name": "SecretStorage",
|
23
23
|
"URL": "https://github.com/mitya57/secretstorage",
|
24
|
-
"Version": "3.
|
24
|
+
"Version": "3.4.0"
|
25
25
|
},
|
26
26
|
{
|
27
27
|
"Author": "AgentSystems <support@agentsystems.ai>",
|
@@ -29,7 +29,7 @@
|
|
29
29
|
"LicenseText": " Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright [yyyy] [name of copyright owner]\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n",
|
30
30
|
"Name": "agentsystems-sdk",
|
31
31
|
"URL": "UNKNOWN",
|
32
|
-
"Version": "0.5.
|
32
|
+
"Version": "0.5.2"
|
33
33
|
},
|
34
34
|
{
|
35
35
|
"Author": "\"Jason R. Coombs\" <jaraco@jaraco.com>",
|
@@ -57,11 +57,11 @@
|
|
57
57
|
},
|
58
58
|
{
|
59
59
|
"Author": "Armin Rigo, Maciej Fijalkowski",
|
60
|
-
"License": "
|
61
|
-
"LicenseText": "\nExcept when otherwise stated (look for LICENSE files in directories or\ninformation at the beginning of each file) all software and\ndocumentation is licensed as follows: \n\n
|
60
|
+
"License": "UNKNOWN",
|
61
|
+
"LicenseText": "\nExcept when otherwise stated (look for LICENSE files in directories or\ninformation at the beginning of each file) all software and\ndocumentation is licensed as follows: \n\n MIT No Attribution\n\n Permission is hereby granted, free of charge, to any person \n obtaining a copy of this software and associated documentation \n files (the \"Software\"), to deal in the Software without \n restriction, including without limitation the rights to use, \n copy, modify, merge, publish, distribute, sublicense, and/or \n sell copies of the Software, and to permit persons to whom the \n Software is furnished to do so.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS \n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, \n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL \n THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER \n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING \n FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER \n DEALINGS IN THE SOFTWARE.\n\n",
|
62
62
|
"Name": "cffi",
|
63
|
-
"URL": "
|
64
|
-
"Version": "
|
63
|
+
"URL": "https://cffi.readthedocs.io/en/latest/whatsnew.html",
|
64
|
+
"Version": "2.0.0"
|
65
65
|
},
|
66
66
|
{
|
67
67
|
"Author": "Anthony Sottile",
|
@@ -85,7 +85,7 @@
|
|
85
85
|
"LicenseText": "Copyright 2014 Pallets\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n\n2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n\n3. Neither the name of the copyright holder nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A\nPARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nHOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED\nTO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\nPROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\nLIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\nNEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n",
|
86
86
|
"Name": "click",
|
87
87
|
"URL": "https://github.com/pallets/click/",
|
88
|
-
"Version": "8.
|
88
|
+
"Version": "8.3.0"
|
89
89
|
},
|
90
90
|
{
|
91
91
|
"Author": "Ned Batchelder and 243 others",
|
@@ -93,15 +93,15 @@
|
|
93
93
|
"LicenseText": "\n Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n",
|
94
94
|
"Name": "coverage",
|
95
95
|
"URL": "https://github.com/nedbat/coveragepy",
|
96
|
-
"Version": "7.10.
|
96
|
+
"Version": "7.10.7"
|
97
97
|
},
|
98
98
|
{
|
99
|
-
"Author": "The
|
100
|
-
"License": "
|
99
|
+
"Author": "The Python Cryptographic Authority and individual contributors <cryptography-dev@python.org>",
|
100
|
+
"License": "UNKNOWN",
|
101
101
|
"LicenseText": "This software is made available under the terms of *either* of the licenses\nfound in LICENSE.APACHE or LICENSE.BSD. Contributions to cryptography are made\nunder the terms of *both* these licenses.\n",
|
102
102
|
"Name": "cryptography",
|
103
103
|
"URL": "https://github.com/pyca/cryptography",
|
104
|
-
"Version": "
|
104
|
+
"Version": "46.0.1"
|
105
105
|
},
|
106
106
|
{
|
107
107
|
"Author": "Vinay Sajip",
|
@@ -125,7 +125,7 @@
|
|
125
125
|
"LicenseText": ".. include:: docs/header0.rst\n\n==================\n Copying Docutils\n==================\n\n:Author: David Goodger\n:Contact: goodger@python.org\n:Date: $Date: 2024-11-10 00:36:49 +0100 (So, 10. Nov 2024) $\n:Web site: https://docutils.sourceforge.io/\n:Copyright: This document has been placed in the public domain.\n\nMost of the files included in this project have been placed in the\npublic domain, and therefore have no license requirements and no\nrestrictions on copying or usage; see the `Public Domain Dedication`_\nbelow. There are exceptions_, listed below.\nFiles in the Sandbox_ are not distributed with Docutils releases and\nmay have different license terms.\n\n\nPublic Domain Dedication\n========================\n\nThe persons who have associated their work with this project (the\n\"Dedicator\": David Goodger and the many contributors to the Docutils\nproject) hereby dedicate the entire copyright, less the exceptions_\nlisted below, in the work of authorship known as \"Docutils\" identified\nbelow (the \"Work\") to the public domain.\n\nThe primary repository for the Work is the Internet World Wide Web\nsite <https://docutils.sourceforge.io/>. The Work consists of the\nfiles within the \"docutils\" module of the Docutils project Subversion\nrepository (http://svn.code.sf.net/p/docutils/code/),\nwhose Internet web interface is located at\n<https://sourceforge.net/p/docutils/code>. Files dedicated to the\npublic domain may be identified by the inclusion, near the beginning\nof each file, of a declaration of the form::\n\n Copyright: This document/module/DTD/stylesheet/file/etc. has been\n placed in the public domain.\n\nDedicator makes this dedication for the benefit of the public at large\nand to the detriment of Dedicator's heirs and successors. Dedicator\nintends this dedication to be an overt act of relinquishment in\nperpetuity of all present and future rights under copyright law,\nwhether vested or contingent, in the Work. Dedicator understands that\nsuch relinquishment of all rights includes the relinquishment of all\nrights to enforce (by lawsuit or otherwise) those copyrights in the\nWork.\n\nDedicator recognizes that, once placed in the public domain, the Work\nmay be freely reproduced, distributed, transmitted, used, modified,\nbuilt upon, or otherwise exploited by anyone for any purpose,\ncommercial or non-commercial, and in any way, including by methods\nthat have not yet been invented or conceived.\n\n(This dedication is derived from the text of the `Creative Commons\nPublic Domain Dedication`. [#]_)\n\n.. [#] Creative Commons has `retired this legal tool`__ and does not\n recommend that it be applied to works: This tool is based on United\n States law and may not be applicable outside the US. For dedicating new\n works to the public domain, Creative Commons recommend the replacement\n Public Domain Dedication CC0_ (CC zero, \"No Rights Reserved\"). So does\n the Free Software Foundation in its license-list_.\n\n __ http://creativecommons.org/retiredlicenses\n .. _CC0: http://creativecommons.org/about/cc0\n\nExceptions\n==========\n\nThe exceptions to the `Public Domain Dedication`_ above are:\n\n* docutils/utils/smartquotes.py\n\n Copyright \u00a9 2011 G\u00fcnter Milde,\n based on `SmartyPants`_ \u00a9 2003 John Gruber\n (released under a \"revised\" `BSD 3-Clause License`_ included in the file)\n and smartypants.py \u00a9 2004, 2007 Chad Miller.\n Released under the terms of the `BSD 2-Clause License`_\n (`local copy <licenses/BSD-2-Clause.rst>`__).\n\n .. _SmartyPants: http://daringfireball.net/projects/smartypants/\n\n* docutils/utils/math/latex2mathml.py\n\n Copyright \u00a9 Jens J\u00f8rgen Mortensen, G\u00fcnter Milde.\n Released under the terms of the `BSD 2-Clause License`_\n (`local copy <licenses/BSD-2-Clause.rst>`__).\n\n* | docutils/utils/math/math2html.py,\n | docutils/writers/html5_polyglot/math.css\n\n Copyright \u00a9 2009,2010 Alex Fern\u00e1ndez; 2021 G\u00fcnter Milde\n\n These files were part of eLyXer_, released under the `GNU\n General Public License`_ version 3 or later. The author relicensed\n them for Docutils under the terms of the `BSD 2-Clause License`_\n (`local copy <licenses/BSD-2-Clause.rst>`__).\n\n .. _eLyXer: https://github.com/alexfernandez/elyxer\n\n* | docutils/__main__.py,\n | docutils/parsers/commonmark_wrapper.py,\n | docutils/parsers/recommonmark_wrapper.py,\n | docutils/utils/error_reporting.py,\n | docutils/utils/math/__init__.py,\n | docutils/utils/math/latex2mathml.py,\n | docutils/utils/math/tex2mathml_extern.py,\n | docutils/utils/punctuation_chars.py,\n | docutils/utils/smartquotes.py,\n | docutils/writers/html5_polyglot/__init__.py,\n | docutils/writers/html5_polyglot/\\*.css,\n | docutils/writers/latex2e/docutils.sty,\n | docutils/writers/xetex/__init__.py,\n | test/test_parsers/test_recommonmark/\\*.py,\n | test/test_parsers/test_rst/test_directives/test__init__.py,\n | test/test_parsers/test_rst/test_directives/test_code_parsing.py,\n | test/test_parsers/test_rst/test_line_length_limit_default.py,\n | test/test_parsers/test_rst/test_line_length_limit.py,\n | test/test_writers/test_latex2e_misc.py,\n | test/transforms/test_smartquotes.py,\n | tools/docutils-cli.py,\n | tools/rst2html5.py\n\n Copyright \u00a9 G\u00fcnter Milde.\n Released under the terms of the `BSD 2-Clause License`_\n (`local copy <licenses/BSD-2-Clause.rst>`__).\n\n* tools/editors/emacs/rst.el\n\n copyright by Free Software Foundation, Inc.,\n released under the `GNU General Public License`_ version 3 or later\n (`local copy`__).\n\n __ licenses/gpl-3-0.rst\n\nAll used licenses are OSI-approved_ and GPL-compatible_.\n\nPlaintext versions of all the linked-to licenses are provided in the\nlicenses_ directory.\n\n.. _sandbox: https://docutils.sourceforge.io/sandbox/README.html\n.. _licenses: licenses/\n.. _GNU General Public License: https://www.gnu.org/copyleft/gpl.html\n.. _BSD 2-Clause License: http://opensource.org/licenses/BSD-2-Clause\n.. _BSD 3-Clause License: https://opensource.org/licenses/BSD-3-Clause\n.. _OSI-approved: http://opensource.org/licenses/\n.. _license-list:\n.. _GPL-compatible: https://www.gnu.org/licenses/license-list.html\n",
|
126
126
|
"Name": "docutils",
|
127
127
|
"URL": "https://docutils.sourceforge.io",
|
128
|
-
"Version": "0.22"
|
128
|
+
"Version": "0.22.2"
|
129
129
|
},
|
130
130
|
{
|
131
131
|
"Author": "UNKNOWN",
|
@@ -149,7 +149,7 @@
|
|
149
149
|
"LicenseText": "Copyright (c) 2017 Chris Kuehl, Anthony Sottile\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n",
|
150
150
|
"Name": "identify",
|
151
151
|
"URL": "https://github.com/pre-commit/identify",
|
152
|
-
"Version": "2.6.
|
152
|
+
"Version": "2.6.14"
|
153
153
|
},
|
154
154
|
{
|
155
155
|
"Author": "Kim Davies <kim+pypi@gumleaf.org>",
|
@@ -293,7 +293,7 @@
|
|
293
293
|
"LicenseText": "pycparser -- A C parser in Python\n\nCopyright (c) 2008-2022, Eli Bendersky\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification,\nare permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this \n list of conditions and the following disclaimer.\n* Redistributions in binary form must reproduce the above copyright notice, \n this list of conditions and the following disclaimer in the documentation \n and/or other materials provided with the distribution.\n* Neither the name of the copyright holder nor the names of its contributors may \n be used to endorse or promote products derived from this software without \n specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND \nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED \nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE \nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE \nLIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR \nCONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE \nGOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) \nHOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT \nLIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT \nOF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n",
|
294
294
|
"Name": "pycparser",
|
295
295
|
"URL": "https://github.com/eliben/pycparser",
|
296
|
-
"Version": "2.
|
296
|
+
"Version": "2.23"
|
297
297
|
},
|
298
298
|
{
|
299
299
|
"Author": "Thomas Kluyver <thomas@kluyver.me.uk>",
|
@@ -309,15 +309,15 @@
|
|
309
309
|
"LicenseText": "The MIT License (MIT)\n\nCopyright (c) 2004 Holger Krekel and others\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\nof the Software, and to permit persons to whom the Software is furnished to do\nso, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
|
310
310
|
"Name": "pytest",
|
311
311
|
"URL": "https://docs.pytest.org/en/latest/",
|
312
|
-
"Version": "8.4.
|
312
|
+
"Version": "8.4.2"
|
313
313
|
},
|
314
314
|
{
|
315
|
-
"Author": "Marc Schlaich",
|
316
|
-
"License": "MIT",
|
315
|
+
"Author": "Marc Schlaich <marc.schlaich@gmail.com>",
|
316
|
+
"License": "MIT License",
|
317
317
|
"LicenseText": "The MIT License\n\nCopyright (c) 2010 Meme Dough\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n",
|
318
318
|
"Name": "pytest-cov",
|
319
|
-
"URL": "https://
|
320
|
-
"Version": "
|
319
|
+
"URL": "https://pytest-cov.readthedocs.io/en/latest/changelog.html",
|
320
|
+
"Version": "7.0.0"
|
321
321
|
},
|
322
322
|
{
|
323
323
|
"Author": "Saurabh Kumar",
|
@@ -385,11 +385,11 @@
|
|
385
385
|
},
|
386
386
|
{
|
387
387
|
"Author": "Donald Stufft and individual contributors <donald@stufft.io>",
|
388
|
-
"License": "
|
388
|
+
"License": "UNKNOWN",
|
389
389
|
"LicenseText": " Apache License\n Version 2.0, January 2004\n https://www.apache.org/licenses/\n\nTERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n",
|
390
390
|
"Name": "twine",
|
391
391
|
"URL": "https://twine.readthedocs.io/",
|
392
|
-
"Version": "6.
|
392
|
+
"Version": "6.2.0"
|
393
393
|
},
|
394
394
|
{
|
395
395
|
"Author": "=?utf-8?q?Sebasti=C3=A1n_Ram=C3=ADrez?= <tiangolo@gmail.com>",
|
@@ -397,7 +397,7 @@
|
|
397
397
|
"LicenseText": "The MIT License (MIT)\n\nCopyright (c) 2019 Sebasti\u00e1n Ram\u00edrez\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n",
|
398
398
|
"Name": "typer",
|
399
399
|
"URL": "https://github.com/fastapi/typer",
|
400
|
-
"Version": "0.
|
400
|
+
"Version": "0.19.2"
|
401
401
|
},
|
402
402
|
{
|
403
403
|
"Author": "\"Guido van Rossum, Jukka Lehtosalo, \u0141ukasz Langa, Michael Lee\" <levkivskyi@gmail.com>",
|
@@ -1,18 +1,18 @@
|
|
1
1
|
backports.tarfile==1.2.0
|
2
2
|
build==1.3.0
|
3
3
|
certifi==2025.8.3
|
4
|
-
cffi==
|
4
|
+
cffi==2.0.0
|
5
5
|
cfgv==3.4.0
|
6
6
|
charset-normalizer==3.4.3
|
7
|
-
click==8.
|
8
|
-
coverage==7.10.
|
9
|
-
cryptography==
|
7
|
+
click==8.3.0
|
8
|
+
coverage==7.10.7
|
9
|
+
cryptography==46.0.1
|
10
10
|
distlib==0.4.0
|
11
11
|
docker==7.1.0
|
12
|
-
docutils==0.22
|
12
|
+
docutils==0.22.2
|
13
13
|
filelock==3.19.1
|
14
14
|
id==1.5.0
|
15
|
-
identify==2.6.
|
15
|
+
identify==2.6.14
|
16
16
|
idna==3.10
|
17
17
|
importlib_metadata==8.7.0
|
18
18
|
iniconfig==2.1.0
|
@@ -32,26 +32,26 @@ platformdirs==4.4.0
|
|
32
32
|
pluggy==1.6.0
|
33
33
|
pre_commit==4.3.0
|
34
34
|
prettytable==3.16.0
|
35
|
-
pycparser==2.
|
35
|
+
pycparser==2.23
|
36
36
|
Pygments==2.19.2
|
37
37
|
pyproject_hooks==1.2.0
|
38
|
-
pytest==8.4.
|
39
|
-
pytest-cov==
|
38
|
+
pytest==8.4.2
|
39
|
+
pytest-cov==7.0.0
|
40
40
|
python-dotenv==1.1.1
|
41
|
-
PyYAML==6.0.
|
41
|
+
PyYAML==6.0.3
|
42
42
|
readme_renderer==44.0
|
43
43
|
requests==2.32.5
|
44
44
|
requests-mock==1.12.1
|
45
45
|
requests-toolbelt==1.0.0
|
46
46
|
rfc3986==2.0.0
|
47
47
|
rich==14.1.0
|
48
|
-
SecretStorage==3.
|
48
|
+
SecretStorage==3.4.0
|
49
49
|
shellingham==1.5.4
|
50
50
|
tomli==2.2.1
|
51
|
-
twine==6.
|
52
|
-
typer==0.
|
51
|
+
twine==6.2.0
|
52
|
+
typer==0.19.2
|
53
53
|
typing_extensions==4.15.0
|
54
54
|
urllib3==2.5.0
|
55
55
|
virtualenv==20.34.0
|
56
|
-
wcwidth==0.2.
|
56
|
+
wcwidth==0.2.14
|
57
57
|
zipp==3.23.0
|
@@ -7,7 +7,7 @@ agentsystems_sdk/commands/__init__.py,sha256=spKxXRRsyD8huKx8U2E_NOd2AspB1cr6Fto
|
|
7
7
|
agentsystems_sdk/commands/artifacts.py,sha256=KTOEu0Cg9aeFEaNfOUW-lSJM7dewOC9KJYtyw8vESM4,1113
|
8
8
|
agentsystems_sdk/commands/clean.py,sha256=-wyy7CleRmEew3SUlff0iYsCMLsj_JcwhlpqgQYhZZk,1942
|
9
9
|
agentsystems_sdk/commands/down.py,sha256=blWdlGV70pecXkbeOd7mDzeB80jSE-e7cHbLoCzJcas,4389
|
10
|
-
agentsystems_sdk/commands/init.py,sha256=
|
10
|
+
agentsystems_sdk/commands/init.py,sha256=xzc-zcN-8PpxpAuAGLwObRbBdx9V9c0QN12HA6Llgsc,7352
|
11
11
|
agentsystems_sdk/commands/logs.py,sha256=2BpoXuQr_Vq_ou7oj1x-oYC552enWZiuKqoOEJOXDd4,1225
|
12
12
|
agentsystems_sdk/commands/restart.py,sha256=0dxGHCxAI-_fjIzy_BYwnk_-pfR8UhffHVAW6s12o0k,2641
|
13
13
|
agentsystems_sdk/commands/run.py,sha256=3ptW48sq4APvY05AvCmBTdqcRfS3puERiFuInE2ddJ4,5440
|
@@ -30,13 +30,13 @@ agentsystems_sdk/deployments_scaffold/compose/local/db-backup/Dockerfile,sha256=
|
|
30
30
|
agentsystems_sdk/deployments_scaffold/compose/local/db-backup/entrypoint.sh,sha256=7as7UNRCR5ziTOUWJGHtPgCb70oNLImWmGJsgTy0t-A,2462
|
31
31
|
agentsystems_sdk/deployments_scaffold/compose/local/postgres-init/audit.sql,sha256=96812AZ2Tm57rmIi5de2nsAwxnn_AkJmavJgBn_MKKE,1796
|
32
32
|
agentsystems_sdk/deployments_scaffold/schema/agentsystems-config.schema.json,sha256=fhZfE_fVSbv0vYvh9JT5EZC2XYjp9v54cP0UK6hH18A,1374
|
33
|
-
agentsystems_sdk/licenses/python/ATTRIBUTIONS.md,sha256=
|
34
|
-
agentsystems_sdk/licenses/python/THIRD_PARTY_LICENSES.json,sha256=
|
35
|
-
agentsystems_sdk/licenses/python/THIRD_PARTY_REQUIREMENTS.txt,sha256=
|
36
|
-
agentsystems_sdk-0.5.
|
37
|
-
agentsystems_sdk-0.5.
|
38
|
-
agentsystems_sdk-0.5.
|
39
|
-
agentsystems_sdk-0.5.
|
40
|
-
agentsystems_sdk-0.5.
|
41
|
-
agentsystems_sdk-0.5.
|
42
|
-
agentsystems_sdk-0.5.
|
33
|
+
agentsystems_sdk/licenses/python/ATTRIBUTIONS.md,sha256=DzW4HVj2BoYL3hqjZbHVdfYxcGaraFg4wq7AQpo-How,186408
|
34
|
+
agentsystems_sdk/licenses/python/THIRD_PARTY_LICENSES.json,sha256=rn_A6DUhSEfaBh0_sDPwDNRfVYZ4iBmlxgofGQOTDY8,191176
|
35
|
+
agentsystems_sdk/licenses/python/THIRD_PARTY_REQUIREMENTS.txt,sha256=MNxPauBKdJ5TDmpFvRHRK-zpCAkwxr_8B9QJv5p5Wb4,999
|
36
|
+
agentsystems_sdk-0.5.2.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
37
|
+
agentsystems_sdk-0.5.2.dist-info/licenses/NOTICE,sha256=SGMFwyEoZ6NG19ZrdvwYt43lig12rEl5z8XvWMGej6c,918
|
38
|
+
agentsystems_sdk-0.5.2.dist-info/METADATA,sha256=1SWeeiOa2mTUfPiK-KQ-kh-bZjAcZ22fXecqzHEMEQc,12276
|
39
|
+
agentsystems_sdk-0.5.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
40
|
+
agentsystems_sdk-0.5.2.dist-info/entry_points.txt,sha256=0lejF8v40DAB0D2612UWLLA3e1Ux8TyyLU6yJc0vQkQ,93
|
41
|
+
agentsystems_sdk-0.5.2.dist-info/top_level.txt,sha256=nkHK6IHAO6-yoZJukUr0CruzkP8weBKraPnsj2FmDV8,17
|
42
|
+
agentsystems_sdk-0.5.2.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|