connectbase-client 3.18.0 → 3.19.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/CHANGELOG.md +20 -0
- package/dist/connect-base.umd.js +4 -4
- package/dist/index.d.mts +88 -28
- package/dist/index.d.ts +88 -28
- package/dist/index.js +63 -30
- package/dist/index.mjs +63 -30
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,26 @@
|
|
|
3
3
|
본 SDK 의 모든 주요 변경사항을 [Keep a Changelog](https://keepachangelog.com/ko/1.1.0/) 형식으로 기록합니다.
|
|
4
4
|
버전은 [Semantic Versioning](https://semver.org/lang/ko/) 을 따릅니다.
|
|
5
5
|
|
|
6
|
+
## [3.19.0] - 2026-05-22
|
|
7
|
+
|
|
8
|
+
### Added — AI 추론(reasoning) 스트리밍 (`chatStream` 의 `onReasoning`)
|
|
9
|
+
|
|
10
|
+
추론형 모델의 추론 과정을 스트리밍으로 받는 `onReasoning` 콜백을 `cb.ai.chatStream` 에
|
|
11
|
+
추가했다. 게이트웨이가 업스트림(openai 계열)의 `delta.reasoning` 을 토큰 청크의
|
|
12
|
+
`reasoning` 필드로 중계한다. 추론 델타는 본문(`content`)이 비어 있어 `onReasoning` 을
|
|
13
|
+
쓰지 않는 구형 코드에는 영향이 없다 (하위호환).
|
|
14
|
+
|
|
15
|
+
### Added — Agentic 검색 수행 신호 (`KnowledgeSearchResponse.agentic`)
|
|
16
|
+
|
|
17
|
+
`cb.knowledge.search` 응답에 `agentic` / `agentic_rounds` 필드를 추가했다. `agentic: true`
|
|
18
|
+
를 보냈더라도 AI provider 미설정·LLM 오류로 단일 키워드 검색에 폴백되면 `agentic` 이
|
|
19
|
+
`false` 로 와, agentic 옵션이 실제로 수행됐는지 폴백됐는지 판별할 수 있다.
|
|
20
|
+
|
|
21
|
+
### Note — npm 패키지 동기화
|
|
22
|
+
|
|
23
|
+
`onReasoning` 과 `knowledge.updateDocument`(아래 3.18.0 항목)는 코드에는 반영됐으나
|
|
24
|
+
npm 3.18.0 패키지에는 누락된 상태였다. 3.19.0 에 모두 정상 포함된다.
|
|
25
|
+
|
|
6
26
|
## [3.18.0] - 2026-05-21
|
|
7
27
|
|
|
8
28
|
### Added — Knowledge Base 문서 수정 (`knowledge.updateDocument`)
|