naive-knowledge-base 0.1.1__tar.gz → 0.1.3__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.
- {naive_knowledge_base-0.1.1/naive_knowledge_base.egg-info → naive_knowledge_base-0.1.3}/PKG-INFO +39 -68
- {naive_knowledge_base-0.1.1 → naive_knowledge_base-0.1.3}/agents/dependency_graph/agent.py +1 -1
- {naive_knowledge_base-0.1.1 → naive_knowledge_base-0.1.3/naive_knowledge_base.egg-info}/PKG-INFO +39 -68
- naive_knowledge_base-0.1.3/naive_knowledge_base.egg-info/requires.txt +85 -0
- {naive_knowledge_base-0.1.1 → naive_knowledge_base-0.1.3}/pyproject.toml +39 -68
- naive_knowledge_base-0.1.3/requirements.txt +77 -0
- naive_knowledge_base-0.1.1/naive_knowledge_base.egg-info/requires.txt +0 -114
- naive_knowledge_base-0.1.1/requirements.txt +0 -286
- {naive_knowledge_base-0.1.1 → naive_knowledge_base-0.1.3}/LICENSE +0 -0
- {naive_knowledge_base-0.1.1 → naive_knowledge_base-0.1.3}/MANIFEST.in +0 -0
- {naive_knowledge_base-0.1.1 → naive_knowledge_base-0.1.3}/README.md +0 -0
- {naive_knowledge_base-0.1.1 → naive_knowledge_base-0.1.3}/agents/__init__.py +0 -0
- {naive_knowledge_base-0.1.1 → naive_knowledge_base-0.1.3}/agents/common/__init__.py +0 -0
- {naive_knowledge_base-0.1.1 → naive_knowledge_base-0.1.3}/agents/common/base.py +0 -0
- {naive_knowledge_base-0.1.1 → naive_knowledge_base-0.1.3}/agents/common/exceptions.py +0 -0
- {naive_knowledge_base-0.1.1 → naive_knowledge_base-0.1.3}/agents/common/logging.py +0 -0
- {naive_knowledge_base-0.1.1 → naive_knowledge_base-0.1.3}/agents/common/schema_converter.py +0 -0
- {naive_knowledge_base-0.1.1 → naive_knowledge_base-0.1.3}/agents/common/tools.py +0 -0
- {naive_knowledge_base-0.1.1 → naive_knowledge_base-0.1.3}/agents/common/utils.py +0 -0
- {naive_knowledge_base-0.1.1 → naive_knowledge_base-0.1.3}/agents/dependency_graph/__init__.py +0 -0
- {naive_knowledge_base-0.1.1 → naive_knowledge_base-0.1.3}/agents/dependency_graph/model.py +0 -0
- {naive_knowledge_base-0.1.1 → naive_knowledge_base-0.1.3}/api_models/__init__.py +0 -0
- {naive_knowledge_base-0.1.1 → naive_knowledge_base-0.1.3}/api_models/flow_api_model.py +0 -0
- {naive_knowledge_base-0.1.1 → naive_knowledge_base-0.1.3}/cli.py +0 -0
- {naive_knowledge_base-0.1.1 → naive_knowledge_base-0.1.3}/main.py +0 -0
- {naive_knowledge_base-0.1.1 → naive_knowledge_base-0.1.3}/naive_knowledge_base.egg-info/SOURCES.txt +0 -0
- {naive_knowledge_base-0.1.1 → naive_knowledge_base-0.1.3}/naive_knowledge_base.egg-info/dependency_links.txt +0 -0
- {naive_knowledge_base-0.1.1 → naive_knowledge_base-0.1.3}/naive_knowledge_base.egg-info/entry_points.txt +0 -0
- {naive_knowledge_base-0.1.1 → naive_knowledge_base-0.1.3}/naive_knowledge_base.egg-info/not-zip-safe +0 -0
- {naive_knowledge_base-0.1.1 → naive_knowledge_base-0.1.3}/naive_knowledge_base.egg-info/top_level.txt +0 -0
- {naive_knowledge_base-0.1.1 → naive_knowledge_base-0.1.3}/setup.cfg +0 -0
- {naive_knowledge_base-0.1.1 → naive_knowledge_base-0.1.3}/setup.py +0 -0
- {naive_knowledge_base-0.1.1 → naive_knowledge_base-0.1.3}/tools/__init__.py +0 -0
- {naive_knowledge_base-0.1.1 → naive_knowledge_base-0.1.3}/tools/io.py +0 -0
- {naive_knowledge_base-0.1.1 → naive_knowledge_base-0.1.3}/tools/tree.py +0 -0
{naive_knowledge_base-0.1.1/naive_knowledge_base.egg-info → naive_knowledge_base-0.1.3}/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: naive-knowledge-base
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.3
|
|
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
|
|
@@ -25,111 +25,82 @@ Requires-Python: >=3.8
|
|
|
25
25
|
Description-Content-Type: text/markdown
|
|
26
26
|
License-File: LICENSE
|
|
27
27
|
Requires-Dist: annotated-types==0.7.0
|
|
28
|
-
Requires-Dist: anyio==4.
|
|
29
|
-
Requires-Dist:
|
|
30
|
-
Requires-Dist:
|
|
31
|
-
Requires-Dist: attrs==25.3.0
|
|
28
|
+
Requires-Dist: anyio==4.12.0
|
|
29
|
+
Requires-Dist: astroid==4.0.2
|
|
30
|
+
Requires-Dist: attrs==25.4.0
|
|
32
31
|
Requires-Dist: autopep8==2.3.2
|
|
33
|
-
Requires-Dist: certifi==2025.
|
|
34
|
-
Requires-Dist: charset-normalizer==3.4.
|
|
35
|
-
Requires-Dist: click==8.3.
|
|
32
|
+
Requires-Dist: certifi==2025.11.12
|
|
33
|
+
Requires-Dist: charset-normalizer==3.4.4
|
|
34
|
+
Requires-Dist: click==8.3.1
|
|
36
35
|
Requires-Dist: colorama==0.4.6
|
|
37
36
|
Requires-Dist: coloredlogs==15.0.1
|
|
38
37
|
Requires-Dist: dill==0.4.0
|
|
39
38
|
Requires-Dist: directory_tree==1.0.0
|
|
40
39
|
Requires-Dist: distro==1.9.0
|
|
41
|
-
Requires-Dist:
|
|
42
|
-
Requires-Dist: filelock==3.
|
|
43
|
-
Requires-Dist: fsspec==2025.
|
|
40
|
+
Requires-Dist: flow-code-mapper==2.0.1
|
|
41
|
+
Requires-Dist: filelock==3.20.1
|
|
42
|
+
Requires-Dist: fsspec==2025.12.0
|
|
44
43
|
Requires-Dist: gitdb==4.0.12
|
|
45
44
|
Requires-Dist: GitPython==3.1.45
|
|
46
|
-
Requires-Dist: googleapis-common-protos==1.70.0
|
|
47
|
-
Requires-Dist: grpcio==1.75.0
|
|
48
45
|
Requires-Dist: h11==0.16.0
|
|
49
|
-
Requires-Dist: hf-xet==1.
|
|
46
|
+
Requires-Dist: hf-xet==1.2.0
|
|
50
47
|
Requires-Dist: httpcore==1.0.9
|
|
51
48
|
Requires-Dist: httpx==0.28.1
|
|
52
|
-
Requires-Dist:
|
|
53
|
-
Requires-Dist: huggingface-hub==0.35.1
|
|
49
|
+
Requires-Dist: huggingface_hub==1.2.3
|
|
54
50
|
Requires-Dist: humanfriendly==10.0
|
|
55
|
-
Requires-Dist: idna==3.
|
|
56
|
-
Requires-Dist: importlib_metadata==8.7.0
|
|
51
|
+
Requires-Dist: idna==3.11
|
|
57
52
|
Requires-Dist: interrogate==1.7.0
|
|
58
|
-
Requires-Dist: isort==
|
|
53
|
+
Requires-Dist: isort==7.0.0
|
|
59
54
|
Requires-Dist: Jinja2==3.1.6
|
|
60
|
-
Requires-Dist: jiter==0.
|
|
61
|
-
Requires-Dist: joblib==1.5.
|
|
62
|
-
Requires-Dist:
|
|
63
|
-
Requires-Dist: jsonschema-specifications==2025.9.1
|
|
64
|
-
Requires-Dist: lizard==1.17.31
|
|
55
|
+
Requires-Dist: jiter==0.12.0
|
|
56
|
+
Requires-Dist: joblib==1.5.3
|
|
57
|
+
Requires-Dist: lizard==1.19.0
|
|
65
58
|
Requires-Dist: markdown-it-py==4.0.0
|
|
66
|
-
Requires-Dist: MarkupSafe==3.0.
|
|
59
|
+
Requires-Dist: MarkupSafe==3.0.3
|
|
67
60
|
Requires-Dist: mccabe==0.7.0
|
|
68
|
-
Requires-Dist: mcp==1.14.1
|
|
69
61
|
Requires-Dist: mdurl==0.1.2
|
|
70
|
-
Requires-Dist: networkx==3.
|
|
71
|
-
Requires-Dist: numpy==2.3.
|
|
72
|
-
Requires-Dist: openai==
|
|
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
|
|
62
|
+
Requires-Dist: networkx==3.6.1
|
|
63
|
+
Requires-Dist: numpy==2.3.5
|
|
64
|
+
Requires-Dist: openai==2.12.0
|
|
85
65
|
Requires-Dist: packaging==25.0
|
|
86
66
|
Requires-Dist: pathspec==0.12.1
|
|
87
|
-
Requires-Dist: pillow==
|
|
88
|
-
Requires-Dist: platformdirs==4.
|
|
89
|
-
Requires-Dist: prettytable==3.
|
|
90
|
-
Requires-Dist: protobuf==6.32.1
|
|
67
|
+
Requires-Dist: pillow==12.0.0
|
|
68
|
+
Requires-Dist: platformdirs==4.5.1
|
|
69
|
+
Requires-Dist: prettytable==3.17.0
|
|
91
70
|
Requires-Dist: py==1.11.0
|
|
92
71
|
Requires-Dist: pycodestyle==2.14.0
|
|
93
|
-
Requires-Dist: pydantic==2.
|
|
94
|
-
Requires-Dist:
|
|
95
|
-
Requires-Dist: pydantic_core==2.33.2
|
|
72
|
+
Requires-Dist: pydantic==2.12.5
|
|
73
|
+
Requires-Dist: pydantic_core==2.41.5
|
|
96
74
|
Requires-Dist: PyDriller==2.9
|
|
97
75
|
Requires-Dist: Pygments==2.19.2
|
|
98
|
-
Requires-Dist: pylint==
|
|
76
|
+
Requires-Dist: pylint==4.0.4
|
|
99
77
|
Requires-Dist: pyparsing==3.2.5
|
|
100
|
-
Requires-Dist: pyperclip==1.
|
|
101
|
-
Requires-Dist: python-dotenv==1.
|
|
78
|
+
Requires-Dist: pyperclip==1.11.0
|
|
79
|
+
Requires-Dist: python-dotenv==1.2.1
|
|
102
80
|
Requires-Dist: python-louvain==0.16
|
|
103
|
-
Requires-Dist: python-multipart==0.0.20
|
|
104
|
-
Requires-Dist: python-sonarqube-api==2.0.5
|
|
105
81
|
Requires-Dist: pytz==2025.2
|
|
106
|
-
Requires-Dist: PyYAML==6.0.
|
|
107
|
-
Requires-Dist: referencing==0.36.2
|
|
82
|
+
Requires-Dist: PyYAML==6.0.3
|
|
108
83
|
Requires-Dist: requests==2.32.5
|
|
109
|
-
Requires-Dist: rich==14.
|
|
110
|
-
Requires-Dist:
|
|
111
|
-
Requires-Dist:
|
|
112
|
-
Requires-Dist: scipy==1.16.2
|
|
84
|
+
Requires-Dist: rich==14.2.0
|
|
85
|
+
Requires-Dist: scikit-learn==1.8.0
|
|
86
|
+
Requires-Dist: scipy==1.16.3
|
|
113
87
|
Requires-Dist: setuptools==80.9.0
|
|
88
|
+
Requires-Dist: shellingham==1.5.4
|
|
114
89
|
Requires-Dist: smmap==5.0.2
|
|
115
90
|
Requires-Dist: smolagents==1.16.1
|
|
116
91
|
Requires-Dist: sniffio==1.3.1
|
|
117
|
-
Requires-Dist: sse-starlette==3.0.2
|
|
118
|
-
Requires-Dist: starlette==0.48.0
|
|
119
92
|
Requires-Dist: tabulate==0.9.0
|
|
120
93
|
Requires-Dist: threadpoolctl==3.6.0
|
|
121
94
|
Requires-Dist: tomlkit==0.13.3
|
|
122
|
-
Requires-Dist:
|
|
95
|
+
Requires-Dist: toon_format==0.1.0
|
|
123
96
|
Requires-Dist: tqdm==4.67.1
|
|
124
|
-
Requires-Dist:
|
|
125
|
-
Requires-Dist:
|
|
97
|
+
Requires-Dist: typer-slim==0.20.0
|
|
98
|
+
Requires-Dist: types-pytz==2025.2.0.20251108
|
|
99
|
+
Requires-Dist: typing-inspection==0.4.2
|
|
126
100
|
Requires-Dist: typing_extensions==4.15.0
|
|
127
|
-
Requires-Dist: urllib3==2.
|
|
128
|
-
Requires-Dist: uvicorn==0.37.0
|
|
101
|
+
Requires-Dist: urllib3==2.6.2
|
|
129
102
|
Requires-Dist: wcwidth==0.2.14
|
|
130
103
|
Requires-Dist: wheel==0.45.1
|
|
131
|
-
Requires-Dist: wrapt==1.17.3
|
|
132
|
-
Requires-Dist: zipp==3.23.0
|
|
133
104
|
Provides-Extra: dev
|
|
134
105
|
Requires-Dist: pytest>=7.0.0; extra == "dev"
|
|
135
106
|
Requires-Dist: pytest-cov>=4.0.0; extra == "dev"
|
|
@@ -171,7 +171,7 @@ def _process_data(json_data, source_directory) -> list[DependencyGraph]:
|
|
|
171
171
|
# Step 2: Map dependencies based on links
|
|
172
172
|
dependency_map = {}
|
|
173
173
|
|
|
174
|
-
for link in json_data['
|
|
174
|
+
for link in json_data['edges']:
|
|
175
175
|
if link['source'] not in dependency_map:
|
|
176
176
|
dependency_map[link['source']] = []
|
|
177
177
|
target = os.path.join(source_directory, link['target'])
|
{naive_knowledge_base-0.1.1 → naive_knowledge_base-0.1.3/naive_knowledge_base.egg-info}/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: naive-knowledge-base
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.3
|
|
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
|
|
@@ -25,111 +25,82 @@ Requires-Python: >=3.8
|
|
|
25
25
|
Description-Content-Type: text/markdown
|
|
26
26
|
License-File: LICENSE
|
|
27
27
|
Requires-Dist: annotated-types==0.7.0
|
|
28
|
-
Requires-Dist: anyio==4.
|
|
29
|
-
Requires-Dist:
|
|
30
|
-
Requires-Dist:
|
|
31
|
-
Requires-Dist: attrs==25.3.0
|
|
28
|
+
Requires-Dist: anyio==4.12.0
|
|
29
|
+
Requires-Dist: astroid==4.0.2
|
|
30
|
+
Requires-Dist: attrs==25.4.0
|
|
32
31
|
Requires-Dist: autopep8==2.3.2
|
|
33
|
-
Requires-Dist: certifi==2025.
|
|
34
|
-
Requires-Dist: charset-normalizer==3.4.
|
|
35
|
-
Requires-Dist: click==8.3.
|
|
32
|
+
Requires-Dist: certifi==2025.11.12
|
|
33
|
+
Requires-Dist: charset-normalizer==3.4.4
|
|
34
|
+
Requires-Dist: click==8.3.1
|
|
36
35
|
Requires-Dist: colorama==0.4.6
|
|
37
36
|
Requires-Dist: coloredlogs==15.0.1
|
|
38
37
|
Requires-Dist: dill==0.4.0
|
|
39
38
|
Requires-Dist: directory_tree==1.0.0
|
|
40
39
|
Requires-Dist: distro==1.9.0
|
|
41
|
-
Requires-Dist:
|
|
42
|
-
Requires-Dist: filelock==3.
|
|
43
|
-
Requires-Dist: fsspec==2025.
|
|
40
|
+
Requires-Dist: flow-code-mapper==2.0.1
|
|
41
|
+
Requires-Dist: filelock==3.20.1
|
|
42
|
+
Requires-Dist: fsspec==2025.12.0
|
|
44
43
|
Requires-Dist: gitdb==4.0.12
|
|
45
44
|
Requires-Dist: GitPython==3.1.45
|
|
46
|
-
Requires-Dist: googleapis-common-protos==1.70.0
|
|
47
|
-
Requires-Dist: grpcio==1.75.0
|
|
48
45
|
Requires-Dist: h11==0.16.0
|
|
49
|
-
Requires-Dist: hf-xet==1.
|
|
46
|
+
Requires-Dist: hf-xet==1.2.0
|
|
50
47
|
Requires-Dist: httpcore==1.0.9
|
|
51
48
|
Requires-Dist: httpx==0.28.1
|
|
52
|
-
Requires-Dist:
|
|
53
|
-
Requires-Dist: huggingface-hub==0.35.1
|
|
49
|
+
Requires-Dist: huggingface_hub==1.2.3
|
|
54
50
|
Requires-Dist: humanfriendly==10.0
|
|
55
|
-
Requires-Dist: idna==3.
|
|
56
|
-
Requires-Dist: importlib_metadata==8.7.0
|
|
51
|
+
Requires-Dist: idna==3.11
|
|
57
52
|
Requires-Dist: interrogate==1.7.0
|
|
58
|
-
Requires-Dist: isort==
|
|
53
|
+
Requires-Dist: isort==7.0.0
|
|
59
54
|
Requires-Dist: Jinja2==3.1.6
|
|
60
|
-
Requires-Dist: jiter==0.
|
|
61
|
-
Requires-Dist: joblib==1.5.
|
|
62
|
-
Requires-Dist:
|
|
63
|
-
Requires-Dist: jsonschema-specifications==2025.9.1
|
|
64
|
-
Requires-Dist: lizard==1.17.31
|
|
55
|
+
Requires-Dist: jiter==0.12.0
|
|
56
|
+
Requires-Dist: joblib==1.5.3
|
|
57
|
+
Requires-Dist: lizard==1.19.0
|
|
65
58
|
Requires-Dist: markdown-it-py==4.0.0
|
|
66
|
-
Requires-Dist: MarkupSafe==3.0.
|
|
59
|
+
Requires-Dist: MarkupSafe==3.0.3
|
|
67
60
|
Requires-Dist: mccabe==0.7.0
|
|
68
|
-
Requires-Dist: mcp==1.14.1
|
|
69
61
|
Requires-Dist: mdurl==0.1.2
|
|
70
|
-
Requires-Dist: networkx==3.
|
|
71
|
-
Requires-Dist: numpy==2.3.
|
|
72
|
-
Requires-Dist: openai==
|
|
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
|
|
62
|
+
Requires-Dist: networkx==3.6.1
|
|
63
|
+
Requires-Dist: numpy==2.3.5
|
|
64
|
+
Requires-Dist: openai==2.12.0
|
|
85
65
|
Requires-Dist: packaging==25.0
|
|
86
66
|
Requires-Dist: pathspec==0.12.1
|
|
87
|
-
Requires-Dist: pillow==
|
|
88
|
-
Requires-Dist: platformdirs==4.
|
|
89
|
-
Requires-Dist: prettytable==3.
|
|
90
|
-
Requires-Dist: protobuf==6.32.1
|
|
67
|
+
Requires-Dist: pillow==12.0.0
|
|
68
|
+
Requires-Dist: platformdirs==4.5.1
|
|
69
|
+
Requires-Dist: prettytable==3.17.0
|
|
91
70
|
Requires-Dist: py==1.11.0
|
|
92
71
|
Requires-Dist: pycodestyle==2.14.0
|
|
93
|
-
Requires-Dist: pydantic==2.
|
|
94
|
-
Requires-Dist:
|
|
95
|
-
Requires-Dist: pydantic_core==2.33.2
|
|
72
|
+
Requires-Dist: pydantic==2.12.5
|
|
73
|
+
Requires-Dist: pydantic_core==2.41.5
|
|
96
74
|
Requires-Dist: PyDriller==2.9
|
|
97
75
|
Requires-Dist: Pygments==2.19.2
|
|
98
|
-
Requires-Dist: pylint==
|
|
76
|
+
Requires-Dist: pylint==4.0.4
|
|
99
77
|
Requires-Dist: pyparsing==3.2.5
|
|
100
|
-
Requires-Dist: pyperclip==1.
|
|
101
|
-
Requires-Dist: python-dotenv==1.
|
|
78
|
+
Requires-Dist: pyperclip==1.11.0
|
|
79
|
+
Requires-Dist: python-dotenv==1.2.1
|
|
102
80
|
Requires-Dist: python-louvain==0.16
|
|
103
|
-
Requires-Dist: python-multipart==0.0.20
|
|
104
|
-
Requires-Dist: python-sonarqube-api==2.0.5
|
|
105
81
|
Requires-Dist: pytz==2025.2
|
|
106
|
-
Requires-Dist: PyYAML==6.0.
|
|
107
|
-
Requires-Dist: referencing==0.36.2
|
|
82
|
+
Requires-Dist: PyYAML==6.0.3
|
|
108
83
|
Requires-Dist: requests==2.32.5
|
|
109
|
-
Requires-Dist: rich==14.
|
|
110
|
-
Requires-Dist:
|
|
111
|
-
Requires-Dist:
|
|
112
|
-
Requires-Dist: scipy==1.16.2
|
|
84
|
+
Requires-Dist: rich==14.2.0
|
|
85
|
+
Requires-Dist: scikit-learn==1.8.0
|
|
86
|
+
Requires-Dist: scipy==1.16.3
|
|
113
87
|
Requires-Dist: setuptools==80.9.0
|
|
88
|
+
Requires-Dist: shellingham==1.5.4
|
|
114
89
|
Requires-Dist: smmap==5.0.2
|
|
115
90
|
Requires-Dist: smolagents==1.16.1
|
|
116
91
|
Requires-Dist: sniffio==1.3.1
|
|
117
|
-
Requires-Dist: sse-starlette==3.0.2
|
|
118
|
-
Requires-Dist: starlette==0.48.0
|
|
119
92
|
Requires-Dist: tabulate==0.9.0
|
|
120
93
|
Requires-Dist: threadpoolctl==3.6.0
|
|
121
94
|
Requires-Dist: tomlkit==0.13.3
|
|
122
|
-
Requires-Dist:
|
|
95
|
+
Requires-Dist: toon_format==0.1.0
|
|
123
96
|
Requires-Dist: tqdm==4.67.1
|
|
124
|
-
Requires-Dist:
|
|
125
|
-
Requires-Dist:
|
|
97
|
+
Requires-Dist: typer-slim==0.20.0
|
|
98
|
+
Requires-Dist: types-pytz==2025.2.0.20251108
|
|
99
|
+
Requires-Dist: typing-inspection==0.4.2
|
|
126
100
|
Requires-Dist: typing_extensions==4.15.0
|
|
127
|
-
Requires-Dist: urllib3==2.
|
|
128
|
-
Requires-Dist: uvicorn==0.37.0
|
|
101
|
+
Requires-Dist: urllib3==2.6.2
|
|
129
102
|
Requires-Dist: wcwidth==0.2.14
|
|
130
103
|
Requires-Dist: wheel==0.45.1
|
|
131
|
-
Requires-Dist: wrapt==1.17.3
|
|
132
|
-
Requires-Dist: zipp==3.23.0
|
|
133
104
|
Provides-Extra: dev
|
|
134
105
|
Requires-Dist: pytest>=7.0.0; extra == "dev"
|
|
135
106
|
Requires-Dist: pytest-cov>=4.0.0; extra == "dev"
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
annotated-types==0.7.0
|
|
2
|
+
anyio==4.12.0
|
|
3
|
+
astroid==4.0.2
|
|
4
|
+
attrs==25.4.0
|
|
5
|
+
autopep8==2.3.2
|
|
6
|
+
certifi==2025.11.12
|
|
7
|
+
charset-normalizer==3.4.4
|
|
8
|
+
click==8.3.1
|
|
9
|
+
colorama==0.4.6
|
|
10
|
+
coloredlogs==15.0.1
|
|
11
|
+
dill==0.4.0
|
|
12
|
+
directory_tree==1.0.0
|
|
13
|
+
distro==1.9.0
|
|
14
|
+
flow-code-mapper==2.0.1
|
|
15
|
+
filelock==3.20.1
|
|
16
|
+
fsspec==2025.12.0
|
|
17
|
+
gitdb==4.0.12
|
|
18
|
+
GitPython==3.1.45
|
|
19
|
+
h11==0.16.0
|
|
20
|
+
hf-xet==1.2.0
|
|
21
|
+
httpcore==1.0.9
|
|
22
|
+
httpx==0.28.1
|
|
23
|
+
huggingface_hub==1.2.3
|
|
24
|
+
humanfriendly==10.0
|
|
25
|
+
idna==3.11
|
|
26
|
+
interrogate==1.7.0
|
|
27
|
+
isort==7.0.0
|
|
28
|
+
Jinja2==3.1.6
|
|
29
|
+
jiter==0.12.0
|
|
30
|
+
joblib==1.5.3
|
|
31
|
+
lizard==1.19.0
|
|
32
|
+
markdown-it-py==4.0.0
|
|
33
|
+
MarkupSafe==3.0.3
|
|
34
|
+
mccabe==0.7.0
|
|
35
|
+
mdurl==0.1.2
|
|
36
|
+
networkx==3.6.1
|
|
37
|
+
numpy==2.3.5
|
|
38
|
+
openai==2.12.0
|
|
39
|
+
packaging==25.0
|
|
40
|
+
pathspec==0.12.1
|
|
41
|
+
pillow==12.0.0
|
|
42
|
+
platformdirs==4.5.1
|
|
43
|
+
prettytable==3.17.0
|
|
44
|
+
py==1.11.0
|
|
45
|
+
pycodestyle==2.14.0
|
|
46
|
+
pydantic==2.12.5
|
|
47
|
+
pydantic_core==2.41.5
|
|
48
|
+
PyDriller==2.9
|
|
49
|
+
Pygments==2.19.2
|
|
50
|
+
pylint==4.0.4
|
|
51
|
+
pyparsing==3.2.5
|
|
52
|
+
pyperclip==1.11.0
|
|
53
|
+
python-dotenv==1.2.1
|
|
54
|
+
python-louvain==0.16
|
|
55
|
+
pytz==2025.2
|
|
56
|
+
PyYAML==6.0.3
|
|
57
|
+
requests==2.32.5
|
|
58
|
+
rich==14.2.0
|
|
59
|
+
scikit-learn==1.8.0
|
|
60
|
+
scipy==1.16.3
|
|
61
|
+
setuptools==80.9.0
|
|
62
|
+
shellingham==1.5.4
|
|
63
|
+
smmap==5.0.2
|
|
64
|
+
smolagents==1.16.1
|
|
65
|
+
sniffio==1.3.1
|
|
66
|
+
tabulate==0.9.0
|
|
67
|
+
threadpoolctl==3.6.0
|
|
68
|
+
tomlkit==0.13.3
|
|
69
|
+
toon_format==0.1.0
|
|
70
|
+
tqdm==4.67.1
|
|
71
|
+
typer-slim==0.20.0
|
|
72
|
+
types-pytz==2025.2.0.20251108
|
|
73
|
+
typing-inspection==0.4.2
|
|
74
|
+
typing_extensions==4.15.0
|
|
75
|
+
urllib3==2.6.2
|
|
76
|
+
wcwidth==0.2.14
|
|
77
|
+
wheel==0.45.1
|
|
78
|
+
|
|
79
|
+
[dev]
|
|
80
|
+
pytest>=7.0.0
|
|
81
|
+
pytest-cov>=4.0.0
|
|
82
|
+
black>=22.0.0
|
|
83
|
+
isort>=5.10.0
|
|
84
|
+
mypy>=1.0.0
|
|
85
|
+
pre-commit>=2.20.0
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "naive-knowledge-base"
|
|
7
|
-
version = "0.1.
|
|
7
|
+
version = "0.1.3"
|
|
8
8
|
description = "A dependency graph analyzer using smolagents"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.8"
|
|
@@ -27,111 +27,82 @@ classifiers = [
|
|
|
27
27
|
]
|
|
28
28
|
dependencies = [
|
|
29
29
|
"annotated-types==0.7.0",
|
|
30
|
-
"anyio==4.
|
|
31
|
-
"
|
|
32
|
-
"
|
|
33
|
-
"attrs==25.3.0",
|
|
30
|
+
"anyio==4.12.0",
|
|
31
|
+
"astroid==4.0.2",
|
|
32
|
+
"attrs==25.4.0",
|
|
34
33
|
"autopep8==2.3.2",
|
|
35
|
-
"certifi==2025.
|
|
36
|
-
"charset-normalizer==3.4.
|
|
37
|
-
"click==8.3.
|
|
34
|
+
"certifi==2025.11.12",
|
|
35
|
+
"charset-normalizer==3.4.4",
|
|
36
|
+
"click==8.3.1",
|
|
38
37
|
"colorama==0.4.6",
|
|
39
38
|
"coloredlogs==15.0.1",
|
|
40
39
|
"dill==0.4.0",
|
|
41
40
|
"directory_tree==1.0.0",
|
|
42
41
|
"distro==1.9.0",
|
|
43
|
-
"
|
|
44
|
-
"filelock==3.
|
|
45
|
-
"fsspec==2025.
|
|
42
|
+
"flow-code-mapper==2.0.1",
|
|
43
|
+
"filelock==3.20.1",
|
|
44
|
+
"fsspec==2025.12.0",
|
|
46
45
|
"gitdb==4.0.12",
|
|
47
46
|
"GitPython==3.1.45",
|
|
48
|
-
"googleapis-common-protos==1.70.0",
|
|
49
|
-
"grpcio==1.75.0",
|
|
50
47
|
"h11==0.16.0",
|
|
51
|
-
"hf-xet==1.
|
|
48
|
+
"hf-xet==1.2.0",
|
|
52
49
|
"httpcore==1.0.9",
|
|
53
50
|
"httpx==0.28.1",
|
|
54
|
-
"
|
|
55
|
-
"huggingface-hub==0.35.1",
|
|
51
|
+
"huggingface_hub==1.2.3",
|
|
56
52
|
"humanfriendly==10.0",
|
|
57
|
-
"idna==3.
|
|
58
|
-
"importlib_metadata==8.7.0",
|
|
53
|
+
"idna==3.11",
|
|
59
54
|
"interrogate==1.7.0",
|
|
60
|
-
"isort==
|
|
55
|
+
"isort==7.0.0",
|
|
61
56
|
"Jinja2==3.1.6",
|
|
62
|
-
"jiter==0.
|
|
63
|
-
"joblib==1.5.
|
|
64
|
-
"
|
|
65
|
-
"jsonschema-specifications==2025.9.1",
|
|
66
|
-
"lizard==1.17.31",
|
|
57
|
+
"jiter==0.12.0",
|
|
58
|
+
"joblib==1.5.3",
|
|
59
|
+
"lizard==1.19.0",
|
|
67
60
|
"markdown-it-py==4.0.0",
|
|
68
|
-
"MarkupSafe==3.0.
|
|
61
|
+
"MarkupSafe==3.0.3",
|
|
69
62
|
"mccabe==0.7.0",
|
|
70
|
-
"mcp==1.14.1",
|
|
71
63
|
"mdurl==0.1.2",
|
|
72
|
-
"networkx==3.
|
|
73
|
-
"numpy==2.3.
|
|
74
|
-
"openai==
|
|
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",
|
|
64
|
+
"networkx==3.6.1",
|
|
65
|
+
"numpy==2.3.5",
|
|
66
|
+
"openai==2.12.0",
|
|
87
67
|
"packaging==25.0",
|
|
88
68
|
"pathspec==0.12.1",
|
|
89
|
-
"pillow==
|
|
90
|
-
"platformdirs==4.
|
|
91
|
-
"prettytable==3.
|
|
92
|
-
"protobuf==6.32.1",
|
|
69
|
+
"pillow==12.0.0",
|
|
70
|
+
"platformdirs==4.5.1",
|
|
71
|
+
"prettytable==3.17.0",
|
|
93
72
|
"py==1.11.0",
|
|
94
73
|
"pycodestyle==2.14.0",
|
|
95
|
-
"pydantic==2.
|
|
96
|
-
"
|
|
97
|
-
"pydantic_core==2.33.2",
|
|
74
|
+
"pydantic==2.12.5",
|
|
75
|
+
"pydantic_core==2.41.5",
|
|
98
76
|
"PyDriller==2.9",
|
|
99
77
|
"Pygments==2.19.2",
|
|
100
|
-
"pylint==
|
|
78
|
+
"pylint==4.0.4",
|
|
101
79
|
"pyparsing==3.2.5",
|
|
102
|
-
"pyperclip==1.
|
|
103
|
-
"python-dotenv==1.
|
|
80
|
+
"pyperclip==1.11.0",
|
|
81
|
+
"python-dotenv==1.2.1",
|
|
104
82
|
"python-louvain==0.16",
|
|
105
|
-
"python-multipart==0.0.20",
|
|
106
|
-
"python-sonarqube-api==2.0.5",
|
|
107
83
|
"pytz==2025.2",
|
|
108
|
-
"PyYAML==6.0.
|
|
109
|
-
"referencing==0.36.2",
|
|
84
|
+
"PyYAML==6.0.3",
|
|
110
85
|
"requests==2.32.5",
|
|
111
|
-
"rich==14.
|
|
112
|
-
"
|
|
113
|
-
"
|
|
114
|
-
"scipy==1.16.2",
|
|
86
|
+
"rich==14.2.0",
|
|
87
|
+
"scikit-learn==1.8.0",
|
|
88
|
+
"scipy==1.16.3",
|
|
115
89
|
"setuptools==80.9.0",
|
|
90
|
+
"shellingham==1.5.4",
|
|
116
91
|
"smmap==5.0.2",
|
|
117
92
|
"smolagents==1.16.1",
|
|
118
93
|
"sniffio==1.3.1",
|
|
119
|
-
"sse-starlette==3.0.2",
|
|
120
|
-
"starlette==0.48.0",
|
|
121
94
|
"tabulate==0.9.0",
|
|
122
95
|
"threadpoolctl==3.6.0",
|
|
123
96
|
"tomlkit==0.13.3",
|
|
124
|
-
"
|
|
97
|
+
"toon_format==0.1.0",
|
|
125
98
|
"tqdm==4.67.1",
|
|
126
|
-
"
|
|
127
|
-
"
|
|
99
|
+
"typer-slim==0.20.0",
|
|
100
|
+
"types-pytz==2025.2.0.20251108",
|
|
101
|
+
"typing-inspection==0.4.2",
|
|
128
102
|
"typing_extensions==4.15.0",
|
|
129
|
-
"urllib3==2.
|
|
130
|
-
"uvicorn==0.37.0",
|
|
103
|
+
"urllib3==2.6.2",
|
|
131
104
|
"wcwidth==0.2.14",
|
|
132
105
|
"wheel==0.45.1",
|
|
133
|
-
"wrapt==1.17.3",
|
|
134
|
-
"zipp==3.23.0",
|
|
135
106
|
]
|
|
136
107
|
|
|
137
108
|
[project.urls]
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
annotated-types==0.7.0
|
|
2
|
+
anyio==4.12.0
|
|
3
|
+
astroid==4.0.2
|
|
4
|
+
attrs==25.4.0
|
|
5
|
+
autopep8==2.3.2
|
|
6
|
+
certifi==2025.11.12
|
|
7
|
+
charset-normalizer==3.4.4
|
|
8
|
+
click==8.3.1
|
|
9
|
+
colorama==0.4.6
|
|
10
|
+
coloredlogs==15.0.1
|
|
11
|
+
dill==0.4.0
|
|
12
|
+
directory_tree==1.0.0
|
|
13
|
+
distro==1.9.0
|
|
14
|
+
emerge-viz @ git+https://github.com/henriquegouveia/emerge@2ff0ebf668f6a97afbf347c501ee6d7dbbc49612
|
|
15
|
+
filelock==3.20.1
|
|
16
|
+
fsspec==2025.12.0
|
|
17
|
+
gitdb==4.0.12
|
|
18
|
+
GitPython==3.1.45
|
|
19
|
+
h11==0.16.0
|
|
20
|
+
hf-xet==1.2.0
|
|
21
|
+
httpcore==1.0.9
|
|
22
|
+
httpx==0.28.1
|
|
23
|
+
huggingface_hub==1.2.3
|
|
24
|
+
humanfriendly==10.0
|
|
25
|
+
idna==3.11
|
|
26
|
+
interrogate==1.7.0
|
|
27
|
+
isort==7.0.0
|
|
28
|
+
Jinja2==3.1.6
|
|
29
|
+
jiter==0.12.0
|
|
30
|
+
joblib==1.5.3
|
|
31
|
+
lizard==1.19.0
|
|
32
|
+
markdown-it-py==4.0.0
|
|
33
|
+
MarkupSafe==3.0.3
|
|
34
|
+
mccabe==0.7.0
|
|
35
|
+
mdurl==0.1.2
|
|
36
|
+
networkx==3.6.1
|
|
37
|
+
numpy==2.3.5
|
|
38
|
+
openai==2.12.0
|
|
39
|
+
packaging==25.0
|
|
40
|
+
pathspec==0.12.1
|
|
41
|
+
pillow==12.0.0
|
|
42
|
+
platformdirs==4.5.1
|
|
43
|
+
prettytable==3.17.0
|
|
44
|
+
py==1.11.0
|
|
45
|
+
pycodestyle==2.14.0
|
|
46
|
+
pydantic==2.12.5
|
|
47
|
+
pydantic_core==2.41.5
|
|
48
|
+
PyDriller==2.9
|
|
49
|
+
Pygments==2.19.2
|
|
50
|
+
pylint==4.0.4
|
|
51
|
+
pyparsing==3.2.5
|
|
52
|
+
pyperclip==1.11.0
|
|
53
|
+
python-dotenv==1.2.1
|
|
54
|
+
python-louvain==0.16
|
|
55
|
+
pytz==2025.2
|
|
56
|
+
PyYAML==6.0.3
|
|
57
|
+
requests==2.32.5
|
|
58
|
+
rich==14.2.0
|
|
59
|
+
scikit-learn==1.8.0
|
|
60
|
+
scipy==1.16.3
|
|
61
|
+
setuptools==80.9.0
|
|
62
|
+
shellingham==1.5.4
|
|
63
|
+
smmap==5.0.2
|
|
64
|
+
smolagents==1.16.1
|
|
65
|
+
sniffio==1.3.1
|
|
66
|
+
tabulate==0.9.0
|
|
67
|
+
threadpoolctl==3.6.0
|
|
68
|
+
tomlkit==0.13.3
|
|
69
|
+
toon_format @ git+https://github.com/toon-format/toon-python.git@6b26984a01279defdcf40ab9d09bc418fe8133ac
|
|
70
|
+
tqdm==4.67.1
|
|
71
|
+
typer-slim==0.20.0
|
|
72
|
+
types-pytz==2025.2.0.20251108
|
|
73
|
+
typing-inspection==0.4.2
|
|
74
|
+
typing_extensions==4.15.0
|
|
75
|
+
urllib3==2.6.2
|
|
76
|
+
wcwidth==0.2.14
|
|
77
|
+
wheel==0.45.1
|
|
@@ -1,114 +0,0 @@
|
|
|
1
|
-
annotated-types==0.7.0
|
|
2
|
-
anyio==4.11.0
|
|
3
|
-
arize-phoenix-otel==0.13.1
|
|
4
|
-
astroid==3.3.11
|
|
5
|
-
attrs==25.3.0
|
|
6
|
-
autopep8==2.3.2
|
|
7
|
-
certifi==2025.8.3
|
|
8
|
-
charset-normalizer==3.4.3
|
|
9
|
-
click==8.3.0
|
|
10
|
-
colorama==0.4.6
|
|
11
|
-
coloredlogs==15.0.1
|
|
12
|
-
dill==0.4.0
|
|
13
|
-
directory_tree==1.0.0
|
|
14
|
-
distro==1.9.0
|
|
15
|
-
emerge-viz==2.0.7
|
|
16
|
-
filelock==3.19.1
|
|
17
|
-
fsspec==2025.9.0
|
|
18
|
-
gitdb==4.0.12
|
|
19
|
-
GitPython==3.1.45
|
|
20
|
-
googleapis-common-protos==1.70.0
|
|
21
|
-
grpcio==1.75.0
|
|
22
|
-
h11==0.16.0
|
|
23
|
-
hf-xet==1.1.10
|
|
24
|
-
httpcore==1.0.9
|
|
25
|
-
httpx==0.28.1
|
|
26
|
-
httpx-sse==0.4.1
|
|
27
|
-
huggingface-hub==0.35.1
|
|
28
|
-
humanfriendly==10.0
|
|
29
|
-
idna==3.10
|
|
30
|
-
importlib_metadata==8.7.0
|
|
31
|
-
interrogate==1.7.0
|
|
32
|
-
isort==6.0.1
|
|
33
|
-
Jinja2==3.1.6
|
|
34
|
-
jiter==0.11.0
|
|
35
|
-
joblib==1.5.2
|
|
36
|
-
jsonschema==4.25.1
|
|
37
|
-
jsonschema-specifications==2025.9.1
|
|
38
|
-
lizard==1.17.31
|
|
39
|
-
markdown-it-py==4.0.0
|
|
40
|
-
MarkupSafe==3.0.2
|
|
41
|
-
mccabe==0.7.0
|
|
42
|
-
mcp==1.14.1
|
|
43
|
-
mdurl==0.1.2
|
|
44
|
-
networkx==3.5
|
|
45
|
-
numpy==2.3.3
|
|
46
|
-
openai==1.109.1
|
|
47
|
-
openinference-instrumentation==0.1.38
|
|
48
|
-
openinference-instrumentation-smolagents==0.1.18
|
|
49
|
-
openinference-semantic-conventions==0.1.21
|
|
50
|
-
opentelemetry-api==1.37.0
|
|
51
|
-
opentelemetry-exporter-otlp==1.37.0
|
|
52
|
-
opentelemetry-exporter-otlp-proto-common==1.37.0
|
|
53
|
-
opentelemetry-exporter-otlp-proto-grpc==1.37.0
|
|
54
|
-
opentelemetry-exporter-otlp-proto-http==1.37.0
|
|
55
|
-
opentelemetry-instrumentation==0.58b0
|
|
56
|
-
opentelemetry-proto==1.37.0
|
|
57
|
-
opentelemetry-sdk==1.37.0
|
|
58
|
-
opentelemetry-semantic-conventions==0.58b0
|
|
59
|
-
packaging==25.0
|
|
60
|
-
pathspec==0.12.1
|
|
61
|
-
pillow==11.3.0
|
|
62
|
-
platformdirs==4.4.0
|
|
63
|
-
prettytable==3.16.0
|
|
64
|
-
protobuf==6.32.1
|
|
65
|
-
py==1.11.0
|
|
66
|
-
pycodestyle==2.14.0
|
|
67
|
-
pydantic==2.11.9
|
|
68
|
-
pydantic-settings==2.11.0
|
|
69
|
-
pydantic_core==2.33.2
|
|
70
|
-
PyDriller==2.9
|
|
71
|
-
Pygments==2.19.2
|
|
72
|
-
pylint==3.3.8
|
|
73
|
-
pyparsing==3.2.5
|
|
74
|
-
pyperclip==1.10.0
|
|
75
|
-
python-dotenv==1.1.1
|
|
76
|
-
python-louvain==0.16
|
|
77
|
-
python-multipart==0.0.20
|
|
78
|
-
python-sonarqube-api==2.0.5
|
|
79
|
-
pytz==2025.2
|
|
80
|
-
PyYAML==6.0.2
|
|
81
|
-
referencing==0.36.2
|
|
82
|
-
requests==2.32.5
|
|
83
|
-
rich==14.1.0
|
|
84
|
-
rpds-py==0.27.1
|
|
85
|
-
scikit-learn==1.7.2
|
|
86
|
-
scipy==1.16.2
|
|
87
|
-
setuptools==80.9.0
|
|
88
|
-
smmap==5.0.2
|
|
89
|
-
smolagents==1.16.1
|
|
90
|
-
sniffio==1.3.1
|
|
91
|
-
sse-starlette==3.0.2
|
|
92
|
-
starlette==0.48.0
|
|
93
|
-
tabulate==0.9.0
|
|
94
|
-
threadpoolctl==3.6.0
|
|
95
|
-
tomlkit==0.13.3
|
|
96
|
-
python-toon==0.1.3
|
|
97
|
-
tqdm==4.67.1
|
|
98
|
-
types-pytz==2025.2.0.20250809
|
|
99
|
-
typing-inspection==0.4.1
|
|
100
|
-
typing_extensions==4.15.0
|
|
101
|
-
urllib3==2.5.0
|
|
102
|
-
uvicorn==0.37.0
|
|
103
|
-
wcwidth==0.2.14
|
|
104
|
-
wheel==0.45.1
|
|
105
|
-
wrapt==1.17.3
|
|
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
|
|
@@ -1,286 +0,0 @@
|
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{naive_knowledge_base-0.1.1 → naive_knowledge_base-0.1.3}/agents/dependency_graph/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{naive_knowledge_base-0.1.1 → naive_knowledge_base-0.1.3}/naive_knowledge_base.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{naive_knowledge_base-0.1.1 → naive_knowledge_base-0.1.3}/naive_knowledge_base.egg-info/not-zip-safe
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|