codenexus-ai 1.0.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.
- codenexus/__init__.py +21 -0
- codenexus/cli.py +817 -0
- codenexus/graph.py +362 -0
- codenexus/license.py +231 -0
- codenexus/llm.py +316 -0
- codenexus/memory.py +421 -0
- codenexus/parser.py +365 -0
- codenexus/server.py +359 -0
- codenexus/workspace.py +375 -0
- codenexus_ai-1.0.0.dist-info/METADATA +212 -0
- codenexus_ai-1.0.0.dist-info/RECORD +14 -0
- codenexus_ai-1.0.0.dist-info/WHEEL +4 -0
- codenexus_ai-1.0.0.dist-info/entry_points.txt +2 -0
- codenexus_ai-1.0.0.dist-info/licenses/LICENSE +21 -0
codenexus/__init__.py
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"""CodeNexus: The context engine for AI coding agents."""
|
|
2
|
+
|
|
3
|
+
__version__ = "1.0.0"
|
|
4
|
+
__author__ = "CodeNexus Contributors"
|
|
5
|
+
|
|
6
|
+
from .graph import DependencyGraph, Node, Edge
|
|
7
|
+
from .parser import CodeParser
|
|
8
|
+
from .server import CodeNexusServer
|
|
9
|
+
from .llm import LocalLLM, LLMConfig, get_llm, init_llm, LLAMA_CPP_AVAILABLE
|
|
10
|
+
from .workspace import MultiRepoWorkspace, WorkspaceConfig, RepoConfig
|
|
11
|
+
from .memory import SessionMemory, Session, Decision, DecisionType, get_memory
|
|
12
|
+
from .license import LicenseManager, LicenseTier, get_license
|
|
13
|
+
|
|
14
|
+
__all__ = [
|
|
15
|
+
"DependencyGraph", "Node", "Edge",
|
|
16
|
+
"CodeParser", "CodeNexusServer",
|
|
17
|
+
"LocalLLM", "LLMConfig", "get_llm", "init_llm", "LLAMA_CPP_AVAILABLE",
|
|
18
|
+
"MultiRepoWorkspace", "WorkspaceConfig", "RepoConfig",
|
|
19
|
+
"SessionMemory", "Session", "Decision", "DecisionType", "get_memory",
|
|
20
|
+
"LicenseManager", "LicenseTier", "get_license"
|
|
21
|
+
]
|