kneepoint 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.
kneepoint/__init__.py ADDED
File without changes
File without changes
File without changes
kneepoint/cli.py ADDED
@@ -0,0 +1,24 @@
1
+ from importlib.metadata import version as pkg_version
2
+
3
+ import typer
4
+
5
+ app = typer.Typer(
6
+ no_args_is_help=True,
7
+ add_completion=False,
8
+ help="Find where your AI agent breaks: load, cost, and chaos testing for AI agents.",
9
+ )
10
+
11
+
12
+ def _version_callback(value: bool) -> None:
13
+ if value:
14
+ typer.echo(f"kneepoint {pkg_version('kneepoint')}")
15
+ raise typer.Exit()
16
+
17
+
18
+ @app.callback(invoke_without_command=True)
19
+ def main(
20
+ version: bool = typer.Option(
21
+ False, "--version", help="Show version and exit.", callback=_version_callback, is_eager=True
22
+ ),
23
+ ) -> None:
24
+ """Kneepoint CLI."""
File without changes
File without changes
File without changes
File without changes
File without changes
@@ -0,0 +1,46 @@
1
+ Metadata-Version: 2.4
2
+ Name: kneepoint
3
+ Version: 0.0.1
4
+ Summary: Find where your AI agent breaks: load, cost, and chaos testing for AI agents.
5
+ Project-URL: Homepage, https://kneepoint.dev
6
+ Project-URL: Repository, https://github.com/kneepoint-dev/kneepoint
7
+ Author: Mohan Chelluru
8
+ License-Expression: MIT
9
+ License-File: LICENSE
10
+ Keywords: ai-agents,chaos-engineering,llm,load-testing,performance-testing
11
+ Classifier: Development Status :: 2 - Pre-Alpha
12
+ Classifier: Environment :: Console
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: Programming Language :: Python :: 3 :: Only
15
+ Classifier: Topic :: Software Development :: Testing :: Traffic Generation
16
+ Requires-Python: >=3.11
17
+ Requires-Dist: httpx>=0.27
18
+ Requires-Dist: jinja2
19
+ Requires-Dist: kneed
20
+ Requires-Dist: plotly
21
+ Requires-Dist: pydantic>=2
22
+ Requires-Dist: pyyaml
23
+ Requires-Dist: typer>=0.12
24
+ Provides-Extra: dev
25
+ Requires-Dist: build; extra == 'dev'
26
+ Requires-Dist: fastapi; extra == 'dev'
27
+ Requires-Dist: pytest; extra == 'dev'
28
+ Requires-Dist: pytest-asyncio; extra == 'dev'
29
+ Requires-Dist: ruff; extra == 'dev'
30
+ Requires-Dist: twine; extra == 'dev'
31
+ Requires-Dist: uvicorn; extra == 'dev'
32
+ Description-Content-Type: text/markdown
33
+
34
+ # Kneepoint
35
+
36
+ > Find where your AI agent breaks. Load testing, cost-per-resolved-task, and chaos engineering for AI agents.
37
+
38
+ **Status: pre-alpha, under active development — built in public.** The `0.0.1` PyPI release is a name reservation stub; nothing works yet.
39
+
40
+ - The Knee Point — the concurrency at which your agent's latency/quality cliff begins
41
+ - $/Resolved Task — spend divided by *successfully* completed tasks
42
+ - Resilience Score — resolution rate under injected chaos vs. clean baseline
43
+
44
+ Follow along: [kneepoint.dev](https://kneepoint.dev)
45
+
46
+ MIT licensed.
@@ -0,0 +1,14 @@
1
+ kneepoint/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
+ kneepoint/cli.py,sha256=wGU5l5N2OX0QHQJb0VbO0s2Va9ccc3iRviFvsaB9y2c,612
3
+ kneepoint/analyze/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
+ kneepoint/chaos/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
+ kneepoint/collect/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6
+ kneepoint/generator/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
+ kneepoint/judge/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
8
+ kneepoint/report/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
+ kneepoint/targets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
10
+ kneepoint-0.0.1.dist-info/METADATA,sha256=MZhLXNVipYy2_XVtXRFDZ4ewytCtzS2i41jI0IwSNmg,1752
11
+ kneepoint-0.0.1.dist-info/WHEEL,sha256=lCkmxWfQsSc9CfIClYeavTdQeEX2toPqufh9gI35EQA,87
12
+ kneepoint-0.0.1.dist-info/entry_points.txt,sha256=ont7pLaejrH1vJI35MvbpGZHHJvkM8LHmWk17BaJxus,48
13
+ kneepoint-0.0.1.dist-info/licenses/LICENSE,sha256=xcmuX5vFxPr-QRmnqH3nUm6jX6Jx51Gk-DHRN_NYdLg,1091
14
+ kneepoint-0.0.1.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.31.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ kneepoint = kneepoint.cli:app
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 kneepoint-dev
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.