emdash-ai 0.1.39__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.
emdash/__init__.py
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
"""EmDash - Graph-based coding intelligence system.
|
|
2
|
+
|
|
3
|
+
DEPRECATED: This package now re-exports from emdash_core.
|
|
4
|
+
Import directly from emdash_core for new code.
|
|
5
|
+
|
|
6
|
+
The business logic has been consolidated into:
|
|
7
|
+
- emdash-core: All agents, tools, analytics, etc.
|
|
8
|
+
- emdash-cli: CLI that calls the emdash-core FastAPI server
|
|
9
|
+
|
|
10
|
+
The `em` and `emdash` commands now use emdash-cli.
|
|
11
|
+
"""
|
|
12
|
+
|
|
13
|
+
import warnings
|
|
14
|
+
|
|
15
|
+
warnings.warn(
|
|
16
|
+
"Importing from 'emdash' is deprecated. "
|
|
17
|
+
"Use 'emdash_core' for business logic or 'emdash_cli' for CLI.",
|
|
18
|
+
DeprecationWarning,
|
|
19
|
+
stacklevel=2,
|
|
20
|
+
)
|
|
21
|
+
|
|
22
|
+
# Re-export common items from emdash_core for backwards compatibility
|
|
23
|
+
try:
|
|
24
|
+
from emdash_core.agent.toolkit import AgentToolkit
|
|
25
|
+
from emdash_core.agent.events import AgentEventEmitter
|
|
26
|
+
from emdash_core.agent.providers import get_provider
|
|
27
|
+
from emdash_core.analytics.engine import AnalyticsEngine
|
|
28
|
+
from emdash_core.graph.connection import get_connection
|
|
29
|
+
except ImportError:
|
|
30
|
+
pass # emdash_core may not be installed
|
|
31
|
+
|
|
32
|
+
from importlib.metadata import version, PackageNotFoundError
|
|
33
|
+
|
|
34
|
+
try:
|
|
35
|
+
__version__ = version("emdash-ai")
|
|
36
|
+
except PackageNotFoundError:
|
|
37
|
+
__version__ = "0.0.0-dev"
|
emdash/__main__.py
ADDED
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: emdash-ai
|
|
3
|
+
Version: 0.1.39
|
|
4
|
+
Summary: Graph-based coding intelligence system - The 'Senior Engineer' Context Engine
|
|
5
|
+
Author: Em Dash Team
|
|
6
|
+
Requires-Python: >=3.10,<4.0
|
|
7
|
+
Classifier: Programming Language :: Python :: 3
|
|
8
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
9
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
10
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
13
|
+
Provides-Extra: local
|
|
14
|
+
Requires-Dist: astroid (>=3.0.1,<4.0.0)
|
|
15
|
+
Requires-Dist: click (>=8.1.7,<9.0.0)
|
|
16
|
+
Requires-Dist: cmake (>=3.25.0)
|
|
17
|
+
Requires-Dist: emdash-cli (>=0.1.39)
|
|
18
|
+
Requires-Dist: emdash-core (>=0.1.39)
|
|
19
|
+
Requires-Dist: gitpython (>=3.1.40,<4.0.0)
|
|
20
|
+
Requires-Dist: httpx (>=0.25.0)
|
|
21
|
+
Requires-Dist: kuzu (>=0.4.0)
|
|
22
|
+
Requires-Dist: loguru (>=0.7.2,<0.8.0)
|
|
23
|
+
Requires-Dist: networkx (>=3.2.1,<4.0.0)
|
|
24
|
+
Requires-Dist: numpy (>=1.26.0)
|
|
25
|
+
Requires-Dist: openai (>=1.0.0)
|
|
26
|
+
Requires-Dist: prompt_toolkit (>=3.0.43,<4.0.0)
|
|
27
|
+
Requires-Dist: pydantic (>=2.5.0,<3.0.0)
|
|
28
|
+
Requires-Dist: pygithub (>=2.1.1,<3.0.0)
|
|
29
|
+
Requires-Dist: pypng (>=0.0.21,<0.0.22)
|
|
30
|
+
Requires-Dist: python-dotenv (>=1.0.0,<2.0.0)
|
|
31
|
+
Requires-Dist: python-louvain (>=0.16,<0.17)
|
|
32
|
+
Requires-Dist: rich (>=13.7.0)
|
|
33
|
+
Requires-Dist: scipy (>=1.11.4,<2.0.0)
|
|
34
|
+
Requires-Dist: sentence-transformers (>=2.2.0)
|
|
35
|
+
Requires-Dist: supabase (>=2.0.0)
|
|
36
|
+
Requires-Dist: textual (>=0.47.0)
|
|
37
|
+
Requires-Dist: tqdm (>=4.66.1,<5.0.0)
|
|
38
|
+
Description-Content-Type: text/markdown
|
|
39
|
+
|
|
40
|
+
# emdash-ai
|
|
41
|
+
|
|
42
|
+
Graph-based coding intelligence system - The 'Senior Engineer' Context Engine
|
|
43
|
+
|
|
44
|
+
## Installation
|
|
45
|
+
|
|
46
|
+
**Prerequisites** (for building kuzu):
|
|
47
|
+
```bash
|
|
48
|
+
# macOS
|
|
49
|
+
brew install cmake
|
|
50
|
+
|
|
51
|
+
# Ubuntu/Debian
|
|
52
|
+
sudo apt-get install cmake
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
Then install emdash:
|
|
56
|
+
```bash
|
|
57
|
+
pip install emdash-ai
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
## Usage
|
|
61
|
+
|
|
62
|
+
```bash
|
|
63
|
+
emdash index # Index your codebase
|
|
64
|
+
emdash agent # Start the AI agent
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
## Features
|
|
68
|
+
|
|
69
|
+
- Graph-based code analysis
|
|
70
|
+
- Semantic code search
|
|
71
|
+
- AI-powered code exploration
|
|
72
|
+
- MCP server integration
|
|
73
|
+
|
|
74
|
+
## TODO
|
|
75
|
+
|
|
76
|
+
- [ ] Ralph Wigum
|
|
77
|
+
- [ ] Browser agent
|
|
78
|
+
- [ ] Fork conversation
|
|
79
|
+
- [x] Hooks
|
|
80
|
+
- [x] Agent name and description
|
|
81
|
+
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
emdash/__init__.py,sha256=jB8gY1rgbvONvXgShzU9W9GxYUptTQZemkXkDlmbFlw,1163
|
|
2
|
+
emdash/__main__.py,sha256=dX8bC3FaUop0Gf-zBOO02B8s8VXzxEjswoI3yU-_6R8,121
|
|
3
|
+
emdash_ai-0.1.39.dist-info/METADATA,sha256=jGXwmozvGQ49CfiVj7b1L-59_0NJCB8e-RSaHCLK5wE,2096
|
|
4
|
+
emdash_ai-0.1.39.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
|
|
5
|
+
emdash_ai-0.1.39.dist-info/entry_points.txt,sha256=31CuYD0k-tM8csFWDunc-JoZTxXaifj3oIXz4V0p6F0,122
|
|
6
|
+
emdash_ai-0.1.39.dist-info/RECORD,,
|