@aigne/doc-smith 0.9.1 → 0.9.2-beta
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 +7 -0
- package/agents/chat/index.mjs +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.9.2-beta](https://github.com/AIGNE-io/aigne-doc-smith/compare/v0.9.1...v0.9.2-beta) (2025-11-12)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* handle nullable config in chat agent ([#298](https://github.com/AIGNE-io/aigne-doc-smith/issues/298)) ([dc1f206](https://github.com/AIGNE-io/aigne-doc-smith/commit/dc1f206c6aafd437732ae9ab17e8c1d8a29fb412))
|
|
9
|
+
|
|
3
10
|
## [0.9.1](https://github.com/AIGNE-io/aigne-doc-smith/compare/v0.9.1-beta...v0.9.1) (2025-11-12)
|
|
4
11
|
|
|
5
12
|
## [0.9.1-beta](https://github.com/AIGNE-io/aigne-doc-smith/compare/v0.9.0...v0.9.1-beta) (2025-11-12)
|
package/agents/chat/index.mjs
CHANGED
|
@@ -6,7 +6,7 @@ const config = await readFile(".aigne/doc-smith/config.yaml", "utf-8")
|
|
|
6
6
|
.then((raw) => parse(raw))
|
|
7
7
|
.catch(() => null);
|
|
8
8
|
|
|
9
|
-
const docsDir = config
|
|
9
|
+
const docsDir = config?.docsDir || ".aigne/doc-smith/docs";
|
|
10
10
|
|
|
11
11
|
export default {
|
|
12
12
|
type: "ai",
|