@lobehub/lobehub 2.1.6 → 2.1.7
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
CHANGED
|
@@ -2,6 +2,31 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog
|
|
4
4
|
|
|
5
|
+
### [Version 2.1.7](https://github.com/lobehub/lobe-chat/compare/v2.1.6...v2.1.7)
|
|
6
|
+
|
|
7
|
+
<sup>Released on **2026-02-01**</sup>
|
|
8
|
+
|
|
9
|
+
#### 🐛 Bug Fixes
|
|
10
|
+
|
|
11
|
+
- **misc**: Add missing description parameter docs in Notebook system prompt.
|
|
12
|
+
|
|
13
|
+
<br/>
|
|
14
|
+
|
|
15
|
+
<details>
|
|
16
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
17
|
+
|
|
18
|
+
#### What's fixed
|
|
19
|
+
|
|
20
|
+
- **misc**: Add missing description parameter docs in Notebook system prompt, closes [#12015](https://github.com/lobehub/lobe-chat/issues/12015) [#11391](https://github.com/lobehub/lobe-chat/issues/11391) ([182030f](https://github.com/lobehub/lobe-chat/commit/182030f))
|
|
21
|
+
|
|
22
|
+
</details>
|
|
23
|
+
|
|
24
|
+
<div align="right">
|
|
25
|
+
|
|
26
|
+
[](#readme-top)
|
|
27
|
+
|
|
28
|
+
</div>
|
|
29
|
+
|
|
5
30
|
### [Version 2.1.6](https://github.com/lobehub/lobe-chat/compare/v2.1.5...v2.1.6)
|
|
6
31
|
|
|
7
32
|
<sup>Released on **2026-02-01**</sup>
|
package/changelog/v2.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lobehub/lobehub",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.7",
|
|
4
4
|
"description": "LobeHub - an open-source,comprehensive AI Agent framework that supports speech synthesis, multimodal, and extensible Function Call plugin system. Supports one-click free deployment of your private ChatGPT/LLM web application.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"framework",
|
|
@@ -10,6 +10,26 @@ export const systemPrompt = `You have access to the Notebook tool for creating a
|
|
|
10
10
|
Note: The list of existing documents is automatically provided in the context, so you don't need to query for it.
|
|
11
11
|
</tool_overview>
|
|
12
12
|
|
|
13
|
+
<api_parameters>
|
|
14
|
+
**createDocument** - All three parameters are required:
|
|
15
|
+
- title (required): A descriptive title for the document
|
|
16
|
+
- description (required): A brief summary of the document (1-2 sentences), shown in document lists
|
|
17
|
+
- content (required): The document content in Markdown format
|
|
18
|
+
- type (optional): "markdown" (default), "note", "report", or "article"
|
|
19
|
+
|
|
20
|
+
**updateDocument**:
|
|
21
|
+
- id (required): The document ID to update
|
|
22
|
+
- title (optional): New title
|
|
23
|
+
- content (optional): New content
|
|
24
|
+
- append (optional): If true, append to existing content instead of replacing
|
|
25
|
+
|
|
26
|
+
**getDocument**:
|
|
27
|
+
- id (required): The document ID to retrieve
|
|
28
|
+
|
|
29
|
+
**deleteDocument**:
|
|
30
|
+
- id (required): The document ID to delete
|
|
31
|
+
</api_parameters>
|
|
32
|
+
|
|
13
33
|
<when_to_use>
|
|
14
34
|
**Save to Notebook when**:
|
|
15
35
|
- User explicitly asks to "save", "write down", or "document" something
|