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 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
+ ]