ctxmaster 0.0.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.
ctxmaster/__init__.py
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
"""ctxmaster: visualization layer for tokenmaster.
|
|
2
|
+
|
|
3
|
+
Placeholder release (0.0.1) reserving the package name while the core API is
|
|
4
|
+
designed. Do not build against this version.
|
|
5
|
+
"""
|
|
6
|
+
|
|
7
|
+
import tokenmaster
|
|
8
|
+
|
|
9
|
+
__version__ = "0.0.1"
|
|
10
|
+
|
|
11
|
+
__all__ = ["about", "__version__"]
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
def about() -> dict:
|
|
15
|
+
"""Return basic project metadata for this placeholder release."""
|
|
16
|
+
return {
|
|
17
|
+
"name": "ctxmaster",
|
|
18
|
+
"version": __version__,
|
|
19
|
+
"summary": (
|
|
20
|
+
"Visualization layer for tokenmaster: CLI, terminal gauge, "
|
|
21
|
+
"and dashboard renderers."
|
|
22
|
+
),
|
|
23
|
+
"core": f"tokenmaster {tokenmaster.__version__}",
|
|
24
|
+
"repository": "https://github.com/jemsbhai/tokenmaster",
|
|
25
|
+
"status": "placeholder",
|
|
26
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: ctxmaster
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Visualization layer for tokenmaster: CLI, terminal gauge, and dashboard renderers for LLM context-budget metering. Placeholder release.
|
|
5
|
+
Project-URL: Homepage, https://github.com/jemsbhai/tokenmaster
|
|
6
|
+
Project-URL: Repository, https://github.com/jemsbhai/tokenmaster
|
|
7
|
+
Author-email: Muntaser Syed <jemsbhai@gmail.com>
|
|
8
|
+
License-Expression: MIT
|
|
9
|
+
License-File: LICENSE
|
|
10
|
+
Keywords: context-window,dashboard,gauge,llm,terminal,tokens,visualization
|
|
11
|
+
Classifier: Development Status :: 1 - Planning
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
15
|
+
Classifier: Topic :: Software Development :: Libraries
|
|
16
|
+
Requires-Python: >=3.10
|
|
17
|
+
Requires-Dist: tokenmaster>=0.0.1
|
|
18
|
+
Description-Content-Type: text/markdown
|
|
19
|
+
|
|
20
|
+
# ctxmaster
|
|
21
|
+
|
|
22
|
+
Visualization layer for tokenmaster, the core context-budget metering and
|
|
23
|
+
decision engine for LLM applications.
|
|
24
|
+
|
|
25
|
+
ctxmaster will provide the user-facing surfaces: a CLI, a live terminal gauge
|
|
26
|
+
(context used, effective budget remaining, projected turns to exhaustion,
|
|
27
|
+
compaction and handoff advice), and dashboard renderers. It consumes the
|
|
28
|
+
serializable state and event schema that tokenmaster emits; anyone can build
|
|
29
|
+
an alternative visualizer against the same contract.
|
|
30
|
+
|
|
31
|
+
## Status
|
|
32
|
+
|
|
33
|
+
0.0.1 is a placeholder release reserving the name while the core API is
|
|
34
|
+
designed. Do not build against it yet. Development happens at
|
|
35
|
+
https://github.com/jemsbhai/tokenmaster
|
|
36
|
+
|
|
37
|
+
## License
|
|
38
|
+
|
|
39
|
+
MIT
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
ctxmaster/__init__.py,sha256=hMBmAxZbf7Gf35_I9BCLznjgQ8XJcwBAn2Pzi0AawpE,730
|
|
2
|
+
ctxmaster-0.0.1.dist-info/METADATA,sha256=B2zsXmuRydB1ui1sGvS7frrs_VMZGyua-u58KZBTv6U,1544
|
|
3
|
+
ctxmaster-0.0.1.dist-info/WHEEL,sha256=mffPy8wBnZQn2VnJUU5jE99KsxaSfiyMHV9Yt0aLVxs,87
|
|
4
|
+
ctxmaster-0.0.1.dist-info/licenses/LICENSE,sha256=5dkqzXFpxH9vg5QFM3-pbIv1AJzCSbKdMBTzzTtJ4Ac,1070
|
|
5
|
+
ctxmaster-0.0.1.dist-info/RECORD,,
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Muntaser Syed
|
|
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.
|