@myun/gimi-chat 0.9.0 → 0.9.2
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/dist/components/reasoning-search/index.js +8 -1
- package/dist/components/templates/CommonChat.js +5 -3
- package/dist/hooks/useCommonChatAPI.js +3 -1
- package/dist/hooks/useSearchCase.d.ts +1 -1
- package/dist/hooks/useSearchCase.js +4 -1
- package/dist/types/chat.d.ts +1 -0
- package/dist/umd/index.min.js +1 -1
- package/package.json +1 -1
|
@@ -8,7 +8,14 @@ var ReasoningSearch = function ReasoningSearch(_ref) {
|
|
|
8
8
|
var dispatch = useAppDispatch();
|
|
9
9
|
var searchResult = {};
|
|
10
10
|
try {
|
|
11
|
-
|
|
11
|
+
var temp = value;
|
|
12
|
+
if (typeof temp !== 'string') {
|
|
13
|
+
temp = JSON.stringify(temp);
|
|
14
|
+
}
|
|
15
|
+
while (typeof temp === 'string') {
|
|
16
|
+
temp = JSON.parse(temp);
|
|
17
|
+
}
|
|
18
|
+
searchResult = temp;
|
|
12
19
|
} catch (error) {
|
|
13
20
|
return '';
|
|
14
21
|
}
|
|
@@ -43,7 +43,9 @@ var CommonChat = /*#__PURE__*/React.forwardRef(function (props, ref) {
|
|
|
43
43
|
_props$model = props.model,
|
|
44
44
|
model = _props$model === void 0 ? 'fullscreen' : _props$model,
|
|
45
45
|
conversationId = props.conversationId,
|
|
46
|
-
businessParams = props.businessParams
|
|
46
|
+
businessParams = props.businessParams,
|
|
47
|
+
_props$enableSearchCo = props.enableSearchCourse,
|
|
48
|
+
enableSearchCourse = _props$enableSearchCo === void 0 ? true : _props$enableSearchCo;
|
|
47
49
|
var store = useStore();
|
|
48
50
|
var dispatch = useAppDispatch();
|
|
49
51
|
var containerRef = React.useRef(null);
|
|
@@ -70,7 +72,7 @@ var CommonChat = /*#__PURE__*/React.forwardRef(function (props, ref) {
|
|
|
70
72
|
isPlaying = _useChatVoice.isPlaying;
|
|
71
73
|
|
|
72
74
|
// 搜索相关课程 - 开始
|
|
73
|
-
var _useSearchCourse = useSearchCourse(),
|
|
75
|
+
var _useSearchCourse = useSearchCourse(enableSearchCourse),
|
|
74
76
|
searchedCourseList = _useSearchCourse.searchedCourseList,
|
|
75
77
|
searching = _useSearchCourse.searching,
|
|
76
78
|
searchCourses = _useSearchCourse.searchCourses,
|
|
@@ -203,7 +205,7 @@ var CommonChat = /*#__PURE__*/React.forwardRef(function (props, ref) {
|
|
|
203
205
|
return;
|
|
204
206
|
}
|
|
205
207
|
handleSend(val, agent, isSystemAuto);
|
|
206
|
-
}, [handleSend, startConversationAndChat, setSearchedCourseList, dispatch, sidebar.type]);
|
|
208
|
+
}, [handleSend, startConversationAndChat, setSearchedCourseList, dispatch, sidebar.type, store]);
|
|
207
209
|
|
|
208
210
|
// 输入框开头Agent名称
|
|
209
211
|
var showTitleSlot = React.useMemo(function () {
|
|
@@ -630,7 +630,9 @@ var useCommonChatAPI = function useCommonChatAPI(props) {
|
|
|
630
630
|
_context8.next = 9;
|
|
631
631
|
return rewriteRecommendListFormHistory(chatList, "".concat(lastUserRequestMessage.chatId));
|
|
632
632
|
case 9:
|
|
633
|
-
|
|
633
|
+
if (lastMessage.stop === 0) {
|
|
634
|
+
getRelatedCourses((lastUserMessage === null || lastUserMessage === void 0 ? void 0 : lastUserMessage.content) || '');
|
|
635
|
+
}
|
|
634
636
|
case 10:
|
|
635
637
|
case "end":
|
|
636
638
|
return _context8.stop();
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { ICourseItem } from "../components/search-course-list";
|
|
3
|
-
declare const useSearchCourse: () => {
|
|
3
|
+
declare const useSearchCourse: (enableSearchCourse: boolean) => {
|
|
4
4
|
searchedCourseList: ICourseItem[];
|
|
5
5
|
searching: boolean;
|
|
6
6
|
searchCourses: (query: string, callback?: () => void) => void;
|
|
@@ -8,7 +8,7 @@ import { useState } from "react";
|
|
|
8
8
|
import { useContext } from "react";
|
|
9
9
|
import ChatContext from "../components/templates/chatContext";
|
|
10
10
|
import { Toast } from "@douyinfe/semi-ui";
|
|
11
|
-
var useSearchCourse = function useSearchCourse() {
|
|
11
|
+
var useSearchCourse = function useSearchCourse(enableSearchCourse) {
|
|
12
12
|
var _useContext = useContext(ChatContext),
|
|
13
13
|
apiService = _useContext.apiService;
|
|
14
14
|
var _ref = apiService,
|
|
@@ -22,6 +22,9 @@ var useSearchCourse = function useSearchCourse() {
|
|
|
22
22
|
searching = _useState4[0],
|
|
23
23
|
setSearching = _useState4[1];
|
|
24
24
|
var searchCourses = function searchCourses(query, callback) {
|
|
25
|
+
if (!enableSearchCourse) {
|
|
26
|
+
return;
|
|
27
|
+
}
|
|
25
28
|
setSearching(true);
|
|
26
29
|
getSearchCourseList(query).then(function (res) {
|
|
27
30
|
setSearching(false);
|
package/dist/types/chat.d.ts
CHANGED