@aetherai/aether 0.0.3 → 0.0.4
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
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
# Aether CLI
|
|
2
|
+
|
|
3
|
+
A powerful AI-powered command-line interface for interacting with multiple AI providers.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install -g @aetherai/aether
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Usage
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
aether
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
## Features
|
|
18
|
+
|
|
19
|
+
- Multi-provider support (ZhipuAI, MiniMax, MoonshotAI, DeepSeek, and more)
|
|
20
|
+
- Interactive chat interface
|
|
21
|
+
- File operations and code generation
|
|
22
|
+
- MCP (Model Context Protocol) integration
|
|
23
|
+
- Token usage tracking
|
|
24
|
+
- Customizable model selection
|
|
25
|
+
|
|
26
|
+
## Configuration
|
|
27
|
+
|
|
28
|
+
Aether CLI uses a configuration file to manage your API keys and settings. Run `aether --help` for more information on configuration options.
|
|
29
|
+
|
|
30
|
+
## Supported Providers
|
|
31
|
+
|
|
32
|
+
- ZhipuAI
|
|
33
|
+
- MiniMax
|
|
34
|
+
- MoonshotAI
|
|
35
|
+
- DeepSeek
|
|
36
|
+
- Alibaba Cloud Bailian
|
|
37
|
+
- And many more OpenAI/Anthropic compatible providers
|
|
38
|
+
|
|
39
|
+
## License
|
|
40
|
+
|
|
41
|
+
MIT
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aetherai/aether",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.4",
|
|
4
4
|
"description": "Aether",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -30,7 +30,8 @@
|
|
|
30
30
|
"check-i18n": "tsx ../../scripts/check-i18n.ts"
|
|
31
31
|
},
|
|
32
32
|
"files": [
|
|
33
|
-
"dist"
|
|
33
|
+
"dist",
|
|
34
|
+
"README.md"
|
|
34
35
|
],
|
|
35
36
|
"config": {
|
|
36
37
|
"sandboxImageUri": "ghcr.io/oewortex/aether:0.0.3"
|