aggroot 1.4.8 → 1.5.0
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/.env.example +12 -0
- package/dist/index.cjs +1335 -1014
- package/package.json +158 -157
package/.env.example
CHANGED
|
@@ -33,6 +33,18 @@ DEEPSEEK_BASE_URL=https://api.deepseek.com
|
|
|
33
33
|
OPENAI_API_KEY=your_openai_api_key_here
|
|
34
34
|
OPENAI_BASE_URL=https://api.openai.com/v1
|
|
35
35
|
|
|
36
|
+
# Honcho External Memory (optional)
|
|
37
|
+
# -------------------------------
|
|
38
|
+
# Enable Honcho as the external memory provider.
|
|
39
|
+
# Get your API key at https://app.honcho.dev
|
|
40
|
+
# After installing the SDK: npm install @honcho-ai/sdk
|
|
41
|
+
HONCHO_API_KEY=your_honcho_api_key_here
|
|
42
|
+
#HONCHO_BASE_URL=https://api.honcho.dev
|
|
43
|
+
#HONCHO_WORKSPACE_ID=default
|
|
44
|
+
AGGROOT_FLAG_MEMORY_PROVIDER=honcho
|
|
45
|
+
#AGGROOT_FLAG_MEMORY_NUDGE_ENABLED=true
|
|
46
|
+
#AGGROOT_FLAG_MEMORY_NUDGE_INTERVAL=10
|
|
47
|
+
|
|
36
48
|
# ZhipuGLM API (智谱 AI)
|
|
37
49
|
ZHIPU_API_KEY=your_zhipu_api_key_here
|
|
38
50
|
ZHIPU_BASE_URL=https://open.bigmodel.cn/api/paas/v4
|