hablas-ai 2.0.0 → 2.0.1
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/CHANGELOG.md +9 -0
- package/README.md +26 -0
- package/dist/index.js +101 -101
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [2.0.1] — 2026-06-12 · Setup Flow Restore
|
|
4
|
+
|
|
5
|
+
### Changed
|
|
6
|
+
- Restored the classic two-choice setup flow for the CLI.
|
|
7
|
+
- Brought back:
|
|
8
|
+
1. **Hablas Integrated Engine** — ready-made NVIDIA-backed setup with preselected model
|
|
9
|
+
2. **Custom Provider** — user-provided provider and key flow
|
|
10
|
+
- First launch now auto-runs setup again when no saved config exists.
|
|
11
|
+
|
|
3
12
|
## [2.0.0] — 2026-06-12 · Full Single-Agent Rebuild
|
|
4
13
|
|
|
5
14
|
This release replaces the old stable product surface with a new one built around a strict single-agent direction.
|
package/README.md
CHANGED
|
@@ -44,6 +44,32 @@ Requirements:
|
|
|
44
44
|
|
|
45
45
|
## Usage
|
|
46
46
|
|
|
47
|
+
### First run / setup
|
|
48
|
+
|
|
49
|
+
On first launch, Hablas now offers the restored classic setup flow:
|
|
50
|
+
|
|
51
|
+
1. **Hablas Integrated Engine**
|
|
52
|
+
- ready-made
|
|
53
|
+
- preconfigured NVIDIA-backed endpoint
|
|
54
|
+
- selected model already configured
|
|
55
|
+
- user just chooses option 1
|
|
56
|
+
|
|
57
|
+
2. **Custom Provider**
|
|
58
|
+
- Ollama
|
|
59
|
+
- OpenAI
|
|
60
|
+
- Groq
|
|
61
|
+
- OpenRouter
|
|
62
|
+
- Together
|
|
63
|
+
- DeepSeek
|
|
64
|
+
- custom OpenAI-compatible API
|
|
65
|
+
- NVIDIA NIM
|
|
66
|
+
|
|
67
|
+
You can also run setup manually anytime:
|
|
68
|
+
|
|
69
|
+
```bash
|
|
70
|
+
hablas --setup
|
|
71
|
+
```
|
|
72
|
+
|
|
47
73
|
### Interactive
|
|
48
74
|
|
|
49
75
|
```bash
|