naive-knowledge-base 0.1.0__tar.gz → 0.1.2__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.
Files changed (34) hide show
  1. {naive_knowledge_base-0.1.0/naive_knowledge_base.egg-info → naive_knowledge_base-0.1.2}/PKG-INFO +114 -1
  2. {naive_knowledge_base-0.1.0 → naive_knowledge_base-0.1.2}/agents/dependency_graph/agent.py +9 -3
  3. {naive_knowledge_base-0.1.0 → naive_knowledge_base-0.1.2/naive_knowledge_base.egg-info}/PKG-INFO +114 -1
  4. {naive_knowledge_base-0.1.0 → naive_knowledge_base-0.1.2}/naive_knowledge_base.egg-info/SOURCES.txt +1 -0
  5. naive_knowledge_base-0.1.0/requirements.txt → naive_knowledge_base-0.1.2/naive_knowledge_base.egg-info/requires.txt +10 -2
  6. naive_knowledge_base-0.1.2/pyproject.toml +175 -0
  7. naive_knowledge_base-0.1.2/requirements.txt +286 -0
  8. naive_knowledge_base-0.1.0/pyproject.toml +0 -57
  9. {naive_knowledge_base-0.1.0 → naive_knowledge_base-0.1.2}/LICENSE +0 -0
  10. {naive_knowledge_base-0.1.0 → naive_knowledge_base-0.1.2}/MANIFEST.in +0 -0
  11. {naive_knowledge_base-0.1.0 → naive_knowledge_base-0.1.2}/README.md +0 -0
  12. {naive_knowledge_base-0.1.0 → naive_knowledge_base-0.1.2}/agents/__init__.py +0 -0
  13. {naive_knowledge_base-0.1.0 → naive_knowledge_base-0.1.2}/agents/common/__init__.py +0 -0
  14. {naive_knowledge_base-0.1.0 → naive_knowledge_base-0.1.2}/agents/common/base.py +0 -0
  15. {naive_knowledge_base-0.1.0 → naive_knowledge_base-0.1.2}/agents/common/exceptions.py +0 -0
  16. {naive_knowledge_base-0.1.0 → naive_knowledge_base-0.1.2}/agents/common/logging.py +0 -0
  17. {naive_knowledge_base-0.1.0 → naive_knowledge_base-0.1.2}/agents/common/schema_converter.py +0 -0
  18. {naive_knowledge_base-0.1.0 → naive_knowledge_base-0.1.2}/agents/common/tools.py +0 -0
  19. {naive_knowledge_base-0.1.0 → naive_knowledge_base-0.1.2}/agents/common/utils.py +0 -0
  20. {naive_knowledge_base-0.1.0 → naive_knowledge_base-0.1.2}/agents/dependency_graph/__init__.py +0 -0
  21. {naive_knowledge_base-0.1.0 → naive_knowledge_base-0.1.2}/agents/dependency_graph/model.py +0 -0
  22. {naive_knowledge_base-0.1.0 → naive_knowledge_base-0.1.2}/api_models/__init__.py +0 -0
  23. {naive_knowledge_base-0.1.0 → naive_knowledge_base-0.1.2}/api_models/flow_api_model.py +0 -0
  24. {naive_knowledge_base-0.1.0 → naive_knowledge_base-0.1.2}/cli.py +0 -0
  25. {naive_knowledge_base-0.1.0 → naive_knowledge_base-0.1.2}/main.py +0 -0
  26. {naive_knowledge_base-0.1.0 → naive_knowledge_base-0.1.2}/naive_knowledge_base.egg-info/dependency_links.txt +0 -0
  27. {naive_knowledge_base-0.1.0 → naive_knowledge_base-0.1.2}/naive_knowledge_base.egg-info/entry_points.txt +0 -0
  28. {naive_knowledge_base-0.1.0 → naive_knowledge_base-0.1.2}/naive_knowledge_base.egg-info/not-zip-safe +0 -0
  29. {naive_knowledge_base-0.1.0 → naive_knowledge_base-0.1.2}/naive_knowledge_base.egg-info/top_level.txt +0 -0
  30. {naive_knowledge_base-0.1.0 → naive_knowledge_base-0.1.2}/setup.cfg +0 -0
  31. {naive_knowledge_base-0.1.0 → naive_knowledge_base-0.1.2}/setup.py +0 -0
  32. {naive_knowledge_base-0.1.0 → naive_knowledge_base-0.1.2}/tools/__init__.py +0 -0
  33. {naive_knowledge_base-0.1.0 → naive_knowledge_base-0.1.2}/tools/io.py +0 -0
  34. {naive_knowledge_base-0.1.0 → naive_knowledge_base-0.1.2}/tools/tree.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: naive-knowledge-base
3
- Version: 0.1.0
3
+ Version: 0.1.2
4
4
  Summary: A dependency graph analyzer using smolagents
5
5
  Home-page: https://github.com/yourusername/naive-knowledge-base
6
6
  Author: Your Name
@@ -24,6 +24,119 @@ Classifier: Programming Language :: Python :: 3.12
24
24
  Requires-Python: >=3.8
25
25
  Description-Content-Type: text/markdown
26
26
  License-File: LICENSE
27
+ Requires-Dist: annotated-types==0.7.0
28
+ Requires-Dist: anyio==4.11.0
29
+ Requires-Dist: arize-phoenix-otel==0.13.1
30
+ Requires-Dist: astroid==3.3.11
31
+ Requires-Dist: attrs==25.3.0
32
+ Requires-Dist: autopep8==2.3.2
33
+ Requires-Dist: certifi==2025.8.3
34
+ Requires-Dist: charset-normalizer==3.4.3
35
+ Requires-Dist: click==8.3.0
36
+ Requires-Dist: colorama==0.4.6
37
+ Requires-Dist: coloredlogs==15.0.1
38
+ Requires-Dist: dill==0.4.0
39
+ Requires-Dist: directory_tree==1.0.0
40
+ Requires-Dist: distro==1.9.0
41
+ Requires-Dist: emerge-viz==2.0.7
42
+ Requires-Dist: filelock==3.19.1
43
+ Requires-Dist: fsspec==2025.9.0
44
+ Requires-Dist: gitdb==4.0.12
45
+ Requires-Dist: GitPython==3.1.45
46
+ Requires-Dist: googleapis-common-protos==1.70.0
47
+ Requires-Dist: grpcio==1.75.0
48
+ Requires-Dist: h11==0.16.0
49
+ Requires-Dist: hf-xet==1.1.10
50
+ Requires-Dist: httpcore==1.0.9
51
+ Requires-Dist: httpx==0.28.1
52
+ Requires-Dist: httpx-sse==0.4.1
53
+ Requires-Dist: huggingface-hub==0.35.1
54
+ Requires-Dist: humanfriendly==10.0
55
+ Requires-Dist: idna==3.10
56
+ Requires-Dist: importlib_metadata==8.7.0
57
+ Requires-Dist: interrogate==1.7.0
58
+ Requires-Dist: isort==6.0.1
59
+ Requires-Dist: Jinja2==3.1.6
60
+ Requires-Dist: jiter==0.11.0
61
+ Requires-Dist: joblib==1.5.2
62
+ Requires-Dist: jsonschema==4.25.1
63
+ Requires-Dist: jsonschema-specifications==2025.9.1
64
+ Requires-Dist: lizard==1.17.31
65
+ Requires-Dist: markdown-it-py==4.0.0
66
+ Requires-Dist: MarkupSafe==3.0.2
67
+ Requires-Dist: mccabe==0.7.0
68
+ Requires-Dist: mcp==1.14.1
69
+ Requires-Dist: mdurl==0.1.2
70
+ Requires-Dist: networkx==3.5
71
+ Requires-Dist: numpy==2.3.3
72
+ Requires-Dist: openai==1.109.1
73
+ Requires-Dist: openinference-instrumentation==0.1.38
74
+ Requires-Dist: openinference-instrumentation-smolagents==0.1.18
75
+ Requires-Dist: openinference-semantic-conventions==0.1.21
76
+ Requires-Dist: opentelemetry-api==1.37.0
77
+ Requires-Dist: opentelemetry-exporter-otlp==1.37.0
78
+ Requires-Dist: opentelemetry-exporter-otlp-proto-common==1.37.0
79
+ Requires-Dist: opentelemetry-exporter-otlp-proto-grpc==1.37.0
80
+ Requires-Dist: opentelemetry-exporter-otlp-proto-http==1.37.0
81
+ Requires-Dist: opentelemetry-instrumentation==0.58b0
82
+ Requires-Dist: opentelemetry-proto==1.37.0
83
+ Requires-Dist: opentelemetry-sdk==1.37.0
84
+ Requires-Dist: opentelemetry-semantic-conventions==0.58b0
85
+ Requires-Dist: packaging==25.0
86
+ Requires-Dist: pathspec==0.12.1
87
+ Requires-Dist: pillow==11.3.0
88
+ Requires-Dist: platformdirs==4.4.0
89
+ Requires-Dist: prettytable==3.16.0
90
+ Requires-Dist: protobuf==6.32.1
91
+ Requires-Dist: py==1.11.0
92
+ Requires-Dist: pycodestyle==2.14.0
93
+ Requires-Dist: pydantic==2.11.9
94
+ Requires-Dist: pydantic-settings==2.11.0
95
+ Requires-Dist: pydantic_core==2.33.2
96
+ Requires-Dist: PyDriller==2.9
97
+ Requires-Dist: Pygments==2.19.2
98
+ Requires-Dist: pylint==3.3.8
99
+ Requires-Dist: pyparsing==3.2.5
100
+ Requires-Dist: pyperclip==1.10.0
101
+ Requires-Dist: python-dotenv==1.1.1
102
+ Requires-Dist: python-louvain==0.16
103
+ Requires-Dist: python-multipart==0.0.20
104
+ Requires-Dist: python-sonarqube-api==2.0.5
105
+ Requires-Dist: pytz==2025.2
106
+ Requires-Dist: PyYAML==6.0.2
107
+ Requires-Dist: referencing==0.36.2
108
+ Requires-Dist: requests==2.32.5
109
+ Requires-Dist: rich==14.1.0
110
+ Requires-Dist: rpds-py==0.27.1
111
+ Requires-Dist: scikit-learn==1.7.2
112
+ Requires-Dist: scipy==1.16.2
113
+ Requires-Dist: setuptools==80.9.0
114
+ Requires-Dist: smmap==5.0.2
115
+ Requires-Dist: smolagents==1.16.1
116
+ Requires-Dist: sniffio==1.3.1
117
+ Requires-Dist: sse-starlette==3.0.2
118
+ Requires-Dist: starlette==0.48.0
119
+ Requires-Dist: tabulate==0.9.0
120
+ Requires-Dist: threadpoolctl==3.6.0
121
+ Requires-Dist: tomlkit==0.13.3
122
+ Requires-Dist: python-toon==0.1.3
123
+ Requires-Dist: tqdm==4.67.1
124
+ Requires-Dist: types-pytz==2025.2.0.20250809
125
+ Requires-Dist: typing-inspection==0.4.1
126
+ Requires-Dist: typing_extensions==4.15.0
127
+ Requires-Dist: urllib3==2.5.0
128
+ Requires-Dist: uvicorn==0.37.0
129
+ Requires-Dist: wcwidth==0.2.14
130
+ Requires-Dist: wheel==0.45.1
131
+ Requires-Dist: wrapt==1.17.3
132
+ Requires-Dist: zipp==3.23.0
133
+ Provides-Extra: dev
134
+ Requires-Dist: pytest>=7.0.0; extra == "dev"
135
+ Requires-Dist: pytest-cov>=4.0.0; extra == "dev"
136
+ Requires-Dist: black>=22.0.0; extra == "dev"
137
+ Requires-Dist: isort>=5.10.0; extra == "dev"
138
+ Requires-Dist: mypy>=1.0.0; extra == "dev"
139
+ Requires-Dist: pre-commit>=2.20.0; extra == "dev"
27
140
  Dynamic: author
28
141
  Dynamic: home-page
29
142
  Dynamic: license-file
@@ -52,12 +52,18 @@ def generate_dependency_graph(source_directory: str, permit_file_extensions: lis
52
52
  raise ValueError(f"Failed to delete Emerge configuration file: {e}")
53
53
 
54
54
  # Transform the dependency graph into a more readable format
55
- content = encode(dependency_graph)
55
+ # content = encode(dependency_graph)
56
+
57
+ # file_path = save_content_to_file(
58
+ # content=content,
59
+ # source_directory=source_directory,
60
+ # file_name="dependency_graph.toon"
61
+ # )
56
62
 
57
63
  file_path = save_content_to_file(
58
- content=content,
64
+ content=json.dumps(dependency_graph, indent=2),
59
65
  source_directory=source_directory,
60
- file_name="dependency_graph.toon"
66
+ file_name="dependency_graph.json"
61
67
  )
62
68
 
63
69
  return f"Dependency graph saved to {file_path}"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: naive-knowledge-base
3
- Version: 0.1.0
3
+ Version: 0.1.2
4
4
  Summary: A dependency graph analyzer using smolagents
5
5
  Home-page: https://github.com/yourusername/naive-knowledge-base
6
6
  Author: Your Name
@@ -24,6 +24,119 @@ Classifier: Programming Language :: Python :: 3.12
24
24
  Requires-Python: >=3.8
25
25
  Description-Content-Type: text/markdown
26
26
  License-File: LICENSE
27
+ Requires-Dist: annotated-types==0.7.0
28
+ Requires-Dist: anyio==4.11.0
29
+ Requires-Dist: arize-phoenix-otel==0.13.1
30
+ Requires-Dist: astroid==3.3.11
31
+ Requires-Dist: attrs==25.3.0
32
+ Requires-Dist: autopep8==2.3.2
33
+ Requires-Dist: certifi==2025.8.3
34
+ Requires-Dist: charset-normalizer==3.4.3
35
+ Requires-Dist: click==8.3.0
36
+ Requires-Dist: colorama==0.4.6
37
+ Requires-Dist: coloredlogs==15.0.1
38
+ Requires-Dist: dill==0.4.0
39
+ Requires-Dist: directory_tree==1.0.0
40
+ Requires-Dist: distro==1.9.0
41
+ Requires-Dist: emerge-viz==2.0.7
42
+ Requires-Dist: filelock==3.19.1
43
+ Requires-Dist: fsspec==2025.9.0
44
+ Requires-Dist: gitdb==4.0.12
45
+ Requires-Dist: GitPython==3.1.45
46
+ Requires-Dist: googleapis-common-protos==1.70.0
47
+ Requires-Dist: grpcio==1.75.0
48
+ Requires-Dist: h11==0.16.0
49
+ Requires-Dist: hf-xet==1.1.10
50
+ Requires-Dist: httpcore==1.0.9
51
+ Requires-Dist: httpx==0.28.1
52
+ Requires-Dist: httpx-sse==0.4.1
53
+ Requires-Dist: huggingface-hub==0.35.1
54
+ Requires-Dist: humanfriendly==10.0
55
+ Requires-Dist: idna==3.10
56
+ Requires-Dist: importlib_metadata==8.7.0
57
+ Requires-Dist: interrogate==1.7.0
58
+ Requires-Dist: isort==6.0.1
59
+ Requires-Dist: Jinja2==3.1.6
60
+ Requires-Dist: jiter==0.11.0
61
+ Requires-Dist: joblib==1.5.2
62
+ Requires-Dist: jsonschema==4.25.1
63
+ Requires-Dist: jsonschema-specifications==2025.9.1
64
+ Requires-Dist: lizard==1.17.31
65
+ Requires-Dist: markdown-it-py==4.0.0
66
+ Requires-Dist: MarkupSafe==3.0.2
67
+ Requires-Dist: mccabe==0.7.0
68
+ Requires-Dist: mcp==1.14.1
69
+ Requires-Dist: mdurl==0.1.2
70
+ Requires-Dist: networkx==3.5
71
+ Requires-Dist: numpy==2.3.3
72
+ Requires-Dist: openai==1.109.1
73
+ Requires-Dist: openinference-instrumentation==0.1.38
74
+ Requires-Dist: openinference-instrumentation-smolagents==0.1.18
75
+ Requires-Dist: openinference-semantic-conventions==0.1.21
76
+ Requires-Dist: opentelemetry-api==1.37.0
77
+ Requires-Dist: opentelemetry-exporter-otlp==1.37.0
78
+ Requires-Dist: opentelemetry-exporter-otlp-proto-common==1.37.0
79
+ Requires-Dist: opentelemetry-exporter-otlp-proto-grpc==1.37.0
80
+ Requires-Dist: opentelemetry-exporter-otlp-proto-http==1.37.0
81
+ Requires-Dist: opentelemetry-instrumentation==0.58b0
82
+ Requires-Dist: opentelemetry-proto==1.37.0
83
+ Requires-Dist: opentelemetry-sdk==1.37.0
84
+ Requires-Dist: opentelemetry-semantic-conventions==0.58b0
85
+ Requires-Dist: packaging==25.0
86
+ Requires-Dist: pathspec==0.12.1
87
+ Requires-Dist: pillow==11.3.0
88
+ Requires-Dist: platformdirs==4.4.0
89
+ Requires-Dist: prettytable==3.16.0
90
+ Requires-Dist: protobuf==6.32.1
91
+ Requires-Dist: py==1.11.0
92
+ Requires-Dist: pycodestyle==2.14.0
93
+ Requires-Dist: pydantic==2.11.9
94
+ Requires-Dist: pydantic-settings==2.11.0
95
+ Requires-Dist: pydantic_core==2.33.2
96
+ Requires-Dist: PyDriller==2.9
97
+ Requires-Dist: Pygments==2.19.2
98
+ Requires-Dist: pylint==3.3.8
99
+ Requires-Dist: pyparsing==3.2.5
100
+ Requires-Dist: pyperclip==1.10.0
101
+ Requires-Dist: python-dotenv==1.1.1
102
+ Requires-Dist: python-louvain==0.16
103
+ Requires-Dist: python-multipart==0.0.20
104
+ Requires-Dist: python-sonarqube-api==2.0.5
105
+ Requires-Dist: pytz==2025.2
106
+ Requires-Dist: PyYAML==6.0.2
107
+ Requires-Dist: referencing==0.36.2
108
+ Requires-Dist: requests==2.32.5
109
+ Requires-Dist: rich==14.1.0
110
+ Requires-Dist: rpds-py==0.27.1
111
+ Requires-Dist: scikit-learn==1.7.2
112
+ Requires-Dist: scipy==1.16.2
113
+ Requires-Dist: setuptools==80.9.0
114
+ Requires-Dist: smmap==5.0.2
115
+ Requires-Dist: smolagents==1.16.1
116
+ Requires-Dist: sniffio==1.3.1
117
+ Requires-Dist: sse-starlette==3.0.2
118
+ Requires-Dist: starlette==0.48.0
119
+ Requires-Dist: tabulate==0.9.0
120
+ Requires-Dist: threadpoolctl==3.6.0
121
+ Requires-Dist: tomlkit==0.13.3
122
+ Requires-Dist: python-toon==0.1.3
123
+ Requires-Dist: tqdm==4.67.1
124
+ Requires-Dist: types-pytz==2025.2.0.20250809
125
+ Requires-Dist: typing-inspection==0.4.1
126
+ Requires-Dist: typing_extensions==4.15.0
127
+ Requires-Dist: urllib3==2.5.0
128
+ Requires-Dist: uvicorn==0.37.0
129
+ Requires-Dist: wcwidth==0.2.14
130
+ Requires-Dist: wheel==0.45.1
131
+ Requires-Dist: wrapt==1.17.3
132
+ Requires-Dist: zipp==3.23.0
133
+ Provides-Extra: dev
134
+ Requires-Dist: pytest>=7.0.0; extra == "dev"
135
+ Requires-Dist: pytest-cov>=4.0.0; extra == "dev"
136
+ Requires-Dist: black>=22.0.0; extra == "dev"
137
+ Requires-Dist: isort>=5.10.0; extra == "dev"
138
+ Requires-Dist: mypy>=1.0.0; extra == "dev"
139
+ Requires-Dist: pre-commit>=2.20.0; extra == "dev"
27
140
  Dynamic: author
28
141
  Dynamic: home-page
29
142
  Dynamic: license-file
@@ -24,6 +24,7 @@ naive_knowledge_base.egg-info/SOURCES.txt
24
24
  naive_knowledge_base.egg-info/dependency_links.txt
25
25
  naive_knowledge_base.egg-info/entry_points.txt
26
26
  naive_knowledge_base.egg-info/not-zip-safe
27
+ naive_knowledge_base.egg-info/requires.txt
27
28
  naive_knowledge_base.egg-info/top_level.txt
28
29
  tools/__init__.py
29
30
  tools/io.py
@@ -12,7 +12,7 @@ coloredlogs==15.0.1
12
12
  dill==0.4.0
13
13
  directory_tree==1.0.0
14
14
  distro==1.9.0
15
- emerge-viz @ git+https://github.com/henriquegouveia/emerge@2ff0ebf668f6a97afbf347c501ee6d7dbbc49612
15
+ emerge-viz==2.0.7
16
16
  filelock==3.19.1
17
17
  fsspec==2025.9.0
18
18
  gitdb==4.0.12
@@ -93,7 +93,7 @@ starlette==0.48.0
93
93
  tabulate==0.9.0
94
94
  threadpoolctl==3.6.0
95
95
  tomlkit==0.13.3
96
- toon_format @ git+https://github.com/toon-format/toon-python.git@8dfb593ed1c2b1442f1dd161406e1f7b8ae16573
96
+ python-toon==0.1.3
97
97
  tqdm==4.67.1
98
98
  types-pytz==2025.2.0.20250809
99
99
  typing-inspection==0.4.1
@@ -104,3 +104,11 @@ wcwidth==0.2.14
104
104
  wheel==0.45.1
105
105
  wrapt==1.17.3
106
106
  zipp==3.23.0
107
+
108
+ [dev]
109
+ pytest>=7.0.0
110
+ pytest-cov>=4.0.0
111
+ black>=22.0.0
112
+ isort>=5.10.0
113
+ mypy>=1.0.0
114
+ pre-commit>=2.20.0
@@ -0,0 +1,175 @@
1
+ [build-system]
2
+ requires = ["setuptools>=45", "wheel", "setuptools_scm>=6.2"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "naive-knowledge-base"
7
+ version = "0.1.2"
8
+ description = "A dependency graph analyzer using smolagents"
9
+ readme = "README.md"
10
+ requires-python = ">=3.8"
11
+ license = {text = "MIT"}
12
+ authors = [
13
+ {name = "Your Name", email = "your.email@example.com"}
14
+ ]
15
+ keywords = ["dependency-graph", "code-analysis", "smolagents", "ai-agents"]
16
+ classifiers = [
17
+ "Development Status :: 3 - Alpha",
18
+ "Intended Audience :: Developers",
19
+ "Topic :: Software Development :: Libraries :: Python Modules",
20
+ "License :: OSI Approved :: MIT License",
21
+ "Programming Language :: Python :: 3",
22
+ "Programming Language :: Python :: 3.8",
23
+ "Programming Language :: Python :: 3.9",
24
+ "Programming Language :: Python :: 3.10",
25
+ "Programming Language :: Python :: 3.11",
26
+ "Programming Language :: Python :: 3.12",
27
+ ]
28
+ dependencies = [
29
+ "annotated-types==0.7.0",
30
+ "anyio==4.11.0",
31
+ "arize-phoenix-otel==0.13.1",
32
+ "astroid==3.3.11",
33
+ "attrs==25.3.0",
34
+ "autopep8==2.3.2",
35
+ "certifi==2025.8.3",
36
+ "charset-normalizer==3.4.3",
37
+ "click==8.3.0",
38
+ "colorama==0.4.6",
39
+ "coloredlogs==15.0.1",
40
+ "dill==0.4.0",
41
+ "directory_tree==1.0.0",
42
+ "distro==1.9.0",
43
+ "emerge-viz==2.0.7",
44
+ "filelock==3.19.1",
45
+ "fsspec==2025.9.0",
46
+ "gitdb==4.0.12",
47
+ "GitPython==3.1.45",
48
+ "googleapis-common-protos==1.70.0",
49
+ "grpcio==1.75.0",
50
+ "h11==0.16.0",
51
+ "hf-xet==1.1.10",
52
+ "httpcore==1.0.9",
53
+ "httpx==0.28.1",
54
+ "httpx-sse==0.4.1",
55
+ "huggingface-hub==0.35.1",
56
+ "humanfriendly==10.0",
57
+ "idna==3.10",
58
+ "importlib_metadata==8.7.0",
59
+ "interrogate==1.7.0",
60
+ "isort==6.0.1",
61
+ "Jinja2==3.1.6",
62
+ "jiter==0.11.0",
63
+ "joblib==1.5.2",
64
+ "jsonschema==4.25.1",
65
+ "jsonschema-specifications==2025.9.1",
66
+ "lizard==1.17.31",
67
+ "markdown-it-py==4.0.0",
68
+ "MarkupSafe==3.0.2",
69
+ "mccabe==0.7.0",
70
+ "mcp==1.14.1",
71
+ "mdurl==0.1.2",
72
+ "networkx==3.5",
73
+ "numpy==2.3.3",
74
+ "openai==1.109.1",
75
+ "openinference-instrumentation==0.1.38",
76
+ "openinference-instrumentation-smolagents==0.1.18",
77
+ "openinference-semantic-conventions==0.1.21",
78
+ "opentelemetry-api==1.37.0",
79
+ "opentelemetry-exporter-otlp==1.37.0",
80
+ "opentelemetry-exporter-otlp-proto-common==1.37.0",
81
+ "opentelemetry-exporter-otlp-proto-grpc==1.37.0",
82
+ "opentelemetry-exporter-otlp-proto-http==1.37.0",
83
+ "opentelemetry-instrumentation==0.58b0",
84
+ "opentelemetry-proto==1.37.0",
85
+ "opentelemetry-sdk==1.37.0",
86
+ "opentelemetry-semantic-conventions==0.58b0",
87
+ "packaging==25.0",
88
+ "pathspec==0.12.1",
89
+ "pillow==11.3.0",
90
+ "platformdirs==4.4.0",
91
+ "prettytable==3.16.0",
92
+ "protobuf==6.32.1",
93
+ "py==1.11.0",
94
+ "pycodestyle==2.14.0",
95
+ "pydantic==2.11.9",
96
+ "pydantic-settings==2.11.0",
97
+ "pydantic_core==2.33.2",
98
+ "PyDriller==2.9",
99
+ "Pygments==2.19.2",
100
+ "pylint==3.3.8",
101
+ "pyparsing==3.2.5",
102
+ "pyperclip==1.10.0",
103
+ "python-dotenv==1.1.1",
104
+ "python-louvain==0.16",
105
+ "python-multipart==0.0.20",
106
+ "python-sonarqube-api==2.0.5",
107
+ "pytz==2025.2",
108
+ "PyYAML==6.0.2",
109
+ "referencing==0.36.2",
110
+ "requests==2.32.5",
111
+ "rich==14.1.0",
112
+ "rpds-py==0.27.1",
113
+ "scikit-learn==1.7.2",
114
+ "scipy==1.16.2",
115
+ "setuptools==80.9.0",
116
+ "smmap==5.0.2",
117
+ "smolagents==1.16.1",
118
+ "sniffio==1.3.1",
119
+ "sse-starlette==3.0.2",
120
+ "starlette==0.48.0",
121
+ "tabulate==0.9.0",
122
+ "threadpoolctl==3.6.0",
123
+ "tomlkit==0.13.3",
124
+ "python-toon==0.1.3",
125
+ "tqdm==4.67.1",
126
+ "types-pytz==2025.2.0.20250809",
127
+ "typing-inspection==0.4.1",
128
+ "typing_extensions==4.15.0",
129
+ "urllib3==2.5.0",
130
+ "uvicorn==0.37.0",
131
+ "wcwidth==0.2.14",
132
+ "wheel==0.45.1",
133
+ "wrapt==1.17.3",
134
+ "zipp==3.23.0",
135
+ ]
136
+
137
+ [project.urls]
138
+ Homepage = "https://github.com/yourusername/naive-knowledge-base"
139
+ Documentation = "https://github.com/yourusername/naive-knowledge-base#readme"
140
+ Repository = "https://github.com/yourusername/naive-knowledge-base"
141
+ Issues = "https://github.com/yourusername/naive-knowledge-base/issues"
142
+
143
+ [project.scripts]
144
+ naive-kb = "cli:main"
145
+
146
+ [tool.setuptools]
147
+ py-modules = ["cli", "main"]
148
+ packages = ["agents", "agents.common", "agents.dependency_graph", "api_models", "tools"]
149
+
150
+ [tool.setuptools.package-data]
151
+ "*" = ["py.typed"]
152
+
153
+ [tool.black]
154
+ line-length = 100
155
+ target-version = ['py38', 'py39', 'py310', 'py311', 'py312']
156
+
157
+ [tool.isort]
158
+ profile = "black"
159
+ line_length = 100
160
+
161
+ [tool.pytest.ini_options]
162
+ testpaths = ["tests"]
163
+ python_files = ["test_*.py"]
164
+ python_classes = ["Test*"]
165
+ python_functions = ["test_*"]
166
+
167
+ [project.optional-dependencies]
168
+ dev = [
169
+ "pytest>=7.0.0",
170
+ "pytest-cov>=4.0.0",
171
+ "black>=22.0.0",
172
+ "isort>=5.10.0",
173
+ "mypy>=1.0.0",
174
+ "pre-commit>=2.20.0",
175
+ ]
@@ -0,0 +1,286 @@
1
+ aiohappyeyeballs==2.6.1
2
+ aiohttp==3.12.0
3
+ aiosignal==1.3.2
4
+ aniso8601==10.0.1
5
+ annotated-types==0.7.0
6
+ anyio==4.11.0
7
+ APScheduler==3.11.0
8
+ argcomplete==3.6.2
9
+ arize-phoenix-otel==0.13.1
10
+ asgiref==3.8.1
11
+ astroid==3.3.11
12
+ attrs==25.3.0
13
+ autopep8==2.3.2
14
+ azure-ai-ml==1.27.1
15
+ azure-common==1.1.28
16
+ azure-core==1.34.0
17
+ azure-core-tracing-opentelemetry==1.0.0b12
18
+ azure-cosmos==4.9.0
19
+ azure-identity==1.23.0
20
+ azure-mgmt-core==1.5.0
21
+ azure-monitor-opentelemetry==1.6.7
22
+ azure-monitor-opentelemetry-exporter==1.0.0b36
23
+ azure-storage-blob==12.25.1
24
+ azure-storage-file-datalake==12.20.0
25
+ azure-storage-file-share==12.21.0
26
+ backoff==2.2.1
27
+ beautifulsoup4==4.13.4
28
+ black==25.11.0
29
+ blinker==1.9.0
30
+ boto3==1.36.0
31
+ botocore==1.36.26
32
+ bs4==0.0.2
33
+ build==1.3.0
34
+ certifi==2025.8.3
35
+ cffi==1.17.1
36
+ cfgv==3.5.0
37
+ charset-normalizer==3.4.3
38
+ claude-agent-sdk==0.1.8
39
+ click==8.3.0
40
+ colorama==0.4.6
41
+ coloredlogs==15.0.1
42
+ coverage==7.12.0
43
+ croniter==6.0.0
44
+ cryptography==43.0.3
45
+ dataclasses-json==0.6.7
46
+ Deprecated==1.2.18
47
+ dill==0.4.0
48
+ directory_tree==1.0.0
49
+ distlib==0.4.0
50
+ distro==1.9.0
51
+ dnspython==2.8.0
52
+ docstring_parser==0.16
53
+ docutils==0.22.3
54
+ email-validator==2.3.0
55
+ emerge-viz @ git+https://github.com/henriquegouveia/emerge@2ff0ebf668f6a97afbf347c501ee6d7dbbc49612
56
+ fastapi==0.115.12
57
+ fastapi-sso==0.16.0
58
+ fastuuid==0.14.0
59
+ filelock==3.19.1
60
+ filetype==1.2.0
61
+ fixedint==0.1.6
62
+ Flask==3.1.1
63
+ flask-cors==5.0.1
64
+ flask-restx==1.3.0
65
+ flow_core_promptflow_toolbox==2.8.0
66
+ frozenlist==1.6.0
67
+ fsspec==2025.9.0
68
+ gitdb==4.0.12
69
+ GitPython==3.1.45
70
+ google_search_results==2.4.1
71
+ googleapis-common-protos==1.70.0
72
+ grpcio==1.75.0
73
+ gunicorn==23.0.0
74
+ h11==0.16.0
75
+ hf-xet==1.1.10
76
+ httpcore==1.0.9
77
+ httptools==0.6.4
78
+ httpx==0.28.1
79
+ httpx-sse==0.4.1
80
+ huggingface-hub==0.35.1
81
+ humanfriendly==10.0
82
+ id==1.5.0
83
+ identify==2.6.15
84
+ idna==3.10
85
+ importlib_metadata==8.7.0
86
+ importlib_resources==6.5.2
87
+ iniconfig==2.3.0
88
+ interrogate==1.7.0
89
+ isodate==0.7.2
90
+ isort==6.0.1
91
+ itsdangerous==2.2.0
92
+ jaraco.classes==3.4.0
93
+ Jinja2==3.1.6
94
+ jiter==0.11.0
95
+ jmespath==1.0.1
96
+ joblib==1.5.2
97
+ jsonpatch==1.33
98
+ jsonpointer==3.0.0
99
+ jsonschema==4.25.1
100
+ jsonschema-specifications==2025.9.1
101
+ keyring==24.2.0
102
+ langchain==0.3.26
103
+ langchain-community==0.3.26
104
+ langchain-core==0.3.66
105
+ langchain-openai==0.3.27
106
+ langchain-text-splitters==0.3.8
107
+ langgraph==0.5.0
108
+ langgraph-checkpoint==2.1.0
109
+ langgraph-prebuilt==0.5.1
110
+ langgraph-sdk==0.1.72
111
+ langsmith==0.4.4
112
+ litellm==1.79.0
113
+ litellm-enterprise==0.1.20
114
+ litellm-proxy-extras==0.2.29
115
+ lizard==1.17.31
116
+ markdown-it-py==4.0.0
117
+ MarkupSafe==3.0.2
118
+ marshmallow==3.23.2
119
+ mccabe==0.7.0
120
+ mcp==1.14.1
121
+ mdurl==0.1.2
122
+ more-itertools==10.7.0
123
+ msal==1.32.3
124
+ msal-extensions==1.3.1
125
+ msrest==0.7.1
126
+ multidict==6.4.4
127
+ mypy==1.18.2
128
+ mypy_extensions==1.1.0
129
+ -e git+ssh://git@bitbucket.org/h3nr1qu3/refactor-agent.git@f33cf9f63b894583226d0c549bbf632c50231648#egg=naive_knowledge_base&subdirectory=smolagents_refactor/naive_knowledge_base
130
+ networkx==3.5
131
+ nh3==0.3.2
132
+ nodeenv==1.9.1
133
+ numpy==2.3.3
134
+ oauthlib==3.2.2
135
+ openai==1.109.1
136
+ openinference-instrumentation==0.1.38
137
+ openinference-instrumentation-litellm==0.1.27
138
+ openinference-instrumentation-smolagents==0.1.18
139
+ openinference-semantic-conventions==0.1.21
140
+ opentelemetry-api==1.37.0
141
+ opentelemetry-distro==0.58b0
142
+ opentelemetry-exporter-otlp==1.37.0
143
+ opentelemetry-exporter-otlp-proto-common==1.37.0
144
+ opentelemetry-exporter-otlp-proto-grpc==1.37.0
145
+ opentelemetry-exporter-otlp-proto-http==1.37.0
146
+ opentelemetry-instrumentation==0.58b0
147
+ opentelemetry-instrumentation-aiohttp-client==0.58b0
148
+ opentelemetry-instrumentation-aiohttp-server==0.58b0
149
+ opentelemetry-instrumentation-asgi==0.58b0
150
+ opentelemetry-instrumentation-asyncio==0.58b0
151
+ opentelemetry-instrumentation-boto3sqs==0.58b0
152
+ opentelemetry-instrumentation-botocore==0.58b0
153
+ opentelemetry-instrumentation-click==0.58b0
154
+ opentelemetry-instrumentation-dbapi==0.58b0
155
+ opentelemetry-instrumentation-django==0.54b1
156
+ opentelemetry-instrumentation-fastapi==0.58b0
157
+ opentelemetry-instrumentation-flask==0.58b0
158
+ opentelemetry-instrumentation-grpc==0.58b0
159
+ opentelemetry-instrumentation-httpx==0.58b0
160
+ opentelemetry-instrumentation-jinja2==0.58b0
161
+ opentelemetry-instrumentation-logging==0.58b0
162
+ opentelemetry-instrumentation-openai-v2==2.1b0
163
+ opentelemetry-instrumentation-pika==0.58b0
164
+ opentelemetry-instrumentation-psycopg2==0.54b1
165
+ opentelemetry-instrumentation-redis==0.58b0
166
+ opentelemetry-instrumentation-requests==0.58b0
167
+ opentelemetry-instrumentation-sqlalchemy==0.58b0
168
+ opentelemetry-instrumentation-sqlite3==0.58b0
169
+ opentelemetry-instrumentation-starlette==0.58b0
170
+ opentelemetry-instrumentation-system-metrics==0.58b0
171
+ opentelemetry-instrumentation-threading==0.58b0
172
+ opentelemetry-instrumentation-tortoiseorm==0.58b0
173
+ opentelemetry-instrumentation-urllib==0.58b0
174
+ opentelemetry-instrumentation-urllib3==0.58b0
175
+ opentelemetry-instrumentation-wsgi==0.58b0
176
+ opentelemetry-propagator-aws-xray==1.0.2
177
+ opentelemetry-proto==1.37.0
178
+ opentelemetry-resource-detector-azure==0.1.5
179
+ opentelemetry-sdk==1.37.0
180
+ opentelemetry-semantic-conventions==0.58b0
181
+ opentelemetry-util-http==0.58b0
182
+ orjson==3.10.18
183
+ ormsgpack==1.10.0
184
+ packaging==25.0
185
+ pandas==2.2.3
186
+ pathspec==0.12.1
187
+ pika==1.3.2
188
+ pillow==11.3.0
189
+ platformdirs==4.4.0
190
+ pluggy==1.6.0
191
+ polars==1.33.1
192
+ pre_commit==4.5.0
193
+ prettytable==3.16.0
194
+ promptflow==1.18.0
195
+ promptflow-azure==1.18.0
196
+ promptflow-core==1.18.0
197
+ promptflow-devkit==1.18.0
198
+ promptflow-tools==1.6.0
199
+ promptflow-tracing==1.18.0
200
+ propcache==0.3.1
201
+ protobuf==6.32.1
202
+ psutil==6.1.1
203
+ psycopg2-binary==2.9.11
204
+ py==1.11.0
205
+ py-machineid==0.7.0
206
+ pycodestyle==2.14.0
207
+ pycparser==2.22
208
+ pydantic==2.11.9
209
+ pydantic-settings==2.11.0
210
+ pydantic_core==2.33.2
211
+ pydash==7.0.7
212
+ PyDriller==2.9
213
+ Pygments==2.19.2
214
+ PyJWT==2.10.1
215
+ pylint==3.3.8
216
+ PyNaCl==1.6.0
217
+ pyparsing==3.2.5
218
+ pyperclip==1.10.0
219
+ pyproject_hooks==1.2.0
220
+ pytest==9.0.1
221
+ pytest-cov==7.0.0
222
+ python-dateutil==2.9.0.post0
223
+ python-dotenv==1.1.1
224
+ python-louvain==0.16
225
+ python-multipart==0.0.20
226
+ python-sonarqube-api==2.0.5
227
+ python-toon==0.1.3
228
+ pytokens==0.3.0
229
+ pytz==2025.2
230
+ PyYAML==6.0.2
231
+ readme_renderer==44.0
232
+ redis==6.4.0
233
+ referencing==0.36.2
234
+ regex==2024.11.6
235
+ requests==2.32.5
236
+ requests-oauthlib==2.0.0
237
+ requests-toolbelt==1.0.0
238
+ rfc3986==2.0.0
239
+ rich==14.1.0
240
+ rpds-py==0.27.1
241
+ rq==2.6.0
242
+ ruamel.yaml==0.18.11
243
+ ruamel.yaml.clib==0.2.12
244
+ s3transfer==0.11.3
245
+ scikit-learn==1.7.2
246
+ scipy==1.16.2
247
+ setuptools==80.9.0
248
+ six==1.17.0
249
+ smmap==5.0.2
250
+ smolagents==1.16.1
251
+ sniffio==1.3.1
252
+ soupsieve==2.7
253
+ SQLAlchemy==2.0.41
254
+ sse-starlette==3.0.2
255
+ starlette==0.48.0
256
+ strictyaml==1.7.3
257
+ tabulate==0.9.0
258
+ tenacity==9.1.2
259
+ threadpoolctl==3.6.0
260
+ tiktoken==0.9.0
261
+ tokenizers==0.22.1
262
+ tomlkit==0.13.3
263
+ toon_format @ git+https://github.com/toon-format/toon-python.git@8dfb593ed1c2b1442f1dd161406e1f7b8ae16573
264
+ tqdm==4.67.1
265
+ twine==6.2.0
266
+ types-pytz==2025.2.0.20250809
267
+ typing-inspect==0.9.0
268
+ typing-inspection==0.4.1
269
+ typing_extensions==4.15.0
270
+ tzdata==2025.2
271
+ tzlocal==5.3.1
272
+ urllib3==2.5.0
273
+ uvicorn==0.37.0
274
+ uvloop==0.21.0
275
+ virtualenv==20.35.4
276
+ waitress==3.0.2
277
+ watchfiles==1.1.0
278
+ wcwidth==0.2.14
279
+ websockets==13.1
280
+ Werkzeug==3.1.3
281
+ wheel==0.45.1
282
+ wrapt==1.17.3
283
+ xxhash==3.5.0
284
+ yarl==1.20.0
285
+ zipp==3.23.0
286
+ zstandard==0.23.0
@@ -1,57 +0,0 @@
1
- [build-system]
2
- requires = ["setuptools>=45", "wheel", "setuptools_scm>=6.2"]
3
- build-backend = "setuptools.build_meta"
4
-
5
- [project]
6
- name = "naive-knowledge-base"
7
- version = "0.1.0"
8
- description = "A dependency graph analyzer using smolagents"
9
- readme = "README.md"
10
- requires-python = ">=3.8"
11
- license = {text = "MIT"}
12
- authors = [
13
- {name = "Your Name", email = "your.email@example.com"}
14
- ]
15
- keywords = ["dependency-graph", "code-analysis", "smolagents", "ai-agents"]
16
- classifiers = [
17
- "Development Status :: 3 - Alpha",
18
- "Intended Audience :: Developers",
19
- "Topic :: Software Development :: Libraries :: Python Modules",
20
- "License :: OSI Approved :: MIT License",
21
- "Programming Language :: Python :: 3",
22
- "Programming Language :: Python :: 3.8",
23
- "Programming Language :: Python :: 3.9",
24
- "Programming Language :: Python :: 3.10",
25
- "Programming Language :: Python :: 3.11",
26
- "Programming Language :: Python :: 3.12",
27
- ]
28
-
29
- [project.urls]
30
- Homepage = "https://github.com/yourusername/naive-knowledge-base"
31
- Documentation = "https://github.com/yourusername/naive-knowledge-base#readme"
32
- Repository = "https://github.com/yourusername/naive-knowledge-base"
33
- Issues = "https://github.com/yourusername/naive-knowledge-base/issues"
34
-
35
- [project.scripts]
36
- naive-kb = "cli:main"
37
-
38
- [tool.setuptools]
39
- py-modules = ["cli", "main"]
40
- packages = ["agents", "agents.common", "agents.dependency_graph", "api_models", "tools"]
41
-
42
- [tool.setuptools.package-data]
43
- "*" = ["py.typed"]
44
-
45
- [tool.black]
46
- line-length = 100
47
- target-version = ['py38', 'py39', 'py310', 'py311', 'py312']
48
-
49
- [tool.isort]
50
- profile = "black"
51
- line_length = 100
52
-
53
- [tool.pytest.ini_options]
54
- testpaths = ["tests"]
55
- python_files = ["test_*.py"]
56
- python_classes = ["Test*"]
57
- python_functions = ["test_*"]