agentsystems-sdk 0.4.5__py3-none-any.whl → 0.4.6__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.
@@ -211,7 +211,7 @@ def init_command(
211
211
  f"✅ Initialization complete!\n\n"
212
212
  f"Next steps:\n"
213
213
  f" 1. cd {display_dir}\n"
214
- f" 2. Review .env and adjust if needed.\n"
215
- f" 3. Run: agentsystems up\n"
214
+ f" 2. Run: agentsystems up\n"
215
+ f" 3. Open http://localhost:3001 to configure this deployment\n"
216
216
  )
217
217
  console.print(Panel.fit(next_steps, border_style="green"))
@@ -1,21 +1,19 @@
1
- ANTHROPIC_API_KEY=
2
- DOCKERHUB_USER_AGENTSYSTEMS=
3
- DOCKERHUB_TOKEN_AGENTSYSTEMS=
4
- DOCKERHUB_USER_2=
5
- DOCKERHUB_TOKEN_2=
6
- HARBOR_ROBOT_USER=
7
- HARBOR_ROBOT_PASSWORD=
8
-
9
- RCLONE_CONFIG_S3_TYPE=
10
- RCLONE_CONFIG_S3_PROVIDER=
11
- RCLONE_CONFIG_S3_ACCESS_KEY_ID=
12
- RCLONE_CONFIG_S3_SECRET_ACCESS_KEY=
13
- RCLONE_CONFIG_S3_REGION=
1
+ # =============================================================================
2
+ # AgentSystems Platform Environment Variables
3
+ # This file is automatically copied to .env during 'agentsystems init'
4
+ #
5
+ # 🌐 CONFIGURE VIA WEB UI: http://localhost:3001/configuration
6
+ # Use the web interface for the best configuration experience
7
+ # =============================================================================
14
8
 
9
+ # -----------------------------------------------------------------------------
10
+ # Platform Services (auto-configured by 'agentsystems init')
11
+ # -----------------------------------------------------------------------------
15
12
  LANGFUSE_HOST="http://langfuse-web:3000"
16
13
  LANGFUSE_PUBLIC_KEY=
17
14
  LANGFUSE_SECRET_KEY=
18
15
 
16
+ # Langfuse initialization (used only on first startup)
19
17
  LANGFUSE_INIT_ORG_ID=
20
18
  LANGFUSE_INIT_ORG_NAME=
21
19
  LANGFUSE_INIT_PROJECT_ID=
@@ -25,3 +23,26 @@ LANGFUSE_INIT_USER_EMAIL=
25
23
  LANGFUSE_INIT_USER_PASSWORD=
26
24
  LANGFUSE_INIT_PROJECT_PUBLIC_KEY=
27
25
  LANGFUSE_INIT_PROJECT_SECRET_KEY=
26
+
27
+ # -----------------------------------------------------------------------------
28
+ # Model Provider Credentials
29
+ # 🎯 Add these via Web UI: http://localhost:3001/configuration/models
30
+ # The UI provides better validation and prevents configuration errors
31
+ # -----------------------------------------------------------------------------
32
+
33
+ # Example credentials (configured via UI):
34
+ # ANTHROPIC_API_KEY=sk-ant-api03-... (for Claude models)
35
+ # OPENAI_API_KEY=sk-proj-... (for GPT models)
36
+ # BEDROCK_LLM_ACCESS_KEY_ID=AKIA... (for AWS Bedrock)
37
+ # BEDROCK_LLM_SECRET_KEY=... (for AWS Bedrock)
38
+ # BEDROCK_LLM_REGION=us-east-1 (for AWS Bedrock)
39
+
40
+ # -----------------------------------------------------------------------------
41
+ # Registry Authentication
42
+ # 🎯 Add these via Web UI: http://localhost:3001/configuration/registries
43
+ # Only needed for private agent repositories
44
+ # -----------------------------------------------------------------------------
45
+
46
+ # Example registry credentials (configured via UI):
47
+ # DOCKERHUB_USER=your-username (for private Docker Hub repos)
48
+ # DOCKERHUB_TOKEN=dckr_pat_... (for private Docker Hub repos)
@@ -1,75 +1,13 @@
1
1
  config_version: 1
2
2
 
3
+ # Registry connections for pulling agent images
4
+ # Add registry connections here to access private agent repositories
3
5
  registry_connections:
4
- dockerhub_agentsystems:
5
- url: docker.io
6
- enabled: true
7
- auth:
8
- method: basic
9
- username_env: DOCKERHUB_USER_AGENTSYSTEMS
10
- password_env: DOCKERHUB_TOKEN_AGENTSYSTEMS
11
-
12
- dockerhub_2:
13
- url: docker.io
14
- enabled: true
15
- auth:
16
- method: basic
17
- username_env: DOCKERHUB_USER_2
18
- password_env: DOCKERHUB_TOKEN_2
19
-
20
- harbor_agentsystems_public:
21
- url: harbor.agentsystems.ai
22
- enabled: true
23
- auth:
24
- method: none
25
-
26
- harbor_agentsystems_private:
27
- url: harbor.agentsystems.ai
28
- enabled: true
29
- auth:
30
- method: basic
31
- username_env: HARBOR_ROBOT_USER
32
- password_env: HARBOR_ROBOT_PASSWORD
33
6
 
7
+ # AI agents to deploy
8
+ # Add agents here after configuring model connections
34
9
  agents:
35
- - name: hello-world-agent
36
- repo: agentsystems/hello-world-agent
37
- egress_allowlist:
38
- - "https://api.anthropic.com"
39
- tag: latest
40
- registry_connection: dockerhub_agentsystems
41
- labels:
42
- agent.port: "8000"
43
- overrides:
44
- env:
45
- MODEL_ID: "gpt-4o"
46
- expose: ["8000"]
47
-
48
- - name: ibl-agent-hello-there
49
- repo: ironbirdlabs/ibl-agent-hello-there
50
- tag: latest
51
- registry_connection: dockerhub_2
52
- labels:
53
- agent.port: "8000"
54
- overrides:
55
- env:
56
- MODEL_ID: "gpt-4o"
57
- expose: ["8000"]
58
-
59
- - name: historical-events-poetry
60
- repo: public-repository-examples/historical-events-poetry
61
- tag: "0.1.0"
62
- registry_connection: harbor_agentsystems_public
63
- labels:
64
- agent.port: "8000"
65
- overrides:
66
- expose: ["8000"]
67
10
 
68
- - name: historical-events-jokes
69
- repo: private-repository-examples/historical-events-jokes
70
- tag: "0.1.0"
71
- registry_connection: harbor_agentsystems_private
72
- labels:
73
- agent.port: "8000"
74
- overrides:
75
- expose: ["8000"]
11
+ # Model connections for AI inference
12
+ # Configure these with your API keys to enable agents
13
+ model_connections:
@@ -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.4.5
5
+ ## agentsystems-sdk 0.4.6
6
6
  - License: UNKNOWN
7
7
  - URL: UNKNOWN
8
8
  - Author: AgentSystems <support@agentsystems.ai>
@@ -2251,7 +2251,7 @@ under the terms of *both* these licenses.
2251
2251
  ```
2252
2252
  </details>
2253
2253
 
2254
- ## platformdirs 4.3.8
2254
+ ## platformdirs 4.4.0
2255
2255
  - License: MIT License
2256
2256
  - URL: https://github.com/tox-dev/platformdirs
2257
2257
  - Author: UNKNOWN
@@ -3521,7 +3521,7 @@ THE SOFTWARE.
3521
3521
  ```
3522
3522
  </details>
3523
3523
 
3524
- ## typing_extensions 4.14.1
3524
+ ## typing_extensions 4.15.0
3525
3525
  - License: UNKNOWN
3526
3526
  - URL: https://github.com/python/typing_extensions
3527
3527
  - Author: "Guido van Rossum, Jukka Lehtosalo, Łukasz Langa, Michael Lee" <levkivskyi@gmail.com>
@@ -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.4.5"
32
+ "Version": "0.4.6"
33
33
  },
34
34
  {
35
35
  "Author": "\"Jason R. Coombs\" <jaraco@jaraco.com>",
@@ -269,7 +269,7 @@
269
269
  "LicenseText": "MIT License\n\nCopyright (c) 2010-202x The platformdirs developers\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 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",
270
270
  "Name": "platformdirs",
271
271
  "URL": "https://github.com/tox-dev/platformdirs",
272
- "Version": "4.3.8"
272
+ "Version": "4.4.0"
273
273
  },
274
274
  {
275
275
  "Author": "Holger Krekel <holger@merlinux.eu>",
@@ -405,7 +405,7 @@
405
405
  "LicenseText": "A. HISTORY OF THE SOFTWARE\n==========================\n\nPython was created in the early 1990s by Guido van Rossum at Stichting\nMathematisch Centrum (CWI, see https://www.cwi.nl) in the Netherlands\nas a successor of a language called ABC. Guido remains Python's\nprincipal author, although it includes many contributions from others.\n\nIn 1995, Guido continued his work on Python at the Corporation for\nNational Research Initiatives (CNRI, see https://www.cnri.reston.va.us)\nin Reston, Virginia where he released several versions of the\nsoftware.\n\nIn May 2000, Guido and the Python core development team moved to\nBeOpen.com to form the BeOpen PythonLabs team. In October of the same\nyear, the PythonLabs team moved to Digital Creations, which became\nZope Corporation. In 2001, the Python Software Foundation (PSF, see\nhttps://www.python.org/psf/) was formed, a non-profit organization\ncreated specifically to own Python-related Intellectual Property.\nZope Corporation was a sponsoring member of the PSF.\n\nAll Python releases are Open Source (see https://opensource.org for\nthe Open Source Definition). Historically, most, but not all, Python\nreleases have also been GPL-compatible; the table below summarizes\nthe various releases.\n\n Release Derived Year Owner GPL-\n from compatible? (1)\n\n 0.9.0 thru 1.2 1991-1995 CWI yes\n 1.3 thru 1.5.2 1.2 1995-1999 CNRI yes\n 1.6 1.5.2 2000 CNRI no\n 2.0 1.6 2000 BeOpen.com no\n 1.6.1 1.6 2001 CNRI yes (2)\n 2.1 2.0+1.6.1 2001 PSF no\n 2.0.1 2.0+1.6.1 2001 PSF yes\n 2.1.1 2.1+2.0.1 2001 PSF yes\n 2.1.2 2.1.1 2002 PSF yes\n 2.1.3 2.1.2 2002 PSF yes\n 2.2 and above 2.1.1 2001-now PSF yes\n\nFootnotes:\n\n(1) GPL-compatible doesn't mean that we're distributing Python under\n the GPL. All Python licenses, unlike the GPL, let you distribute\n a modified version without making your changes open source. The\n GPL-compatible licenses make it possible to combine Python with\n other software that is released under the GPL; the others don't.\n\n(2) According to Richard Stallman, 1.6.1 is not GPL-compatible,\n because its license has a choice of law clause. According to\n CNRI, however, Stallman's lawyer has told CNRI's lawyer that 1.6.1\n is \"not incompatible\" with the GPL.\n\nThanks to the many outside volunteers who have worked under Guido's\ndirection to make these releases possible.\n\n\nB. TERMS AND CONDITIONS FOR ACCESSING OR OTHERWISE USING PYTHON\n===============================================================\n\nPython software and documentation are licensed under the\nPython Software Foundation License Version 2.\n\nStarting with Python 3.8.6, examples, recipes, and other code in\nthe documentation are dual licensed under the PSF License Version 2\nand the Zero-Clause BSD license.\n\nSome software incorporated into Python is under different licenses.\nThe licenses are listed with code falling under that license.\n\n\nPYTHON SOFTWARE FOUNDATION LICENSE VERSION 2\n--------------------------------------------\n\n1. This LICENSE AGREEMENT is between the Python Software Foundation\n(\"PSF\"), and the Individual or Organization (\"Licensee\") accessing and\notherwise using this software (\"Python\") in source or binary form and\nits associated documentation.\n\n2. Subject to the terms and conditions of this License Agreement, PSF hereby\ngrants Licensee a nonexclusive, royalty-free, world-wide license to reproduce,\nanalyze, test, perform and/or display publicly, prepare derivative works,\ndistribute, and otherwise use Python alone or in any derivative version,\nprovided, however, that PSF's License Agreement and PSF's notice of copyright,\ni.e., \"Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,\n2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023 Python Software Foundation;\nAll Rights Reserved\" are retained in Python alone or in any derivative version\nprepared by Licensee.\n\n3. In the event Licensee prepares a derivative work that is based on\nor incorporates Python or any part thereof, and wants to make\nthe derivative work available to others as provided herein, then\nLicensee hereby agrees to include in any such work a brief summary of\nthe changes made to Python.\n\n4. PSF is making Python available to Licensee on an \"AS IS\"\nbasis. PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR\nIMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND\nDISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS\nFOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON WILL NOT\nINFRINGE ANY THIRD PARTY RIGHTS.\n\n5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON\nFOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS\nA RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON,\nOR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.\n\n6. This License Agreement will automatically terminate upon a material\nbreach of its terms and conditions.\n\n7. Nothing in this License Agreement shall be deemed to create any\nrelationship of agency, partnership, or joint venture between PSF and\nLicensee. This License Agreement does not grant permission to use PSF\ntrademarks or trade name in a trademark sense to endorse or promote\nproducts or services of Licensee, or any third party.\n\n8. By copying, installing or otherwise using Python, Licensee\nagrees to be bound by the terms and conditions of this License\nAgreement.\n\n\nBEOPEN.COM LICENSE AGREEMENT FOR PYTHON 2.0\n-------------------------------------------\n\nBEOPEN PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1\n\n1. This LICENSE AGREEMENT is between BeOpen.com (\"BeOpen\"), having an\noffice at 160 Saratoga Avenue, Santa Clara, CA 95051, and the\nIndividual or Organization (\"Licensee\") accessing and otherwise using\nthis software in source or binary form and its associated\ndocumentation (\"the Software\").\n\n2. Subject to the terms and conditions of this BeOpen Python License\nAgreement, BeOpen hereby grants Licensee a non-exclusive,\nroyalty-free, world-wide license to reproduce, analyze, test, perform\nand/or display publicly, prepare derivative works, distribute, and\notherwise use the Software alone or in any derivative version,\nprovided, however, that the BeOpen Python License is retained in the\nSoftware, alone or in any derivative version prepared by Licensee.\n\n3. BeOpen is making the Software available to Licensee on an \"AS IS\"\nbasis. BEOPEN MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR\nIMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, BEOPEN MAKES NO AND\nDISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS\nFOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE WILL NOT\nINFRINGE ANY THIRD PARTY RIGHTS.\n\n4. BEOPEN SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF THE\nSOFTWARE FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS\nAS A RESULT OF USING, MODIFYING OR DISTRIBUTING THE SOFTWARE, OR ANY\nDERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.\n\n5. This License Agreement will automatically terminate upon a material\nbreach of its terms and conditions.\n\n6. This License Agreement shall be governed by and interpreted in all\nrespects by the law of the State of California, excluding conflict of\nlaw provisions. Nothing in this License Agreement shall be deemed to\ncreate any relationship of agency, partnership, or joint venture\nbetween BeOpen and Licensee. This License Agreement does not grant\npermission to use BeOpen trademarks or trade names in a trademark\nsense to endorse or promote products or services of Licensee, or any\nthird party. As an exception, the \"BeOpen Python\" logos available at\nhttp://www.pythonlabs.com/logos.html may be used according to the\npermissions granted on that web page.\n\n7. By copying, installing or otherwise using the software, Licensee\nagrees to be bound by the terms and conditions of this License\nAgreement.\n\n\nCNRI LICENSE AGREEMENT FOR PYTHON 1.6.1\n---------------------------------------\n\n1. This LICENSE AGREEMENT is between the Corporation for National\nResearch Initiatives, having an office at 1895 Preston White Drive,\nReston, VA 20191 (\"CNRI\"), and the Individual or Organization\n(\"Licensee\") accessing and otherwise using Python 1.6.1 software in\nsource or binary form and its associated documentation.\n\n2. Subject to the terms and conditions of this License Agreement, CNRI\nhereby grants Licensee a nonexclusive, royalty-free, world-wide\nlicense to reproduce, analyze, test, perform and/or display publicly,\nprepare derivative works, distribute, and otherwise use Python 1.6.1\nalone or in any derivative version, provided, however, that CNRI's\nLicense Agreement and CNRI's notice of copyright, i.e., \"Copyright (c)\n1995-2001 Corporation for National Research Initiatives; All Rights\nReserved\" are retained in Python 1.6.1 alone or in any derivative\nversion prepared by Licensee. Alternately, in lieu of CNRI's License\nAgreement, Licensee may substitute the following text (omitting the\nquotes): \"Python 1.6.1 is made available subject to the terms and\nconditions in CNRI's License Agreement. This Agreement together with\nPython 1.6.1 may be located on the internet using the following\nunique, persistent identifier (known as a handle): 1895.22/1013. This\nAgreement may also be obtained from a proxy server on the internet\nusing the following URL: http://hdl.handle.net/1895.22/1013\".\n\n3. In the event Licensee prepares a derivative work that is based on\nor incorporates Python 1.6.1 or any part thereof, and wants to make\nthe derivative work available to others as provided herein, then\nLicensee hereby agrees to include in any such work a brief summary of\nthe changes made to Python 1.6.1.\n\n4. CNRI is making Python 1.6.1 available to Licensee on an \"AS IS\"\nbasis. CNRI MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR\nIMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, CNRI MAKES NO AND\nDISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS\nFOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON 1.6.1 WILL NOT\nINFRINGE ANY THIRD PARTY RIGHTS.\n\n5. CNRI SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON\n1.6.1 FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS\nA RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON 1.6.1,\nOR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.\n\n6. This License Agreement will automatically terminate upon a material\nbreach of its terms and conditions.\n\n7. This License Agreement shall be governed by the federal\nintellectual property law of the United States, including without\nlimitation the federal copyright law, and, to the extent such\nU.S. federal law does not apply, by the law of the Commonwealth of\nVirginia, excluding Virginia's conflict of law provisions.\nNotwithstanding the foregoing, with regard to derivative works based\non Python 1.6.1 that incorporate non-separable material that was\npreviously distributed under the GNU General Public License (GPL), the\nlaw of the Commonwealth of Virginia shall govern this License\nAgreement only as to issues arising under or with respect to\nParagraphs 4, 5, and 7 of this License Agreement. Nothing in this\nLicense Agreement shall be deemed to create any relationship of\nagency, partnership, or joint venture between CNRI and Licensee. This\nLicense Agreement does not grant permission to use CNRI trademarks or\ntrade name in a trademark sense to endorse or promote products or\nservices of Licensee, or any third party.\n\n8. By clicking on the \"ACCEPT\" button where indicated, or by copying,\ninstalling or otherwise using Python 1.6.1, Licensee agrees to be\nbound by the terms and conditions of this License Agreement.\n\n ACCEPT\n\n\nCWI LICENSE AGREEMENT FOR PYTHON 0.9.0 THROUGH 1.2\n--------------------------------------------------\n\nCopyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam,\nThe Netherlands. All rights reserved.\n\nPermission to use, copy, modify, and distribute this software and its\ndocumentation for any purpose and without fee is hereby granted,\nprovided that the above copyright notice appear in all copies and that\nboth that copyright notice and this permission notice appear in\nsupporting documentation, and that the name of Stichting Mathematisch\nCentrum or CWI not be used in advertising or publicity pertaining to\ndistribution of the software without specific, written prior\npermission.\n\nSTICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO\nTHIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE\nFOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT\nOF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\nZERO-CLAUSE BSD LICENSE FOR CODE IN THE PYTHON DOCUMENTATION\n----------------------------------------------------------------------\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\nPERFORMANCE OF THIS SOFTWARE.\n",
406
406
  "Name": "typing_extensions",
407
407
  "URL": "https://github.com/python/typing_extensions",
408
- "Version": "4.14.1"
408
+ "Version": "4.15.0"
409
409
  },
410
410
  {
411
411
  "Author": "Andrey Petrov <andrey.petrov@shazow.net>",
@@ -28,7 +28,7 @@ nh3==0.3.0
28
28
  nodeenv==1.9.1
29
29
  packaging==25.0
30
30
  pip-licenses==5.0.0
31
- platformdirs==4.3.8
31
+ platformdirs==4.4.0
32
32
  pluggy==1.6.0
33
33
  pre_commit==4.3.0
34
34
  prettytable==3.16.0
@@ -50,7 +50,7 @@ shellingham==1.5.4
50
50
  tomli==2.2.1
51
51
  twine==6.1.0
52
52
  typer==0.16.1
53
- typing_extensions==4.14.1
53
+ typing_extensions==4.15.0
54
54
  urllib3==2.5.0
55
55
  virtualenv==20.34.0
56
56
  wcwidth==0.2.13
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: agentsystems-sdk
3
- Version: 0.4.5
3
+ Version: 0.4.6
4
4
  Summary: AgentSystems Python SDK and CLI
5
5
  Author-email: AgentSystems <support@agentsystems.ai>
6
6
  License-Expression: Apache-2.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=FGjXcI3IZ6arp2y3HBvn5JGNn9e_z15khZcnZmFwFZY,7180
10
+ agentsystems_sdk/commands/init.py,sha256=zcDPVm8GyA5ndJjY8sCY2WqgFl7XPCw4G2nYxj9Tozw,7202
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
@@ -15,13 +15,13 @@ agentsystems_sdk/commands/status.py,sha256=C-9-eLG_gbDB4T69g4B3QjT41ASOZWjbEZydn
15
15
  agentsystems_sdk/commands/up.py,sha256=rmFXv-n_Vy3ocfKI6eW-qf2Ew3dobWVytgAQ9bdPTDk,21013
16
16
  agentsystems_sdk/commands/update.py,sha256=mY3Yfk_X-P5CYE3wR1cZ4DzmrDknYXWl41ZwjDUvtNM,2968
17
17
  agentsystems_sdk/commands/version.py,sha256=sNmppGZucbc7UGY_YyiZy-wobeVxu7OMgH0vuz7Y7Ks,3179
18
- agentsystems_sdk/deployments_scaffold/.env.example,sha256=RBRZicUDHCnpozFMgT__IceUV69B7WNLUXHElkcXCD8,634
18
+ agentsystems_sdk/deployments_scaffold/.env.example,sha256=8d30FI2mFfOymNEuYXXnt7li6xJKGo1qdUYJURGoFMg,2129
19
19
  agentsystems_sdk/deployments_scaffold/CONTRIBUTING.md,sha256=UgQ-CETCvOiMRszSxPBQURWJkAuAj-KwO42V7csQe1I,1145
20
20
  agentsystems_sdk/deployments_scaffold/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
21
21
  agentsystems_sdk/deployments_scaffold/Makefile,sha256=94EZSYWhqMA5tkQCwzCHklqo_S8O5lRm_G02FiOf8vs,1491
22
22
  agentsystems_sdk/deployments_scaffold/NOTICE,sha256=BnTYCcbpdKpLlCqoMaTwbF7lPCFemgV6JVjwdkFgZQs,430
23
23
  agentsystems_sdk/deployments_scaffold/README.md,sha256=RWgvaBnfnTTq3521yBTyWgy-TcdOoqrMC3Jtjz2qARE,9943
24
- agentsystems_sdk/deployments_scaffold/agentsystems-config.yml,sha256=DhW22Cjb9g2V4C1C9ul0fQ9XXSDWmYKUfVFktPgBe4g,1732
24
+ agentsystems_sdk/deployments_scaffold/agentsystems-config.yml,sha256=LLcwFcrsuToaDLsJzM0vnn974hEyuHriqMJKXxU508Q,354
25
25
  agentsystems_sdk/deployments_scaffold/requirements-dev.txt,sha256=6jW_q7PKw7DDxV1DhSONOdVIjesz5jaQgmhFa82qDYg,64
26
26
  agentsystems_sdk/deployments_scaffold/compose/langfuse/docker-compose.yml,sha256=Q8n3vBBfrbWRVeVhsnVdHIdrGpHWUUbI-_ZD4f6tMRs,4871
27
27
  agentsystems_sdk/deployments_scaffold/compose/local/docker-compose.yml,sha256=cDB7seS5Px5a0YR0jTsj-AQ3ShgLv8oYyL96Vc7x9tc,2289
@@ -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=ouDcszBbDXAU9hTYTkTV_e6uVgXIreqpFzROIRnzm-o,186494
34
- agentsystems_sdk/licenses/python/THIRD_PARTY_LICENSES.json,sha256=H2Ps8K9wy6Or2DNYVXp3xlPww6TVoU8g0-nei-qOBJ4,191265
35
- agentsystems_sdk/licenses/python/THIRD_PARTY_REQUIREMENTS.txt,sha256=bq-RtuhKzQV8i_qcYzPJvvrZx_2s_3CeHQ8_PtxpQyw,998
36
- agentsystems_sdk-0.4.5.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
37
- agentsystems_sdk-0.4.5.dist-info/licenses/NOTICE,sha256=SGMFwyEoZ6NG19ZrdvwYt43lig12rEl5z8XvWMGej6c,918
38
- agentsystems_sdk-0.4.5.dist-info/METADATA,sha256=z8ZI-XmvG6RqLgpLBMBYSxgbj85tjc6f3KVaw-neTiU,11894
39
- agentsystems_sdk-0.4.5.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
40
- agentsystems_sdk-0.4.5.dist-info/entry_points.txt,sha256=0lejF8v40DAB0D2612UWLLA3e1Ux8TyyLU6yJc0vQkQ,93
41
- agentsystems_sdk-0.4.5.dist-info/top_level.txt,sha256=nkHK6IHAO6-yoZJukUr0CruzkP8weBKraPnsj2FmDV8,17
42
- agentsystems_sdk-0.4.5.dist-info/RECORD,,
33
+ agentsystems_sdk/licenses/python/ATTRIBUTIONS.md,sha256=NV_ydFANFyBGD59nqtMElgJxu_V2Y5fCysGkR3Hs1CQ,186494
34
+ agentsystems_sdk/licenses/python/THIRD_PARTY_LICENSES.json,sha256=r0C_t3QH-Z1_b8giknARNLFe5AXmlpfRu6KfwpsTBmc,191265
35
+ agentsystems_sdk/licenses/python/THIRD_PARTY_REQUIREMENTS.txt,sha256=CYsudx5Jc_TVB7i2ik_cDr1OEBhjH9JNifgYD9mXSBc,998
36
+ agentsystems_sdk-0.4.6.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
37
+ agentsystems_sdk-0.4.6.dist-info/licenses/NOTICE,sha256=SGMFwyEoZ6NG19ZrdvwYt43lig12rEl5z8XvWMGej6c,918
38
+ agentsystems_sdk-0.4.6.dist-info/METADATA,sha256=XxWjRdQ7P1h3jsTF7PhW0wzbTTwGTSdbMNWs6gqI6yE,11894
39
+ agentsystems_sdk-0.4.6.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
40
+ agentsystems_sdk-0.4.6.dist-info/entry_points.txt,sha256=0lejF8v40DAB0D2612UWLLA3e1Ux8TyyLU6yJc0vQkQ,93
41
+ agentsystems_sdk-0.4.6.dist-info/top_level.txt,sha256=nkHK6IHAO6-yoZJukUr0CruzkP8weBKraPnsj2FmDV8,17
42
+ agentsystems_sdk-0.4.6.dist-info/RECORD,,