cmdbox 0.6.4__py3-none-any.whl → 0.6.4.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of cmdbox might be problematic. Click here for more details.

Files changed (74) hide show
  1. cmdbox/app/app.py +6 -0
  2. cmdbox/app/common.py +7 -4
  3. cmdbox/app/commons/loghandler.py +101 -20
  4. cmdbox/app/edge.py +1 -3
  5. cmdbox/app/features/cli/cmdbox_agent_mcp_client.py +175 -0
  6. cmdbox/app/features/cli/cmdbox_agent_mcp_proxy.py +96 -0
  7. cmdbox/app/features/cli/cmdbox_cmd_list.py +1 -1
  8. cmdbox/app/features/cli/cmdbox_server_list.py +1 -1
  9. cmdbox/app/features/cli/cmdbox_server_start.py +2 -2
  10. cmdbox/app/features/cli/cmdbox_server_stop.py +2 -2
  11. cmdbox/app/features/cli/cmdbox_tts_install.py +11 -1
  12. cmdbox/app/features/cli/cmdbox_tts_start.py +1 -1
  13. cmdbox/app/features/cli/cmdbox_web_apikey_add.py +1 -1
  14. cmdbox/app/features/cli/cmdbox_web_apikey_del.py +1 -1
  15. cmdbox/app/features/cli/cmdbox_web_gencert.py +1 -1
  16. cmdbox/app/features/cli/cmdbox_web_genpass.py +1 -1
  17. cmdbox/app/features/cli/cmdbox_web_group_add.py +1 -1
  18. cmdbox/app/features/cli/cmdbox_web_group_del.py +1 -1
  19. cmdbox/app/features/cli/cmdbox_web_group_edit.py +1 -1
  20. cmdbox/app/features/cli/cmdbox_web_group_list.py +2 -2
  21. cmdbox/app/features/cli/cmdbox_web_start.py +1 -0
  22. cmdbox/app/features/cli/cmdbox_web_stop.py +1 -1
  23. cmdbox/app/features/cli/cmdbox_web_user_add.py +1 -1
  24. cmdbox/app/features/cli/cmdbox_web_user_del.py +1 -1
  25. cmdbox/app/features/cli/cmdbox_web_user_edit.py +1 -1
  26. cmdbox/app/features/cli/cmdbox_web_user_list.py +2 -2
  27. cmdbox/app/features/web/cmdbox_web_agent.py +16 -4
  28. cmdbox/app/features/web/cmdbox_web_get_cmd_choices.py +10 -2
  29. cmdbox/app/features/web/cmdbox_web_save_cmd.py +1 -0
  30. cmdbox/app/features/web/cmdbox_web_versions_used.py +4 -0
  31. cmdbox/app/mcp.py +4 -1
  32. cmdbox/app/options.py +6 -4
  33. cmdbox/app/web.py +39 -17
  34. cmdbox/extensions/features.yml +4 -1
  35. cmdbox/licenses/LICENSE_APScheduler_3_11_0_MIT_License.txt +19 -0
  36. cmdbox/licenses/LICENSE_SQLAlchemy_2_0_43_MIT.txt +19 -0
  37. cmdbox/licenses/LICENSE_anyio_4_10_0_UNKNOWN.txt +20 -0
  38. cmdbox/licenses/LICENSE_backoff_2_2_1_MIT_License.txt +21 -0
  39. cmdbox/licenses/LICENSE_certifi_2025_8_3_Mozilla_Public_License_2_0-MPL_2_0.txt +20 -0
  40. cmdbox/licenses/LICENSE_charset-normalizer_3_4_3_MIT.txt +21 -0
  41. cmdbox/licenses/LICENSE_cryptography_45_0_6_Apache-2_0_OR_BSD-3-Clause.txt +3 -0
  42. cmdbox/licenses/LICENSE_fastapi-sso_0_18_0_MIT_License.txt +21 -0
  43. cmdbox/licenses/LICENSE_fastmcp_2_11_3_Apache_Software_License.txt +201 -0
  44. cmdbox/licenses/LICENSE_google-adk_1_10_0_Apache_Software_License.txt +202 -0
  45. cmdbox/licenses/LICENSE_google-api-python-client_2_178_0_Apache_Software_License.txt +201 -0
  46. cmdbox/licenses/LICENSE_google-cloud-aiplatform_1_108_0_Apache_2_0.txt +202 -0
  47. cmdbox/licenses/LICENSE_google-genai_1_29_0_Apache_Software_License.txt +202 -0
  48. cmdbox/licenses/LICENSE_greenlet_3_2_4_MIT_AND_Python-2_0.txt +30 -0
  49. cmdbox/licenses/LICENSE_huggingface-hub_0_34_4_Apache_Software_License.txt +201 -0
  50. cmdbox/licenses/LICENSE_litellm-enterprise_0_1_19_UNKNOWN.txt +37 -0
  51. cmdbox/licenses/LICENSE_litellm_1_75_5_post1_MIT_License.txt +26 -0
  52. cmdbox/licenses/LICENSE_markdown-it-py_4_0_0_MIT_License.txt +21 -0
  53. cmdbox/licenses/LICENSE_mcp_1_12_4_MIT_License.txt +21 -0
  54. cmdbox/licenses/LICENSE_multidict_6_6_4_Apache_License_2_0.txt +13 -0
  55. cmdbox/licenses/LICENSE_oauthlib_3_3_1_BSD-3-Clause.txt +27 -0
  56. cmdbox/licenses/LICENSE_openai_1_99_9_Apache_Software_License.txt +201 -0
  57. cmdbox/licenses/LICENSE_orjson_3_11_1_Apache_Software_License-MIT_License.txt +201 -0
  58. cmdbox/licenses/LICENSE_redis_6_4_0_MIT_License.txt +21 -0
  59. cmdbox/licenses/LICENSE_rpds-py_0_27_0_UNKNOWN.txt +19 -0
  60. cmdbox/licenses/LICENSE_sphinx-intl_2_3_2_UNKNOWN.txt +25 -0
  61. cmdbox/licenses/LICENSE_tenacity_9_1_2_Apache_Software_License.txt +202 -0
  62. cmdbox/licenses/LICENSE_tiktoken_0_11_0_MIT_License-Copyright-c-2022_OpenAI-Shantanu_Jain-Permission_is_hereby_granted-free_of_charge-to_any_per.txt +21 -0
  63. cmdbox/licenses/files.txt +28 -23
  64. cmdbox/logconf_cmdbox.yml +32 -0
  65. cmdbox/version.py +2 -2
  66. cmdbox/web/agent.html +8 -0
  67. cmdbox/web/assets/cmdbox/agent.js +45 -1
  68. cmdbox/web/assets/cmdbox/common.js +4 -22
  69. {cmdbox-0.6.4.dist-info → cmdbox-0.6.4.1.dist-info}/METADATA +2 -1
  70. {cmdbox-0.6.4.dist-info → cmdbox-0.6.4.1.dist-info}/RECORD +74 -44
  71. {cmdbox-0.6.4.dist-info → cmdbox-0.6.4.1.dist-info}/WHEEL +0 -0
  72. {cmdbox-0.6.4.dist-info → cmdbox-0.6.4.1.dist-info}/entry_points.txt +0 -0
  73. {cmdbox-0.6.4.dist-info → cmdbox-0.6.4.1.dist-info}/licenses/LICENSE +0 -0
  74. {cmdbox-0.6.4.dist-info → cmdbox-0.6.4.1.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,202 @@
1
+
2
+ Apache License
3
+ Version 2.0, January 2004
4
+ http://www.apache.org/licenses/
5
+
6
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
7
+
8
+ 1. Definitions.
9
+
10
+ "License" shall mean the terms and conditions for use, reproduction,
11
+ and distribution as defined by Sections 1 through 9 of this document.
12
+
13
+ "Licensor" shall mean the copyright owner or entity authorized by
14
+ the copyright owner that is granting the License.
15
+
16
+ "Legal Entity" shall mean the union of the acting entity and all
17
+ other entities that control, are controlled by, or are under common
18
+ control with that entity. For the purposes of this definition,
19
+ "control" means (i) the power, direct or indirect, to cause the
20
+ direction or management of such entity, whether by contract or
21
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
22
+ outstanding shares, or (iii) beneficial ownership of such entity.
23
+
24
+ "You" (or "Your") shall mean an individual or Legal Entity
25
+ exercising permissions granted by this License.
26
+
27
+ "Source" form shall mean the preferred form for making modifications,
28
+ including but not limited to software source code, documentation
29
+ source, and configuration files.
30
+
31
+ "Object" form shall mean any form resulting from mechanical
32
+ transformation or translation of a Source form, including but
33
+ not limited to compiled object code, generated documentation,
34
+ and conversions to other media types.
35
+
36
+ "Work" shall mean the work of authorship, whether in Source or
37
+ Object form, made available under the License, as indicated by a
38
+ copyright notice that is included in or attached to the work
39
+ (an example is provided in the Appendix below).
40
+
41
+ "Derivative Works" shall mean any work, whether in Source or Object
42
+ form, that is based on (or derived from) the Work and for which the
43
+ editorial revisions, annotations, elaborations, or other modifications
44
+ represent, as a whole, an original work of authorship. For the purposes
45
+ of this License, Derivative Works shall not include works that remain
46
+ separable from, or merely link (or bind by name) to the interfaces of,
47
+ the Work and Derivative Works thereof.
48
+
49
+ "Contribution" shall mean any work of authorship, including
50
+ the original version of the Work and any modifications or additions
51
+ to that Work or Derivative Works thereof, that is intentionally
52
+ submitted to Licensor for inclusion in the Work by the copyright owner
53
+ or by an individual or Legal Entity authorized to submit on behalf of
54
+ the copyright owner. For the purposes of this definition, "submitted"
55
+ means any form of electronic, verbal, or written communication sent
56
+ to the Licensor or its representatives, including but not limited to
57
+ communication on electronic mailing lists, source code control systems,
58
+ and issue tracking systems that are managed by, or on behalf of, the
59
+ Licensor for the purpose of discussing and improving the Work, but
60
+ excluding communication that is conspicuously marked or otherwise
61
+ designated in writing by the copyright owner as "Not a Contribution."
62
+
63
+ "Contributor" shall mean Licensor and any individual or Legal Entity
64
+ on behalf of whom a Contribution has been received by Licensor and
65
+ subsequently incorporated within the Work.
66
+
67
+ 2. Grant of Copyright License. Subject to the terms and conditions of
68
+ this License, each Contributor hereby grants to You a perpetual,
69
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
70
+ copyright license to reproduce, prepare Derivative Works of,
71
+ publicly display, publicly perform, sublicense, and distribute the
72
+ Work and such Derivative Works in Source or Object form.
73
+
74
+ 3. Grant of Patent License. Subject to the terms and conditions of
75
+ this License, each Contributor hereby grants to You a perpetual,
76
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
77
+ (except as stated in this section) patent license to make, have made,
78
+ use, offer to sell, sell, import, and otherwise transfer the Work,
79
+ where such license applies only to those patent claims licensable
80
+ by such Contributor that are necessarily infringed by their
81
+ Contribution(s) alone or by combination of their Contribution(s)
82
+ with the Work to which such Contribution(s) was submitted. If You
83
+ institute patent litigation against any entity (including a
84
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
85
+ or a Contribution incorporated within the Work constitutes direct
86
+ or contributory patent infringement, then any patent licenses
87
+ granted to You under this License for that Work shall terminate
88
+ as of the date such litigation is filed.
89
+
90
+ 4. Redistribution. You may reproduce and distribute copies of the
91
+ Work or Derivative Works thereof in any medium, with or without
92
+ modifications, and in Source or Object form, provided that You
93
+ meet the following conditions:
94
+
95
+ (a) You must give any other recipients of the Work or
96
+ Derivative Works a copy of this License; and
97
+
98
+ (b) You must cause any modified files to carry prominent notices
99
+ stating that You changed the files; and
100
+
101
+ (c) You must retain, in the Source form of any Derivative Works
102
+ that You distribute, all copyright, patent, trademark, and
103
+ attribution notices from the Source form of the Work,
104
+ excluding those notices that do not pertain to any part of
105
+ the Derivative Works; and
106
+
107
+ (d) If the Work includes a "NOTICE" text file as part of its
108
+ distribution, then any Derivative Works that You distribute must
109
+ include a readable copy of the attribution notices contained
110
+ within such NOTICE file, excluding those notices that do not
111
+ pertain to any part of the Derivative Works, in at least one
112
+ of the following places: within a NOTICE text file distributed
113
+ as part of the Derivative Works; within the Source form or
114
+ documentation, if provided along with the Derivative Works; or,
115
+ within a display generated by the Derivative Works, if and
116
+ wherever such third-party notices normally appear. The contents
117
+ of the NOTICE file are for informational purposes only and
118
+ do not modify the License. You may add Your own attribution
119
+ notices within Derivative Works that You distribute, alongside
120
+ or as an addendum to the NOTICE text from the Work, provided
121
+ that such additional attribution notices cannot be construed
122
+ as modifying the License.
123
+
124
+ You may add Your own copyright statement to Your modifications and
125
+ may provide additional or different license terms and conditions
126
+ for use, reproduction, or distribution of Your modifications, or
127
+ for any such Derivative Works as a whole, provided Your use,
128
+ reproduction, and distribution of the Work otherwise complies with
129
+ the conditions stated in this License.
130
+
131
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
132
+ any Contribution intentionally submitted for inclusion in the Work
133
+ by You to the Licensor shall be under the terms and conditions of
134
+ this License, without any additional terms or conditions.
135
+ Notwithstanding the above, nothing herein shall supersede or modify
136
+ the terms of any separate license agreement you may have executed
137
+ with Licensor regarding such Contributions.
138
+
139
+ 6. Trademarks. This License does not grant permission to use the trade
140
+ names, trademarks, service marks, or product names of the Licensor,
141
+ except as required for reasonable and customary use in describing the
142
+ origin of the Work and reproducing the content of the NOTICE file.
143
+
144
+ 7. Disclaimer of Warranty. Unless required by applicable law or
145
+ agreed to in writing, Licensor provides the Work (and each
146
+ Contributor provides its Contributions) on an "AS IS" BASIS,
147
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
148
+ implied, including, without limitation, any warranties or conditions
149
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
150
+ PARTICULAR PURPOSE. You are solely responsible for determining the
151
+ appropriateness of using or redistributing the Work and assume any
152
+ risks associated with Your exercise of permissions under this License.
153
+
154
+ 8. Limitation of Liability. In no event and under no legal theory,
155
+ whether in tort (including negligence), contract, or otherwise,
156
+ unless required by applicable law (such as deliberate and grossly
157
+ negligent acts) or agreed to in writing, shall any Contributor be
158
+ liable to You for damages, including any direct, indirect, special,
159
+ incidental, or consequential damages of any character arising as a
160
+ result of this License or out of the use or inability to use the
161
+ Work (including but not limited to damages for loss of goodwill,
162
+ work stoppage, computer failure or malfunction, or any and all
163
+ other commercial damages or losses), even if such Contributor
164
+ has been advised of the possibility of such damages.
165
+
166
+ 9. Accepting Warranty or Additional Liability. While redistributing
167
+ the Work or Derivative Works thereof, You may choose to offer,
168
+ and charge a fee for, acceptance of support, warranty, indemnity,
169
+ or other liability obligations and/or rights consistent with this
170
+ License. However, in accepting such obligations, You may act only
171
+ on Your own behalf and on Your sole responsibility, not on behalf
172
+ of any other Contributor, and only if You agree to indemnify,
173
+ defend, and hold each Contributor harmless for any liability
174
+ incurred by, or claims asserted against, such Contributor by reason
175
+ of your accepting any such warranty or additional liability.
176
+
177
+ END OF TERMS AND CONDITIONS
178
+
179
+ APPENDIX: How to apply the Apache License to your work.
180
+
181
+ To apply the Apache License to your work, attach the following
182
+ boilerplate notice, with the fields enclosed by brackets "[]"
183
+ replaced with your own identifying information. (Don't include
184
+ the brackets!) The text should be enclosed in the appropriate
185
+ comment syntax for the file format. We also recommend that a
186
+ file or class name and description of purpose be included on the
187
+ same "printed page" as the copyright notice for easier
188
+ identification within third-party archives.
189
+
190
+ Copyright [yyyy] [name of copyright owner]
191
+
192
+ Licensed under the Apache License, Version 2.0 (the "License");
193
+ you may not use this file except in compliance with the License.
194
+ You may obtain a copy of the License at
195
+
196
+ http://www.apache.org/licenses/LICENSE-2.0
197
+
198
+ Unless required by applicable law or agreed to in writing, software
199
+ distributed under the License is distributed on an "AS IS" BASIS,
200
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
201
+ See the License for the specific language governing permissions and
202
+ limitations under the License.
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2022 OpenAI, Shantanu Jain
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
cmdbox/licenses/files.txt CHANGED
@@ -1,11 +1,12 @@
1
1
  Author License Name URL Version File
2
+ Alex Grönholm <alex.gronholm@nextday.fi> MIT License APScheduler https://apscheduler.readthedocs.io/en/3.x/versionhistory.html 3.11.0 cmdbox\licenses\LICENSE_APScheduler_3_11_0_MIT_License.txt
2
3
  Hsiaoming Yang <me@lepture.com> BSD License Authlib https://github.com/authlib/authlib 1.6.1 cmdbox\licenses\LICENSE_Authlib_1_6_1_BSD_License.txt
3
4
  UNKNOWN BSD License Jinja2 https://github.com/pallets/jinja/ 3.1.6 cmdbox\licenses\LICENSE_Jinja2_3_1_6_BSD_License.txt
4
5
  UNKNOWN BSD License MarkupSafe https://github.com/pallets/markupsafe/ 3.0.2 cmdbox\licenses\LICENSE_MarkupSafe_3_0_2_BSD_License.txt
5
6
  Jose Padilla <hello@jpadilla.com> MIT License PyJWT https://github.com/jpadilla/pyjwt 2.10.1 cmdbox\licenses\LICENSE_PyJWT_2_10_1_MIT_License.txt
6
7
  Kirill Simonov MIT License PyYAML https://pyyaml.org/ 6.0.2 cmdbox\licenses\LICENSE_PyYAML_6_0_2_MIT_License.txt
7
8
  Georg Brandl <georg@python.org> BSD License Pygments https://pygments.org 2.19.2 cmdbox\licenses\LICENSE_Pygments_2_19_2_BSD_License.txt
8
- Mike Bayer MIT SQLAlchemy https://www.sqlalchemy.org 2.0.42 cmdbox\licenses\LICENSE_SQLAlchemy_2_0_42_MIT.txt
9
+ Mike Bayer MIT SQLAlchemy https://www.sqlalchemy.org 2.0.43 cmdbox\licenses\LICENSE_SQLAlchemy_2_0_43_MIT.txt
9
10
  Adam Turner <aa-turner@users.noreply.github.com>, Georg Brandl <georg@python.org> UNKNOWN Sphinx https://www.sphinx-doc.org/ 8.2.3 cmdbox\licenses\LICENSE_Sphinx_8_2_3_UNKNOWN.txt
10
11
  UNKNOWN BSD License Werkzeug UNKNOWN 3.1.1 cmdbox\licenses\LICENSE_Werkzeug_3_1_1_BSD_License.txt
11
12
  Marco Gorelli MIT License absolufy-imports https://github.com/MarcoGorelli/absolufy-imports 0.3.1 cmdbox\licenses\LICENSE_absolufy-imports_0_3_1_MIT_License.txt
@@ -14,20 +15,21 @@ UNKNOWN Apache-2.0 AND MIT aiohttp https://github.com/aio-libs/aiohttp 3.12.15 c
14
15
  UNKNOWN Apache Software License aiosignal https://github.com/aio-libs/aiosignal 1.4.0 cmdbox\licenses\LICENSE_aiosignal_1_4_0_Apache_Software_License.txt
15
16
  UNKNOWN BSD License alabaster https://alabaster.readthedocs.io/ 1.0.0 cmdbox\licenses\LICENSE_alabaster_1_0_0_BSD_License.txt
16
17
  Adrian Garcia Badaracco <1755071+adriangb@users.noreply.github.com>, Samuel Colvin <s@muelcolvin.com>, Zac Hatfield-Dodds <zac@zhd.dev> MIT License annotated-types https://github.com/annotated-types/annotated-types 0.7.0 cmdbox\licenses\LICENSE_annotated-types_0_7_0_MIT_License.txt
17
- Alex Grönholm <alex.gronholm@nextday.fi> MIT License anyio https://anyio.readthedocs.io/en/stable/versionhistory.html 4.9.0 cmdbox\licenses\LICENSE_anyio_4_9_0_MIT_License.txt
18
+ Alex Grönholm <alex.gronholm@nextday.fi> UNKNOWN anyio https://anyio.readthedocs.io/en/stable/versionhistory.html 4.10.0 cmdbox\licenses\LICENSE_anyio_4_10_0_UNKNOWN.txt
18
19
  Andrey Kislyuk Apache Software License argcomplete https://github.com/kislyuk/argcomplete 3.6.2 cmdbox\licenses\LICENSE_argcomplete_3_6_2_Apache_Software_License.txt
19
20
  Andrew Svetlov <andrew.svetlov@gmail.com> Apache Software License async-timeout https://github.com/aio-libs/async-timeout 5.0.1 cmdbox\licenses\LICENSE_async-timeout_5_0_1_Apache_Software_License.txt
20
21
  Hynek Schlawack <hs@ox.cx> UNKNOWN attrs https://www.attrs.org/en/stable/changelog.html 25.3.0 cmdbox\licenses\LICENSE_attrs_25_3_0_UNKNOWN.txt
21
22
  Armin Ronacher BSD License babel https://babel.pocoo.org/ 2.17.0 cmdbox\licenses\LICENSE_babel_2_17_0_BSD_License.txt
23
+ Bob Green MIT License backoff https://github.com/litl/backoff 2.2.1 cmdbox\licenses\LICENSE_backoff_2_2_1_MIT_License.txt
22
24
  "Jason R. Coombs" <jaraco@jaraco.com> MIT License backports.tarfile https://github.com/jaraco/backports.tarfile 1.2.0 cmdbox\licenses\LICENSE_backports_tarfile_1_2_0_MIT_License.txt
23
25
  Thomas Kemmer MIT License cachetools https://github.com/tkem/cachetools/ 5.5.2 cmdbox\licenses\LICENSE_cachetools_5_5_2_MIT_License.txt
24
- Kenneth Reitz Mozilla Public License 2.0 (MPL 2.0) certifi https://github.com/certifi/python-certifi 2025.7.14 cmdbox\licenses\LICENSE_certifi_2025_7_14_Mozilla_Public_License_2_0-MPL_2_0.txt
26
+ Kenneth Reitz Mozilla Public License 2.0 (MPL 2.0) certifi https://github.com/certifi/python-certifi 2025.8.3 cmdbox\licenses\LICENSE_certifi_2025_8_3_Mozilla_Public_License_2_0-MPL_2_0.txt
25
27
  Armin Rigo, Maciej Fijalkowski MIT License cffi http://cffi.readthedocs.org 1.17.1 cmdbox\licenses\LICENSE_cffi_1_17_1_MIT_License.txt
26
- "Ahmed R. TAHRI" <tahri.ahmed@proton.me> MIT License charset-normalizer https://github.com/jawah/charset_normalizer/blob/master/CHANGELOG.md 3.4.2 cmdbox\licenses\LICENSE_charset-normalizer_3_4_2_MIT_License.txt
28
+ "Ahmed R. TAHRI" <tahri.ahmed@proton.me> MIT charset-normalizer https://github.com/jawah/charset_normalizer/blob/master/CHANGELOG.md 3.4.3 cmdbox\licenses\LICENSE_charset-normalizer_3_4_3_MIT.txt
27
29
  UNKNOWN UNKNOWN click https://github.com/pallets/click/ 8.2.1 cmdbox\licenses\LICENSE_click_8_2_1_UNKNOWN.txt
28
30
  The cloudpickle developer team BSD License cloudpickle https://github.com/cloudpipe/cloudpickle 3.1.1 cmdbox\licenses\LICENSE_cloudpickle_3_1_1_BSD_License.txt
29
31
  Jonathan Hartley <tartley@tartley.com> BSD License colorama https://github.com/tartley/colorama 0.4.6 cmdbox\licenses\LICENSE_colorama_0_4_6_BSD_License.txt
30
- The cryptography developers <cryptography-dev@python.org> Apache-2.0 OR BSD-3-Clause cryptography https://github.com/pyca/cryptography 45.0.5 cmdbox\licenses\LICENSE_cryptography_45_0_5_Apache-2_0_OR_BSD-3-Clause.txt
32
+ The cryptography developers <cryptography-dev@python.org> Apache-2.0 OR BSD-3-Clause cryptography https://github.com/pyca/cryptography 45.0.6 cmdbox\licenses\LICENSE_cryptography_45_0_6_Apache-2_0_OR_BSD-3-Clause.txt
31
33
  Brian Pugh Apache Software License cyclopts https://github.com/BrianPugh/cyclopts 3.22.5 cmdbox\licenses\LICENSE_cyclopts_3_22_5_Apache_Software_License.txt
32
34
  Nir Cohen Apache Software License distro https://github.com/python-distro/distro 1.9.0 cmdbox\licenses\LICENSE_distro_1_9_0_Apache_Software_License.txt
33
35
  Bob Halley <halley@dnspython.org> ISC License (ISCL) dnspython https://www.dnspython.org 2.7.0 cmdbox\licenses\LICENSE_dnspython_2_7_0_ISC_License-ISCL.txt
@@ -36,17 +38,18 @@ David Goodger <goodger@python.org> BSD License; GNU General Public License (GPL)
36
38
  Joshua Tauberer The Unlicense (Unlicense) email_validator https://github.com/JoshData/python-email-validator 2.2.0 cmdbox\licenses\LICENSE_email_validator_2_2_0_The_Unlicense-Unlicense.txt
37
39
  Alex Grönholm <alex.gronholm@nextday.fi> MIT License exceptiongroup https://github.com/agronholm/exceptiongroup/blob/main/CHANGES.rst 1.3.0 cmdbox\licenses\LICENSE_exceptiongroup_1_3_0_MIT_License.txt
38
40
  =?utf-8?q?Sebasti=C3=A1n_Ram=C3=ADrez?= <tiangolo@gmail.com> MIT License fastapi https://github.com/fastapi/fastapi 0.116.1 cmdbox\licenses\LICENSE_fastapi_0_116_1_MIT_License.txt
39
- Jeremiah Lowin Apache Software License fastmcp https://gofastmcp.com 2.11.0 cmdbox\licenses\LICENSE_fastmcp_2_11_0_Apache_Software_License.txt
41
+ Tomas Votava MIT License fastapi-sso https://tomasvotava.github.io/fastapi-sso/ 0.18.0 cmdbox\licenses\LICENSE_fastapi-sso_0_18_0_MIT_License.txt
42
+ Jeremiah Lowin Apache Software License fastmcp https://gofastmcp.com 2.11.3 cmdbox\licenses\LICENSE_fastmcp_2_11_3_Apache_Software_License.txt
40
43
  UNKNOWN The Unlicense (Unlicense) filelock https://github.com/tox-dev/py-filelock 3.18.0 cmdbox\licenses\LICENSE_filelock_3_18_0_The_Unlicense-Unlicense.txt
41
44
  UNKNOWN Apache-2.0 frozenlist https://github.com/aio-libs/frozenlist 1.7.0 cmdbox\licenses\LICENSE_frozenlist_1_7_0_Apache-2_0.txt
42
45
  UNKNOWN BSD License fsspec https://github.com/fsspec/filesystem_spec 2025.7.0 cmdbox\licenses\LICENSE_fsspec_2025_7_0_BSD_License.txt
43
46
  Denis Bilenko MIT gevent http://www.gevent.org/ 25.5.1 cmdbox\licenses\LICENSE_gevent_25_5_1_MIT.txt
44
- Google LLC <googleapis-packages@google.com> Apache Software License google-adk https://google.github.io/adk-docs/ 1.9.0 cmdbox\licenses\LICENSE_google-adk_1_9_0_Apache_Software_License.txt
47
+ Google LLC <googleapis-packages@google.com> Apache Software License google-adk https://google.github.io/adk-docs/ 1.10.0 cmdbox\licenses\LICENSE_google-adk_1_10_0_Apache_Software_License.txt
45
48
  Google LLC <googleapis-packages@google.com> Apache Software License google-api-core https://github.com/googleapis/python-api-core 2.25.1 cmdbox\licenses\LICENSE_google-api-core_2_25_1_Apache_Software_License.txt
46
- Google LLC Apache Software License google-api-python-client https://github.com/googleapis/google-api-python-client/ 2.177.0 cmdbox\licenses\LICENSE_google-api-python-client_2_177_0_Apache_Software_License.txt
49
+ Google LLC Apache Software License google-api-python-client https://github.com/googleapis/google-api-python-client/ 2.178.0 cmdbox\licenses\LICENSE_google-api-python-client_2_178_0_Apache_Software_License.txt
47
50
  Google Cloud Platform Apache Software License google-auth https://github.com/googleapis/google-auth-library-python 2.40.3 cmdbox\licenses\LICENSE_google-auth_2_40_3_Apache_Software_License.txt
48
51
  Google Cloud Platform Apache Software License google-auth-httplib2 https://github.com/GoogleCloudPlatform/google-auth-library-python-httplib2 0.2.0 cmdbox\licenses\LICENSE_google-auth-httplib2_0_2_0_Apache_Software_License.txt
49
- Google LLC Apache 2.0 google-cloud-aiplatform https://github.com/googleapis/python-aiplatform 1.106.0 cmdbox\licenses\LICENSE_google-cloud-aiplatform_1_106_0_Apache_2_0.txt
52
+ Google LLC Apache 2.0 google-cloud-aiplatform https://github.com/googleapis/python-aiplatform 1.108.0 cmdbox\licenses\LICENSE_google-cloud-aiplatform_1_108_0_Apache_2_0.txt
50
53
  Google LLC Apache Software License google-cloud-appengine-logging https://github.com/googleapis/google-cloud-python/tree/main/packages/google-cloud-appengine-logging 1.6.2 cmdbox\licenses\LICENSE_google-cloud-appengine-logging_1_6_2_Apache_Software_License.txt
51
54
  Google LLC Apache Software License google-cloud-audit-log https://github.com/googleapis/python-audit-log 0.3.2 cmdbox\licenses\LICENSE_google-cloud-audit-log_0_3_2_Apache_Software_License.txt
52
55
  Google LLC <googleapis-packages@google.com> Apache Software License google-cloud-bigquery https://github.com/googleapis/python-bigquery 3.35.1 cmdbox\licenses\LICENSE_google-cloud-bigquery_3_35_1_Apache_Software_License.txt
@@ -58,11 +61,11 @@ Google LLC Apache Software License google-cloud-speech https://github.com/google
58
61
  Google LLC Apache Software License google-cloud-storage https://github.com/googleapis/python-storage 2.19.0 cmdbox\licenses\LICENSE_google-cloud-storage_2_19_0_Apache_Software_License.txt
59
62
  Google LLC Apache Software License google-cloud-trace https://github.com/googleapis/google-cloud-python/tree/main/packages/google-cloud-trace 1.16.2 cmdbox\licenses\LICENSE_google-cloud-trace_1_16_2_Apache_Software_License.txt
60
63
  Google LLC Apache 2.0 google-crc32c https://github.com/googleapis/python-crc32c 1.7.1 cmdbox\licenses\LICENSE_google-crc32c_1_7_1_Apache_2_0.txt
61
- Google LLC <googleapis-packages@google.com> Apache Software License google-genai https://github.com/googleapis/python-genai 1.28.0 cmdbox\licenses\LICENSE_google-genai_1_28_0_Apache_Software_License.txt
64
+ Google LLC <googleapis-packages@google.com> Apache Software License google-genai https://github.com/googleapis/python-genai 1.29.0 cmdbox\licenses\LICENSE_google-genai_1_29_0_Apache_Software_License.txt
62
65
  Google Cloud Platform Apache Software License google-resumable-media https://github.com/googleapis/google-resumable-media-python 2.7.2 cmdbox\licenses\LICENSE_google-resumable-media_2_7_2_Apache_Software_License.txt
63
66
  Google LLC <googleapis-packages@google.com> Apache Software License googleapis-common-protos https://github.com/googleapis/google-cloud-python/tree/main/packages/googleapis-common-protos 1.70.0 cmdbox\licenses\LICENSE_googleapis-common-protos_1_70_0_Apache_Software_License.txt
64
67
  Sebastian Bank <sebastian.bank@uni-leipzig.de> UNKNOWN graphviz https://github.com/xflr6/graphviz 0.21 cmdbox\licenses\LICENSE_graphviz_0_21_UNKNOWN.txt
65
- Alexey Borzenkov MIT AND Python-2.0 greenlet https://greenlet.readthedocs.io/ 3.2.3 cmdbox\licenses\LICENSE_greenlet_3_2_3_MIT_AND_Python-2_0.txt
68
+ Alexey Borzenkov MIT AND Python-2.0 greenlet https://greenlet.readthedocs.io/ 3.2.4 cmdbox\licenses\LICENSE_greenlet_3_2_4_MIT_AND_Python-2_0.txt
66
69
  Google LLC <googleapis-packages@google.com> Apache Software License grpc-google-iam-v1 https://github.com/googleapis/google-cloud-python 0.14.2 cmdbox\licenses\LICENSE_grpc-google-iam-v1_0_14_2_Apache_Software_License.txt
67
70
  The gRPC Authors Apache Software License grpcio https://grpc.io 1.74.0 cmdbox\licenses\LICENSE_grpcio_1_74_0_Apache_Software_License.txt
68
71
  The gRPC Authors Apache Software License grpcio-status https://grpc.io 1.74.0 cmdbox\licenses\LICENSE_grpcio-status_1_74_0_Apache_Software_License.txt
@@ -72,7 +75,7 @@ Tom Christie <tom@tomchristie.com> BSD License httpcore https://www.encode.io/ht
72
75
  Joe Gregorio MIT License httplib2 https://github.com/httplib2/httplib2 0.22.0 cmdbox\licenses\LICENSE_httplib2_0_22_0_MIT_License.txt
73
76
  Tom Christie <tom@tomchristie.com> BSD License httpx https://github.com/encode/httpx 0.28.1 cmdbox\licenses\LICENSE_httpx_0_28_1_BSD_License.txt
74
77
  Florimond Manca <florimond.manca@protonmail.com> MIT httpx-sse https://github.com/florimondmanca/httpx-sse 0.4.1 cmdbox\licenses\LICENSE_httpx-sse_0_4_1_MIT.txt
75
- Hugging Face, Inc. Apache Software License huggingface-hub https://github.com/huggingface/huggingface_hub 0.34.3 cmdbox\licenses\LICENSE_huggingface-hub_0_34_3_Apache_Software_License.txt
78
+ Hugging Face, Inc. Apache Software License huggingface-hub https://github.com/huggingface/huggingface_hub 0.34.4 cmdbox\licenses\LICENSE_huggingface-hub_0_34_4_Apache_Software_License.txt
76
79
  UNKNOWN Apache Software License id https://pypi.org/project/id/ 1.5.0 cmdbox\licenses\LICENSE_id_1_5_0_Apache_Software_License.txt
77
80
  Kim Davies <kim+pypi@gumleaf.org> BSD License idna https://github.com/kjd/idna 3.10 cmdbox\licenses\LICENSE_idna_3_10_BSD_License.txt
78
81
  Yoshiki Shibukawa MIT License imagesize https://github.com/shibukawa/imagesize_py 1.4.1 cmdbox\licenses\LICENSE_imagesize_1_4_1_MIT_License.txt
@@ -88,15 +91,17 @@ Artur Maciag Apache Software License jsonschema-path https://github.com/p1c2u/js
88
91
  Julian Berman <Julian+jsonschema-specifications@GrayVines.com> UNKNOWN jsonschema-specifications https://github.com/python-jsonschema/jsonschema-specifications 2025.4.1 cmdbox\licenses\LICENSE_jsonschema-specifications_2025_4_1_UNKNOWN.txt
89
92
  Kang Zhang <jobo.zh@gmail.com> MIT License keyring https://github.com/jaraco/keyring 25.6.0 cmdbox\licenses\LICENSE_keyring_25_6_0_MIT_License.txt
90
93
  Ionel Cristian Mărieș BSD License lazy-object-proxy https://github.com/ionelmc/python-lazy-object-proxy 1.11.0 cmdbox\licenses\LICENSE_lazy-object-proxy_1_11_0_BSD_License.txt
91
- BerriAI MIT License litellm https://litellm.ai 1.74.12 cmdbox\licenses\LICENSE_litellm_1_74_12_MIT_License.txt
92
- Chris Sewell <chrisj_sewell@hotmail.com> MIT License markdown-it-py https://github.com/executablebooks/markdown-it-py 3.0.0 cmdbox\licenses\LICENSE_markdown-it-py_3_0_0_MIT_License.txt
93
- Anthropic, PBC. MIT License mcp https://modelcontextprotocol.io 1.12.3 cmdbox\licenses\LICENSE_mcp_1_12_3_MIT_License.txt
94
+ BerriAI MIT License litellm https://litellm.ai 1.75.5.post1 cmdbox\licenses\LICENSE_litellm_1_75_5_post1_MIT_License.txt
95
+ BerriAI UNKNOWN litellm-enterprise https://litellm.ai 0.1.19 cmdbox\licenses\LICENSE_litellm-enterprise_0_1_19_UNKNOWN.txt
96
+ Chris Sewell <chrisj_sewell@hotmail.com> MIT License markdown-it-py https://github.com/executablebooks/markdown-it-py 4.0.0 cmdbox\licenses\LICENSE_markdown-it-py_4_0_0_MIT_License.txt
97
+ Anthropic, PBC. MIT License mcp https://modelcontextprotocol.io 1.12.4 cmdbox\licenses\LICENSE_mcp_1_12_4_MIT_License.txt
94
98
  Taneli Hukkinen <hukkin@users.noreply.github.com> MIT License mdurl https://github.com/executablebooks/mdurl 0.1.2 cmdbox\licenses\LICENSE_mdurl_0_1_2_MIT_License.txt
95
99
  Erik Rose <erikrose@grinchcentral.com> MIT License more-itertools https://github.com/more-itertools/more-itertools 10.7.0 cmdbox\licenses\LICENSE_more-itertools_10_7_0_MIT_License.txt
96
- Andrew Svetlov Apache License 2.0 multidict https://github.com/aio-libs/multidict 6.6.3 cmdbox\licenses\LICENSE_multidict_6_6_3_Apache_License_2_0.txt
100
+ Andrew Svetlov Apache License 2.0 multidict https://github.com/aio-libs/multidict 6.6.4 cmdbox\licenses\LICENSE_multidict_6_6_4_Apache_License_2_0.txt
97
101
  messense <messense@icloud.com> MIT nh3 UNKNOWN 0.3.0 cmdbox\licenses\LICENSE_nh3_0_3_0_MIT.txt
98
102
  Travis E. Oliphant et al. BSD License numpy https://numpy.org 2.3.2 cmdbox\licenses\LICENSE_numpy_2_3_2_BSD_License.txt
99
- OpenAI <support@openai.com> Apache Software License openai https://github.com/openai/openai-python 1.98.0 cmdbox\licenses\LICENSE_openai_1_98_0_Apache_Software_License.txt
103
+ The OAuthlib Community BSD-3-Clause oauthlib https://github.com/oauthlib/oauthlib 3.3.1 cmdbox\licenses\LICENSE_oauthlib_3_3_1_BSD-3-Clause.txt
104
+ OpenAI <support@openai.com> Apache Software License openai https://github.com/openai/openai-python 1.99.9 cmdbox\licenses\LICENSE_openai_1_99_9_Apache_Software_License.txt
100
105
  Artur Maciag BSD License openapi-core https://github.com/python-openapi/openapi-core 0.19.5 cmdbox\licenses\LICENSE_openapi-core_0_19_5_BSD_License.txt
101
106
  Mike Oakley MIT License openapi-pydantic https://github.com/mike-oakley/openapi-pydantic 0.5.1 cmdbox\licenses\LICENSE_openapi-pydantic_0_5_1_MIT_License.txt
102
107
  Artur Maciag BSD License openapi-schema-validator https://github.com/python-openapi/openapi-schema-validator 0.6.3 cmdbox\licenses\LICENSE_openapi-schema-validator_0_6_3_BSD_License.txt
@@ -106,6 +111,7 @@ Google Apache Software License opentelemetry-exporter-gcp-trace https://github.c
106
111
  Google Apache Software License opentelemetry-resourcedetector-gcp https://github.com/GoogleCloudPlatform/opentelemetry-operations-python/tree/main/opentelemetry-resourcedetector-gcp 1.9.0a0 cmdbox\licenses\LICENSE_opentelemetry-resourcedetector-gcp_1_9_0a0_Apache_Software_License.txt
107
112
  OpenTelemetry Authors <cncf-opentelemetry-contributors@lists.cncf.io> UNKNOWN opentelemetry-sdk https://github.com/open-telemetry/opentelemetry-python/tree/main/opentelemetry-sdk 1.36.0 cmdbox\licenses\LICENSE_opentelemetry-sdk_1_36_0_UNKNOWN.txt
108
113
  OpenTelemetry Authors <cncf-opentelemetry-contributors@lists.cncf.io> UNKNOWN opentelemetry-semantic-conventions https://github.com/open-telemetry/opentelemetry-python/tree/main/opentelemetry-semantic-conventions 0.57b0 cmdbox\licenses\LICENSE_opentelemetry-semantic-conventions_0_57b0_UNKNOWN.txt
114
+ ijl <ijl@mailbox.org> Apache Software License; MIT License orjson https://github.com/ijl/orjson 3.11.1 cmdbox\licenses\LICENSE_orjson_3_11_1_Apache_Software_License-MIT_License.txt
109
115
  Donald Stufft <donald@stufft.io> Apache Software License; BSD License packaging https://github.com/pypa/packaging 25.0 cmdbox\licenses\LICENSE_packaging_25_0_Apache_Software_License-BSD_License.txt
110
116
  Richard Jones <richard@python.org> MIT License parse https://github.com/r1chardj0n3s/parse 1.20.2 cmdbox\licenses\LICENSE_parse_1_20_2_MIT_License.txt
111
117
  Artur Maciag Apache Software License pathable https://github.com/p1c2u/pathable 0.4.4 cmdbox\licenses\LICENSE_pathable_0_4_4_Apache_Software_License.txt
@@ -136,7 +142,7 @@ Mark Hammond (et al) Python Software Foundation License pywin32 https://github.c
136
142
  Enthought Inc. BSD-3-Clause pywin32-ctypes https://github.com/enthought/pywin32-ctypes 0.2.3 cmdbox\licenses\LICENSE_pywin32-ctypes_0_2_3_BSD-3-Clause.txt
137
143
  Tom Bocklisch MIT License questionary https://github.com/tmbo/questionary 2.1.0 cmdbox\licenses\LICENSE_questionary_2_1_0_MIT_License.txt
138
144
  The Python Packaging Authority <admin@mail.pypi.org> Apache Software License readme_renderer UNKNOWN 44.0 cmdbox\licenses\LICENSE_readme_renderer_44_0_Apache_Software_License.txt
139
- "Redis Inc." <oss@redis.com> MIT License redis https://github.com/redis/redis-py 6.2.0 cmdbox\licenses\LICENSE_redis_6_2_0_MIT_License.txt
145
+ "Redis Inc." <oss@redis.com> MIT License redis https://github.com/redis/redis-py 6.4.0 cmdbox\licenses\LICENSE_redis_6_4_0_MIT_License.txt
140
146
  Julian Berman <Julian+referencing@GrayVines.com> UNKNOWN referencing https://github.com/python-jsonschema/referencing 0.36.2 cmdbox\licenses\LICENSE_referencing_0_36_2_UNKNOWN.txt
141
147
  Matthew Barnett <regex@mrabarnett.plus.com> UNKNOWN regex https://github.com/mrabarnett/mrab-regex 2025.7.34 cmdbox\licenses\LICENSE_regex_2025_7_34_UNKNOWN.txt
142
148
  Kenneth Reitz Apache Software License requests https://requests.readthedocs.io 2.32.4 cmdbox\licenses\LICENSE_requests_2_32_4_Apache_Software_License.txt
@@ -146,14 +152,14 @@ Ian Stapleton Cordasco Apache Software License rfc3986 http://rfc3986.readthedoc
146
152
  Will McGugan MIT License rich https://github.com/Textualize/rich 14.1.0 cmdbox\licenses\LICENSE_rich_14_1_0_MIT_License.txt
147
153
  Wasi Master MIT License rich-rst https://wasi-master.github.io/rich-rst 1.3.1 cmdbox\licenses\LICENSE_rich-rst_1_3_1_MIT_License.txt
148
154
  Adam Turner CC0 1.0 Universal (CC0 1.0) Public Domain Dedication; Zero-Clause BSD (0BSD) roman-numerals-py https://github.com/AA-Turner/roman-numerals/blob/master/CHANGES.rst 3.1.0 cmdbox\licenses\LICENSE_roman-numerals-py_3_1_0_CC0_1_0_Universal-CC0_1_0-Public_Domain_Dedication-Zero-Clause_BSD-0BSD.txt
149
- Julian Berman <Julian+rpds@GrayVines.com> MIT rpds-py https://github.com/crate-py/rpds 0.26.0 cmdbox\licenses\LICENSE_rpds-py_0_26_0_MIT.txt
155
+ Julian Berman <Julian+rpds@GrayVines.com> UNKNOWN rpds-py https://github.com/crate-py/rpds 0.27.0 cmdbox\licenses\LICENSE_rpds-py_0_27_0_UNKNOWN.txt
150
156
  Sybren A. Stüvel Apache Software License rsa https://stuvel.eu/rsa 4.9.1 cmdbox\licenses\LICENSE_rsa_4_9_1_Apache_Software_License.txt
151
157
  Python Packaging Authority <distutils-sig@python.org> UNKNOWN setuptools https://github.com/pypa/setuptools 80.9.0 cmdbox\licenses\LICENSE_setuptools_80_9_0_UNKNOWN.txt
152
158
  Sean Gillies BSD License shapely https://github.com/shapely/shapely 2.1.1 cmdbox\licenses\LICENSE_shapely_2_1_1_BSD_License.txt
153
159
  Benjamin Peterson MIT License six https://github.com/benjaminp/six 1.17.0 cmdbox\licenses\LICENSE_six_1_17_0_MIT_License.txt
154
160
  "Nathaniel J. Smith" <njs@pobox.com> Apache Software License; MIT License sniffio https://github.com/python-trio/sniffio 1.3.1 cmdbox\licenses\LICENSE_sniffio_1_3_1_Apache_Software_License-MIT_License.txt
155
161
  Snowball Developers BSD License snowballstemmer https://github.com/snowballstem/snowball 3.0.1 cmdbox\licenses\LICENSE_snowballstemmer_3_0_1_BSD_License.txt
156
- Takayuki SHIMIZUKAWA <shimizukawa@gmail.com> BSD License sphinx-intl https://github.com/sphinx-doc/sphinx-intl 2.3.1 cmdbox\licenses\LICENSE_sphinx-intl_2_3_1_BSD_License.txt
162
+ Takayuki SHIMIZUKAWA <shimizukawa@gmail.com> UNKNOWN sphinx-intl https://github.com/sphinx-doc/sphinx-intl 2.3.2 cmdbox\licenses\LICENSE_sphinx-intl_2_3_2_UNKNOWN.txt
157
163
  Matthias Geier BSD License sphinx-last-updated-by-git https://github.com/mgeier/sphinx-last-updated-by-git/ 0.3.8 cmdbox\licenses\LICENSE_sphinx-last-updated-by-git_0_3_8_BSD_License.txt
158
164
  Dave Snider, Read the Docs, Inc. & contributors MIT License sphinx-rtd-theme https://github.com/readthedocs/sphinx_rtd_theme 3.0.2 cmdbox\licenses\LICENSE_sphinx-rtd-theme_3_0_2_MIT_License.txt
159
165
  Jared Dillard <jared.dillard@gmail.com> UNKNOWN sphinx-sitemap https://github.com/jdillard/sphinx-sitemap 2.7.2 cmdbox\licenses\LICENSE_sphinx-sitemap_2_7_2_UNKNOWN.txt
@@ -168,7 +174,7 @@ Georg Brandl <georg@python.org> BSD License sphinxcontrib-serializinghtml https:
168
174
  sysid <sysid@gmx.de> UNKNOWN sse-starlette https://github.com/sysid/sse-starlette 3.0.2 cmdbox\licenses\LICENSE_sse-starlette_3_0_2_UNKNOWN.txt
169
175
  Tom Christie <tom@tomchristie.com> BSD License starlette https://github.com/encode/starlette 0.47.2 cmdbox\licenses\LICENSE_starlette_0_47_2_BSD_License.txt
170
176
  Sergey Astanin <s.astanin@gmail.com> MIT License tabulate https://github.com/astanin/python-tabulate 0.9.0 cmdbox\licenses\LICENSE_tabulate_0_9_0_MIT_License.txt
171
- Julien Danjou Apache Software License tenacity https://github.com/jd/tenacity 8.5.0 cmdbox\licenses\LICENSE_tenacity_8_5_0_Apache_Software_License.txt
177
+ Julien Danjou Apache Software License tenacity https://github.com/jd/tenacity 9.1.2 cmdbox\licenses\LICENSE_tenacity_9_1_2_Apache_Software_License.txt
172
178
  Shantanu Jain MIT License
173
179
 
174
180
  Copyright (c) 2022 OpenAI, Shantanu Jain
@@ -190,7 +196,7 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
190
196
  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
191
197
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
192
198
  SOFTWARE.
193
- tiktoken https://github.com/openai/tiktoken 0.9.0 cmdbox\licenses\LICENSE_tiktoken_0_9_0_MIT_License-Copyright-c-2022_OpenAI-Shantanu_Jain-Permission_is_hereby_granted-free_of_charge-to_any_pers.txt
199
+ tiktoken https://github.com/openai/tiktoken 0.11.0 cmdbox\licenses\LICENSE_tiktoken_0_11_0_MIT_License-Copyright-c-2022_OpenAI-Shantanu_Jain-Permission_is_hereby_granted-free_of_charge-to_any_per.txt
194
200
  Nicolas Patry <patry.nicolas@protonmail.com>, Anthony Moi <anthony@huggingface.co> Apache Software License tokenizers https://github.com/huggingface/tokenizers 0.21.4 cmdbox\licenses\LICENSE_tokenizers_0_21_4_Apache_Software_License.txt
195
201
  Taneli Hukkinen <hukkin@users.noreply.github.com> MIT License tomli https://github.com/hukkin/tomli 2.2.1 cmdbox\licenses\LICENSE_tomli_2_2_1_MIT_License.txt
196
202
  UNKNOWN MIT License; Mozilla Public License 2.0 (MPL 2.0) tqdm https://tqdm.github.io 4.67.1 cmdbox\licenses\LICENSE_tqdm_4_67_1_MIT_License-Mozilla_Public_License_2_0-MPL_2_0.txt
@@ -202,7 +208,6 @@ Lennart Regebro <regebro@gmail.com> MIT License tzlocal https://github.com/regeb
202
208
  Ian Stapleton Cordasco BSD 3-Clause OR Apache-2.0 uritemplate https://uritemplate.readthedocs.org 4.2.0 cmdbox\licenses\LICENSE_uritemplate_4_2_0_BSD_3-Clause_OR_Apache-2_0.txt
203
209
  Andrey Petrov <andrey.petrov@shazow.net> UNKNOWN urllib3 https://github.com/urllib3/urllib3/blob/main/CHANGES.rst 2.5.0 cmdbox\licenses\LICENSE_urllib3_2_5_0_UNKNOWN.txt
204
210
  Tom Christie <tom@tomchristie.com>, Marcelo Trylesinski <marcelotryle@gmail.com> BSD License uvicorn https://www.uvicorn.org/ 0.35.0 cmdbox\licenses\LICENSE_uvicorn_0_35_0_BSD_License.txt
205
- Hiroshiba <hihokaruta@gmail.com> MIT voicevox_core UNKNOWN 0.16.0 cmdbox\licenses\LICENSE_voicevox_core_0_16_0_MIT.txt
206
211
  Mickaël Schoentgen Apache Software License watchdog https://github.com/gorakhargosh/watchdog 6.0.0 cmdbox\licenses\LICENSE_watchdog_6_0_0_Apache_Software_License.txt
207
212
  Jeff Quast MIT License wcwidth https://github.com/jquast/wcwidth 0.2.13 cmdbox\licenses\LICENSE_wcwidth_0_2_13_MIT_License.txt
208
213
  Aymeric Augustin <aymeric.augustin@m4x.org> BSD License websockets https://github.com/python-websockets/websockets 15.0.1 cmdbox\licenses\LICENSE_websockets_15_0_1_BSD_License.txt
cmdbox/logconf_cmdbox.yml CHANGED
@@ -38,6 +38,14 @@ handlers:
38
38
  when : 'D'
39
39
  encoding : 'utf-8'
40
40
  filename: .logs/cmdbox_client.log
41
+ cmd:
42
+ class: cmdbox.app.commons.loghandler.TimedRotatingFileHandler
43
+ level: INFO
44
+ formatter: fmt
45
+ backupCount: 5
46
+ when : 'D'
47
+ encoding : 'utf-8'
48
+ filename: .logs/cmdbox_cmd.log
41
49
  cmdbox:
42
50
  class: cmdbox.app.commons.loghandler.TimedRotatingFileHandler
43
51
  level: INFO
@@ -94,6 +102,20 @@ handlers:
94
102
  when : 'D'
95
103
  encoding : 'utf-8'
96
104
  filename: .logs/cmdbox_web.log
105
+ logcl:
106
+ class: logging.handlers.SocketHandler
107
+ level: INFO
108
+ formatter: fmt
109
+ host: 'localhost'
110
+ port: 9020
111
+ logsv:
112
+ class: cmdbox.app.commons.loghandler.TimedRotatingFileHandler
113
+ level: INFO
114
+ formatter: fmt
115
+ backupCount: 5
116
+ when : 'D'
117
+ encoding : 'utf-8'
118
+ filename: .logs/cmdbox_logsv.log
97
119
 
98
120
  loggers:
99
121
  audit:
@@ -106,6 +128,11 @@ loggers:
106
128
  level: INFO
107
129
  qualname: client
108
130
  propagate: false
131
+ cmd:
132
+ handlers: [cmd, std]
133
+ level: INFO
134
+ qualname: cmd
135
+ propagate: false
109
136
  cmdbox:
110
137
  handlers: [cmdbox, std]
111
138
  level: INFO
@@ -141,6 +168,11 @@ loggers:
141
168
  level: INFO
142
169
  qualname: web
143
170
  propagate: false
171
+ logsv:
172
+ handlers: [logsv]
173
+ level: INFO
174
+ qualname: logsv
175
+ propagate: false
144
176
 
145
177
  #root:
146
178
  # handlers: [std]
cmdbox/version.py CHANGED
@@ -1,10 +1,10 @@
1
1
  import datetime
2
2
 
3
- dt_now = datetime.datetime(2025, 8, 6)
3
+ dt_now = datetime.datetime(2025, 8, 13)
4
4
  days_ago = (datetime.datetime.now() - dt_now).days
5
5
  __appid__ = 'cmdbox'
6
6
  __title__ = 'cmdbox (Command Development Application)'
7
- __version__ = '0.6.4'
7
+ __version__ = '0.6.4.1'
8
8
  __copyright__ = f'Copyright © 2023-{dt_now.strftime("%Y")} hamacom2004jp'
9
9
  __pypiurl__ = 'https://pypi.org/project/cmdbox/'
10
10
  __srcurl__ = 'https://github.com/hamacom2004jp/cmdbox'
cmdbox/web/agent.html CHANGED
@@ -67,6 +67,14 @@
67
67
  </button>
68
68
  <div class="collapse navbar-collapse" id="navbarNavDropdown">
69
69
  <ul class="navbar-nav me-auto">
70
+ <!--li class="nav-item dropdown">
71
+ <a class="nav-link dropdown-toggle" href="#" id="toolMenuLink" role="button" data-bs-toggle="dropdown" aria-expanded="false">
72
+ Tool
73
+ </a>
74
+ <ul class="dropdown-menu toolmenu" aria-labelledby="toolMenuLink">
75
+ <li><a class="dropdown-item" href="#" onclick="agent.llmsetting();">LLM Setting</a></li>
76
+ </ul>
77
+ </li-->
70
78
  <li class="nav-item dropdown">
71
79
  <a class="nav-link dropdown-toggle" href="#" id="viewMenuLink" role="button" data-bs-toggle="dropdown" aria-expanded="false">
72
80
  View
@@ -148,7 +148,7 @@ agent.say.say = (tts_text) => {
148
148
  opt['cmd'] = 'say';
149
149
  opt['tts_engine'] = 'voicevox';
150
150
  opt['voicevox_model'] = agent.say.model;
151
- opt['tts_text'] = tts_text;
151
+ opt['tts_text'] = tts_text.replace(/<br\s*\/?>/g, '\n'); // <br>タグを改行に変換
152
152
  cmdbox.show_loading();
153
153
  return cmdbox.sv_exec_cmd(opt).then(async (res) => {
154
154
  if (res && res['success']) res = [res];
@@ -236,6 +236,7 @@ agent.init_form = async () => {
236
236
  }
237
237
  agent.say.start().then((msg) => {
238
238
  //cmdbox.message(msg);
239
+ agent.say.say(msg);
239
240
  btn_say.addClass('say_on');
240
241
  btn_say.find('use').attr('href', '#btn_megaphone_fill');
241
242
  }).catch((err) => {
@@ -255,6 +256,8 @@ agent.init_form = async () => {
255
256
  // 録音中を停止
256
257
  if (agent.recognition) {
257
258
  agent.recognition.stop();
259
+ const transcript = user_msg.val();
260
+ transcript && $('#btn_user_msg').click(); // 録音が終了したら自動的にメッセージを送信
258
261
  }
259
262
  return;
260
263
  }
@@ -492,6 +495,47 @@ agent.delete_session = async (session_id) => {
492
495
  if (res.status != 200) cmdbox.message({'error':`${res.status}: ${res.statusText}`});
493
496
  return await res.json();
494
497
  }
498
+ agent.llmsetting = async () => {
499
+ const user = await cmdbox.user_info();
500
+ if (!user) {
501
+ cmdbox.message('user not found');
502
+ return;
503
+ }
504
+ const llmsetting_modal = $('#llmsetting_modal').length?$('#llmsetting_modal'):$(`<div id="llmsetting_modal" class="modal" tabindex="-1" style="display: none;" aria-hidden="true"/>`);
505
+ llmsetting_modal.html('');
506
+ const daialog = $(`<div class="modal-dialog modal-lg ui-draggable ui-draggable-handle"/>`).appendTo(llmsetting_modal);
507
+ const form = $(`<form id="llmsetting_form" class="modal-content novalidate"/>`).appendTo(daialog);
508
+ const header = $(`<div class="modal-header"/>`).appendTo(form);
509
+ header.append('<h5 class="modal-title">LLM Setting</h5>');
510
+ header.append('<button type="button" class="btn btn_close p-0 m-0" data-bs-dismiss="modal" aria-label="Close" style="margin-left: 0px;">'
511
+ +'<svg class="bi bi-x" width="24" height="24" fill="currentColor"><use href="#btn_x"></use></svg>'
512
+ +'</button>');
513
+ const body = $(`<div class="modal-body"/>`).appendTo(form);
514
+ const row_content = $(`<div class="row row_content"/>`).appendTo(body);
515
+ const appid = $(`.navbar-brand`).text();
516
+ const llmsetting_choices = async () => {
517
+ const res = await fetch('agent/llmsetting');
518
+ if (res.status != 200) cmdbox.message({'error':`${res.status}: ${res.statusText}`});
519
+ return await res.json();
520
+ };
521
+ const llmsetting_rows = await llmsetting_choices();
522
+ row_content.html('');
523
+ // 表示オプションを追加
524
+ llmsetting_rows.filter(row => !row.hide).forEach((row, i) => cmdbox.add_form_func(i, llmsetting_modal, row_content, row, null));
525
+ // 高度なオプションを表示するリンクを追加
526
+ const show_link = $('<div class="text-center card-hover mb-3"><a href="#">[ advanced options ]</a></div>');
527
+ show_link.click(() => row_content.find('.row_content_hide').toggle());
528
+ row_content.append(show_link);
529
+ // 非表示オプションを追加
530
+ llmsetting_rows.filter(row => row.hide).forEach((row, i) => cmdbox.add_form_func(i, llmsetting_modal, row_content, row, null));
531
+ // フッターを追加
532
+ const footer = $(`<div class="modal-footer"/>`).appendTo(form);
533
+ // 閉じるボタンを追加
534
+ const close_btn = $('<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>').appendTo(footer);
535
+ llmsetting_modal.appendTo('body');
536
+ daialog.draggable({cursor:'move',cancel:'.modal-body'});
537
+ llmsetting_modal.modal('show');
538
+ };
495
539
  $(() => {
496
540
  // カラーモード対応
497
541
  cmdbox.change_color_mode();
@@ -262,24 +262,6 @@ cmdbox.editapikey = async () => {
262
262
  daialog.draggable({cursor:'move',cancel:'.modal-body'});
263
263
  editapikey_modal.modal('show');
264
264
  };
265
- cmdbox.agentsetting = async () => {
266
- const user = await cmdbox.user_info();
267
- if (!user) {
268
- cmdbox.message('user not found');
269
- return;
270
- }
271
- const agentsetting_modal = $('#agentsetting_modal').length?$('#agentsetting_modal'):$(`<div id="agentsetting_modal" class="modal" tabindex="-1" style="display: none;" aria-hidden="true"/>`);
272
- agentsetting_modal.html('');
273
- const daialog = $(`<div class="modal-dialog ui-draggable ui-draggable-handle"/>`).appendTo(agentsetting_modal);
274
- const form = $(`<form id="agentsetting_form" class="modal-content novalidate"/>`).appendTo(daialog);
275
- const header = $(`<div class="modal-header"/>`).appendTo(form);
276
- header.append('<h5 class="modal-title">Agent Setting</h5>');
277
- header.append('<button type="button" class="btn btn_close p-0 m-0" data-bs-dismiss="modal" aria-label="Close" style="margin-left: 0px;">'
278
- +'<svg class="bi bi-x" width="24" height="24" fill="currentColor"><use href="#btn_x"></use></svg>'
279
- +'</button>');
280
- const body = $(`<div class="modal-body"/>`).appendTo(form);
281
- const row_content = $(`<div class="row row_content"/>`).appendTo(body);
282
- };
283
265
  /**
284
266
  * 現在のユーザーのパスワード変更
285
267
  */
@@ -409,10 +391,6 @@ $(()=>{
409
391
  const editapikey_item = $(`<li><a class="dropdown-item editapikey-menu-item" href="#" onclick="cmdbox.editapikey();">Edit ApiKey</a></li>`);
410
392
  user_info_menu.find('.dropdown-menu').append(editapikey_item);
411
393
  }
412
- /*if (!user_info_menu.find('.dropdown-menu .agentsetting-menu-item').length) {
413
- const agentsetting_item = $(`<li><a class="dropdown-item agentsetting-menu-item" href="#" onclick="cmdbox.agentsetting();">Agent Setting</a></li>`);
414
- user_info_menu.find('.dropdown-menu').append(agentsetting_item);
415
- }*/
416
394
  if (!user_info_menu.find('.dropdown-menu .signout-menu-item').length) {
417
395
  const parts = location.pathname.split('/');
418
396
  const sitepath = parts[parts.length-1];
@@ -1469,6 +1447,10 @@ cmdbox.add_form_func = (i, cmd_modal, row_content, row, next_elem, lcolsize=12,
1469
1447
  } else {
1470
1448
  title.addClass('text-decoration-underline');
1471
1449
  }
1450
+ if (row.opt=='help') {
1451
+ elem.find(':input').prop('disabled', true);
1452
+ elem.find('.row_content_template_title').remove();
1453
+ }
1472
1454
  }
1473
1455
  /**
1474
1456
  * コマンド選択肢取得