agentprofiler 0.1.0__tar.gz
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.
- agentprofiler-0.1.0/PKG-INFO +18 -0
- agentprofiler-0.1.0/README.md +3 -0
- agentprofiler-0.1.0/pyproject.toml +33 -0
- agentprofiler-0.1.0/setup.cfg +4 -0
- agentprofiler-0.1.0/src/agentprofiler/__init__.py +5 -0
- agentprofiler-0.1.0/src/agentprofiler/cli.py +12 -0
- agentprofiler-0.1.0/src/agentprofiler.egg-info/PKG-INFO +18 -0
- agentprofiler-0.1.0/src/agentprofiler.egg-info/SOURCES.txt +9 -0
- agentprofiler-0.1.0/src/agentprofiler.egg-info/dependency_links.txt +1 -0
- agentprofiler-0.1.0/src/agentprofiler.egg-info/entry_points.txt +2 -0
- agentprofiler-0.1.0/src/agentprofiler.egg-info/top_level.txt +1 -0
|
@@ -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,33 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "agentprofiler"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "Tools to profile and analyze agent behavior."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.9"
|
|
11
|
+
license = {text = "MIT"}
|
|
12
|
+
authors = [{ name = "Your Name", email = "you@example.com" }]
|
|
13
|
+
keywords = ["agents", "profiling", "llm"]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Programming Language :: Python :: 3",
|
|
16
|
+
"License :: OSI Approved :: MIT License",
|
|
17
|
+
"Operating System :: OS Independent",
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
dependencies = []
|
|
21
|
+
|
|
22
|
+
[project.scripts]
|
|
23
|
+
agentprofiler = "agentprofiler.cli:main"
|
|
24
|
+
|
|
25
|
+
[project.urls]
|
|
26
|
+
Homepage = "https://github.com/yourname/agentprofiler"
|
|
27
|
+
Issues = "https://github.com/yourname/agentprofiler/issues"
|
|
28
|
+
|
|
29
|
+
[tool.setuptools]
|
|
30
|
+
package-dir = {"" = "src"}
|
|
31
|
+
|
|
32
|
+
[tool.setuptools.packages.find]
|
|
33
|
+
where = ["src"]
|
|
@@ -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,9 @@
|
|
|
1
|
+
README.md
|
|
2
|
+
pyproject.toml
|
|
3
|
+
src/agentprofiler/__init__.py
|
|
4
|
+
src/agentprofiler/cli.py
|
|
5
|
+
src/agentprofiler.egg-info/PKG-INFO
|
|
6
|
+
src/agentprofiler.egg-info/SOURCES.txt
|
|
7
|
+
src/agentprofiler.egg-info/dependency_links.txt
|
|
8
|
+
src/agentprofiler.egg-info/entry_points.txt
|
|
9
|
+
src/agentprofiler.egg-info/top_level.txt
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
agentprofiler
|