agentprofiler 0.1.0__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.
@@ -0,0 +1,5 @@
1
+ __all__ = ["hello"]
2
+ __version__ = "0.1.0"
3
+
4
+ def hello() -> str:
5
+ return "hello from agentprofiler"
agentprofiler/cli.py ADDED
@@ -0,0 +1,12 @@
1
+ from __future__ import annotations
2
+ import argparse
3
+ from . import hello
4
+
5
+ def main() -> None:
6
+ p = argparse.ArgumentParser(prog="agentprofiler")
7
+ p.add_argument("--hello", action="store_true", help="Print a hello message")
8
+ args = p.parse_args()
9
+ if args.hello:
10
+ print(hello())
11
+ else:
12
+ p.print_help()
@@ -0,0 +1,18 @@
1
+ Metadata-Version: 2.4
2
+ Name: agentprofiler
3
+ Version: 0.1.0
4
+ Summary: Tools to profile and analyze agent behavior.
5
+ Author-email: Your Name <you@example.com>
6
+ License: MIT
7
+ Project-URL: Homepage, https://github.com/yourname/agentprofiler
8
+ Project-URL: Issues, https://github.com/yourname/agentprofiler/issues
9
+ Keywords: agents,profiling,llm
10
+ Classifier: Programming Language :: Python :: 3
11
+ Classifier: License :: OSI Approved :: MIT License
12
+ Classifier: Operating System :: OS Independent
13
+ Requires-Python: >=3.9
14
+ Description-Content-Type: text/markdown
15
+
16
+ # agentprofiler
17
+
18
+ A small library for profiling and analyzing agent behavior.
@@ -0,0 +1,7 @@
1
+ agentprofiler/__init__.py,sha256=LxkB7YFwhI2Kj9PpCH5SipRUfRKK9GbnNcTllsXafpg,101
2
+ agentprofiler/cli.py,sha256=0dVMyvvfXby1fQI0wOJ_g4B1lb7M_Btbcn0RocDo4j8,328
3
+ agentprofiler-0.1.0.dist-info/METADATA,sha256=4vK3xpxO0oHozlyLzrEROvrr2kgcP5jVkus0H2BChwE,619
4
+ agentprofiler-0.1.0.dist-info/WHEEL,sha256=YCfwYGOYMi5Jhw2fU4yNgwErybb2IX5PEwBKV4ZbdBo,91
5
+ agentprofiler-0.1.0.dist-info/entry_points.txt,sha256=RDjwSue56fqxbsgOuQ6zu6nsNyez6cUDyzbM4Ss-hRw,57
6
+ agentprofiler-0.1.0.dist-info/top_level.txt,sha256=cVNnfq1jS5upabfau5aCbNiZcMYpFTwdGs74uH_dvfY,14
7
+ agentprofiler-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (82.0.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ agentprofiler = agentprofiler.cli:main
@@ -0,0 +1 @@
1
+ agentprofiler