@ace3-memory/ace 3.0.62 → 3.0.65
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.
- package/README.md +13 -1
- package/download-binary.js +2 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
|
|
7
7
|
[](https://ace3-ai.com/license)
|
|
8
8
|
[](https://www.python.org/downloads/)
|
|
9
|
-
[](https://github.com/AdyBrooks46/AutonomousContextEngine/releases)
|
|
10
10
|
|
|
11
11
|
---
|
|
12
12
|
|
|
@@ -101,6 +101,18 @@ ace update
|
|
|
101
101
|
|
|
102
102
|
## Features
|
|
103
103
|
|
|
104
|
+
### AI Provider Support (10 Providers)
|
|
105
|
+
- **OpenAI** (GPT-4, GPT-4o, GPT-3.5)
|
|
106
|
+
- **Anthropic** (Claude 3.5, Claude 3)
|
|
107
|
+
- **Google** (Gemini Pro, Gemini Ultra)
|
|
108
|
+
- **xAI** (Grok)
|
|
109
|
+
- **DeepSeek** (DeepSeek-V2)
|
|
110
|
+
- **Chinese Providers**: Baidu Wenxin, Alibaba Qwen, Zhipu ChatGLM, Moonshot Kimi, MiniMax
|
|
111
|
+
|
|
112
|
+
### Multi-Language Support
|
|
113
|
+
- **English** (100% coverage)
|
|
114
|
+
- **Chinese** (92% coverage) - Full support for Asia-Pacific market
|
|
115
|
+
|
|
104
116
|
| Feature | Description |
|
|
105
117
|
|---------|-------------|
|
|
106
118
|
| **10 Entity Types** | Memories, decisions, issues, work logs, architecture, patterns, best practices, observations, tags, relationships |
|
package/download-binary.js
CHANGED
|
@@ -21,6 +21,7 @@ const BINARY_MAP = {
|
|
|
21
21
|
'darwin-arm64': 'ace-macos-arm64',
|
|
22
22
|
'darwin-x64': 'ace-macos-x64',
|
|
23
23
|
'linux-x64': 'ace-linux-x64',
|
|
24
|
+
'linux-arm64': 'ace-linux-arm64',
|
|
24
25
|
'win32-x64': 'ace-windows-x64.exe'
|
|
25
26
|
};
|
|
26
27
|
|
|
@@ -89,7 +90,7 @@ async function install() {
|
|
|
89
90
|
|
|
90
91
|
if (!binaryName) {
|
|
91
92
|
console.error(`❌ Unsupported platform: ${platform} ${arch}`);
|
|
92
|
-
console.error(`Supported: macOS (Intel/Apple Silicon), Linux x64, Windows x64`);
|
|
93
|
+
console.error(`Supported: macOS (Intel/Apple Silicon), Linux (x64/ARM64), Windows x64`);
|
|
93
94
|
process.exit(1);
|
|
94
95
|
}
|
|
95
96
|
|