@blueking/ai-ui-sdk 0.0.15-beta.15 → 0.0.15-beta.17
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/common/util.js +2 -2
- package/dist/component/render-input/index.vue.css +17 -17
- package/dist/component/render-input/index.vue.js +1 -1
- package/dist/component/render-input/render-drag.vue.css +5 -5
- package/dist/component/render-input/render-drag.vue.js +1 -1
- package/dist/component/render-knowledge-icon/index.vue.css +1 -1
- package/dist/component/render-knowledge-icon/index.vue.js +1 -1
- package/dist/component/render-message/openai-message.vue.css +15 -15
- package/dist/component/render-message/openai-message.vue.js +1 -1
- package/dist/component/render-message/skeleton-message.vue.css +1 -1
- package/dist/component/render-message/skeleton-message.vue.js +1 -1
- package/dist/component/render-message/system-message.vue.css +2 -2
- package/dist/component/render-message/system-message.vue.js +1 -1
- package/dist/component/render-message/time-message.vue.css +1 -1
- package/dist/component/render-message/time-message.vue.js +1 -1
- package/dist/component/render-message/token-expired-message.vue.css +9 -9
- package/dist/component/render-message/token-expired-message.vue.js +1 -1
- package/dist/component/render-message/user-message.vue.css +15 -15
- package/dist/component/render-message/user-message.vue.js +1 -1
- package/dist/component/render-stop/index.vue.css +2 -2
- package/dist/component/render-stop/index.vue.js +1 -1
- package/dist/hooks/use-chat.d.ts +1 -0
- package/dist/hooks/use-chat.js +2 -1
- package/dist/hooks/use-http.d.ts +1 -0
- package/dist/hooks/use-http.js +4 -0
- package/dist/http/fetch/index.js +5 -3
- package/dist/http/helper/agent.d.ts +7 -0
- package/dist/http/helper/agent.js +8 -0
- package/dist/types/agent.d.ts +8 -0
- package/package.json +1 -1
package/dist/common/util.js
CHANGED
@@ -149,11 +149,11 @@ export const handleCopy = (text)=>{
|
|
149
149
|
* @param username 用户名
|
150
150
|
* @returns 头像地址
|
151
151
|
*/ export function getUserImageUrl(username = '') {
|
152
|
-
var
|
152
|
+
var _window_BK_USER_IMAGE_URL;
|
153
153
|
if (username === 'admin') {
|
154
154
|
return userImageUrl;
|
155
155
|
}
|
156
|
-
return ((
|
156
|
+
return ((_window_BK_USER_IMAGE_URL = window.BK_USER_IMAGE_URL) === null || _window_BK_USER_IMAGE_URL === void 0 ? void 0 : _window_BK_USER_IMAGE_URL.replace('{placeholder}', username)) || userImageUrl;
|
157
157
|
}
|
158
158
|
/**
|
159
159
|
* 处理头像加载失败的场景
|
@@ -1,37 +1,37 @@
|
|
1
1
|
|
2
2
|
.send-prompt-container {
|
3
|
-
&[data-v-
|
3
|
+
&[data-v-lek9kb5u] {
|
4
4
|
width: 800px;
|
5
5
|
z-index: 1501;
|
6
6
|
overflow: visible;
|
7
7
|
position: relative;
|
8
8
|
}
|
9
|
-
[data-v-
|
9
|
+
[data-v-lek9kb5u] .textarea-list {
|
10
10
|
bottom: var(--textarea-bottom);
|
11
11
|
}
|
12
12
|
&:hover {
|
13
|
-
.clear-icon[data-v-
|
13
|
+
.clear-icon[data-v-lek9kb5u] {
|
14
14
|
display: inline-flex !important;
|
15
15
|
}
|
16
16
|
}
|
17
17
|
}
|
18
18
|
.quill-container {
|
19
|
-
&[data-v-
|
19
|
+
&[data-v-lek9kb5u] {
|
20
20
|
background: #fff;
|
21
21
|
box-shadow: 0 0 6px 0 #0000001a;
|
22
22
|
border-radius: 4px;
|
23
23
|
box-sizing: border-box !important;
|
24
24
|
border: 1px solid transparent;
|
25
25
|
}
|
26
|
-
&.active[data-v-
|
26
|
+
&.active[data-v-lek9kb5u] {
|
27
27
|
border: 1px solid #3A84FF !important;
|
28
28
|
}
|
29
|
-
&[data-v-
|
29
|
+
&[data-v-lek9kb5u]:has(.ql-editor:focus) {
|
30
30
|
border: 1px solid #3A84FF !important;
|
31
31
|
}
|
32
32
|
}
|
33
33
|
.send-prompt {
|
34
|
-
&[data-v-
|
34
|
+
&[data-v-lek9kb5u] {
|
35
35
|
width: 800px;
|
36
36
|
border: 1px solid transparent;
|
37
37
|
flex-direction: row;
|
@@ -41,28 +41,28 @@
|
|
41
41
|
border-radius: 4px;
|
42
42
|
border: 1px solid transparent !important;
|
43
43
|
}
|
44
|
-
[data-v-
|
44
|
+
[data-v-lek9kb5u] .content-input-wrapper {
|
45
45
|
padding: 0 !important;
|
46
46
|
height: 100% !important;
|
47
47
|
}
|
48
|
-
[data-v-
|
48
|
+
[data-v-lek9kb5u] .auto-textarea-wrapper {
|
49
49
|
height: 100% !important;
|
50
50
|
}
|
51
|
-
[data-v-
|
51
|
+
[data-v-lek9kb5u] .v-note-panel {
|
52
52
|
border-radius: 4px;
|
53
53
|
}
|
54
|
-
[data-v-
|
54
|
+
[data-v-lek9kb5u] .scroll-style {
|
55
55
|
overflow-y: hidden !important;
|
56
56
|
}
|
57
|
-
[data-v-
|
57
|
+
[data-v-lek9kb5u] .auto-textarea-block {
|
58
58
|
display: none;
|
59
59
|
}
|
60
|
-
&[data-v-
|
60
|
+
&[data-v-lek9kb5u]:has(.ql-editor:focus) {
|
61
61
|
height: var(--text-height);
|
62
62
|
}
|
63
63
|
}
|
64
64
|
.ai-ui-sdk-fasong {
|
65
|
-
&[data-v-
|
65
|
+
&[data-v-lek9kb5u] {
|
66
66
|
width: 28px;
|
67
67
|
height: 28px;
|
68
68
|
line-height: 28px;
|
@@ -76,16 +76,16 @@
|
|
76
76
|
text-align: center;
|
77
77
|
z-index: 1501;
|
78
78
|
}
|
79
|
-
&[data-v-
|
79
|
+
&[data-v-lek9kb5u]:hover {
|
80
80
|
background: #F0F5FF;
|
81
81
|
color: #3a84ff;
|
82
82
|
}
|
83
|
-
&.disable[data-v-
|
83
|
+
&.disable[data-v-lek9kb5u] {
|
84
84
|
color: #dcdee5;
|
85
85
|
cursor: not-allowed;
|
86
86
|
}
|
87
87
|
}
|
88
|
-
.clear-icon[data-v-
|
88
|
+
.clear-icon[data-v-lek9kb5u] {
|
89
89
|
display: none !important;
|
90
90
|
position: absolute;
|
91
91
|
bottom: 42px;
|
@@ -1,6 +1,6 @@
|
|
1
1
|
|
2
2
|
.send-tool-container {
|
3
|
-
&[data-v-
|
3
|
+
&[data-v-9nmfu2df] {
|
4
4
|
position: absolute;
|
5
5
|
left: 50%;
|
6
6
|
top: 16px;
|
@@ -14,18 +14,18 @@
|
|
14
14
|
z-index: 15001;
|
15
15
|
}
|
16
16
|
&.bottom {
|
17
|
-
&[data-v-
|
17
|
+
&[data-v-9nmfu2df] {
|
18
18
|
bottom: 0;
|
19
19
|
top: auto;
|
20
20
|
}
|
21
|
-
.ai-ui-sdk-gengduo[data-v-
|
21
|
+
.ai-ui-sdk-gengduo[data-v-9nmfu2df] {
|
22
22
|
margin-top: -10px;
|
23
23
|
}
|
24
24
|
}
|
25
|
-
&[data-v-
|
25
|
+
&[data-v-9nmfu2df]:hover, &.is-dragging[data-v-9nmfu2df] {
|
26
26
|
background: #3A84FF;
|
27
27
|
}
|
28
|
-
.ai-ui-sdk-gengduo[data-v-
|
28
|
+
.ai-ui-sdk-gengduo[data-v-9nmfu2df] {
|
29
29
|
margin-top: -2px;
|
30
30
|
color: #63656E;
|
31
31
|
}
|
@@ -1,11 +1,11 @@
|
|
1
1
|
|
2
|
-
.ai-message-home[data-v-
|
2
|
+
.ai-message-home[data-v-l1dj8l8k] {
|
3
3
|
justify-content: center;
|
4
4
|
align-items: flex-start;
|
5
5
|
width: 100%;
|
6
6
|
}
|
7
7
|
.ai-content {
|
8
|
-
&[data-v-
|
8
|
+
&[data-v-l1dj8l8k] {
|
9
9
|
flex: 1;
|
10
10
|
max-width: calc(100% - 104px);
|
11
11
|
background: #FFFFFF;
|
@@ -18,12 +18,12 @@
|
|
18
18
|
padding-top: 12px;
|
19
19
|
margin-right: 52px;
|
20
20
|
}
|
21
|
-
.ai-ui-sdk-warning-circle-fill[data-v-
|
21
|
+
.ai-ui-sdk-warning-circle-fill[data-v-l1dj8l8k] {
|
22
22
|
color: #EA3636;
|
23
23
|
font-size: 18px;
|
24
24
|
margin-right: 2px;
|
25
25
|
}
|
26
|
-
.ai-ui-sdk-quanquan[data-v-
|
26
|
+
.ai-ui-sdk-quanquan[data-v-l1dj8l8k] {
|
27
27
|
display: inline-block;
|
28
28
|
color: #3A84FF;
|
29
29
|
animation: rotate 800ms linear infinite;
|
@@ -32,12 +32,12 @@
|
|
32
32
|
top: 23px;
|
33
33
|
z-index: 1501;
|
34
34
|
}
|
35
|
-
.message-check[data-v-
|
35
|
+
.message-check[data-v-l1dj8l8k] {
|
36
36
|
position: absolute;
|
37
37
|
top: 0;
|
38
38
|
left: -80px;
|
39
39
|
}
|
40
|
-
&[data-v-
|
40
|
+
&[data-v-l1dj8l8k]::before {
|
41
41
|
position: absolute;
|
42
42
|
content: '';
|
43
43
|
width: 15px;
|
@@ -47,25 +47,25 @@
|
|
47
47
|
rotate: 45deg;
|
48
48
|
background: #FFFFFF;
|
49
49
|
}
|
50
|
-
&.fail[data-v-
|
50
|
+
&.fail[data-v-l1dj8l8k] {
|
51
51
|
padding: 12px;
|
52
52
|
word-break: break-all;
|
53
53
|
}
|
54
|
-
&.loading[data-v-
|
54
|
+
&.loading[data-v-l1dj8l8k] {
|
55
55
|
padding: 12px 0;
|
56
56
|
word-break: break-all;
|
57
57
|
}
|
58
58
|
}
|
59
|
-
.skeleton-message[data-v-
|
59
|
+
.skeleton-message[data-v-l1dj8l8k] {
|
60
60
|
margin-right: 52px;
|
61
61
|
}
|
62
62
|
.message-photo {
|
63
|
-
&[data-v-
|
63
|
+
&[data-v-l1dj8l8k] {
|
64
64
|
width: 52px;
|
65
65
|
text-align: right;
|
66
66
|
user-select: none;
|
67
67
|
}
|
68
|
-
img[data-v-
|
68
|
+
img[data-v-l1dj8l8k] {
|
69
69
|
margin-right: 16px;
|
70
70
|
margin-top: 5px;
|
71
71
|
width: 36px;
|
@@ -73,24 +73,24 @@ img[data-v-vdqmxqsy] {
|
|
73
73
|
}
|
74
74
|
}
|
75
75
|
.message-tools {
|
76
|
-
&[data-v-
|
76
|
+
&[data-v-l1dj8l8k] {
|
77
77
|
margin: 12px 12px 12px;
|
78
78
|
padding-top: 10px;
|
79
79
|
justify-content: space-between;
|
80
80
|
border-top: 1px solid #EAEBF0;
|
81
81
|
}
|
82
|
-
.rate-tip[data-v-
|
82
|
+
.rate-tip[data-v-l1dj8l8k] {
|
83
83
|
font-size: 12px;
|
84
84
|
color: #979BA5;
|
85
85
|
margin-left: 7px;
|
86
86
|
}
|
87
87
|
.tool-icons {
|
88
88
|
.ai-ui-sdk-icon {
|
89
|
-
&[data-v-
|
89
|
+
&[data-v-l1dj8l8k] {
|
90
90
|
cursor: pointer;
|
91
91
|
color: #979BA5;
|
92
92
|
}
|
93
|
-
&[data-v-
|
93
|
+
&[data-v-l1dj8l8k]:hover {
|
94
94
|
color: #3A84FF;
|
95
95
|
}
|
96
96
|
}
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import { render } from './skeleton-message.script.vue.js';
|
2
2
|
const script = { render };
|
3
|
-
script.__scopeId = "data-v-
|
3
|
+
script.__scopeId = "data-v-rov4lrm2";
|
4
4
|
script.__file = "./src/component/render-message/skeleton-message.vue";
|
5
5
|
import './skeleton-message.vue.css';
|
6
6
|
export default script;
|
@@ -1,6 +1,6 @@
|
|
1
1
|
|
2
2
|
.system-message {
|
3
|
-
&[data-v-
|
3
|
+
&[data-v-5at59qvx] {
|
4
4
|
position: relative;
|
5
5
|
width: calc(100% - 204px) !important;
|
6
6
|
max-width: 800px !important;
|
@@ -8,7 +8,7 @@
|
|
8
8
|
border-bottom: 1px dashed #DCDEE5;
|
9
9
|
margin: 24px 0 40px !important;
|
10
10
|
}
|
11
|
-
span[data-v-
|
11
|
+
span[data-v-5at59qvx] {
|
12
12
|
position: absolute;
|
13
13
|
left: 50%;
|
14
14
|
top: 50%;
|
@@ -1,11 +1,11 @@
|
|
1
1
|
|
2
|
-
.ai-message-home[data-v-
|
2
|
+
.ai-message-home[data-v-ddpd9sib] {
|
3
3
|
justify-content: center;
|
4
4
|
align-items: flex-start;
|
5
5
|
width: 100%;
|
6
6
|
}
|
7
7
|
.ai-content {
|
8
|
-
&[data-v-
|
8
|
+
&[data-v-ddpd9sib] {
|
9
9
|
flex: 1;
|
10
10
|
background: #FFFFFF;
|
11
11
|
line-height: 22px;
|
@@ -17,17 +17,17 @@
|
|
17
17
|
padding-top: 12px;
|
18
18
|
margin-right: 52px;
|
19
19
|
}
|
20
|
-
.ai-ui-sdk-warning-circle-fill[data-v-
|
20
|
+
.ai-ui-sdk-warning-circle-fill[data-v-ddpd9sib] {
|
21
21
|
color: #EA3636;
|
22
22
|
font-size: 18px;
|
23
23
|
margin-right: 2px;
|
24
24
|
}
|
25
|
-
.message-check[data-v-
|
25
|
+
.message-check[data-v-ddpd9sib] {
|
26
26
|
position: absolute;
|
27
27
|
top: 0;
|
28
28
|
left: -80px;
|
29
29
|
}
|
30
|
-
&[data-v-
|
30
|
+
&[data-v-ddpd9sib]::before {
|
31
31
|
position: absolute;
|
32
32
|
content: '';
|
33
33
|
width: 15px;
|
@@ -37,24 +37,24 @@
|
|
37
37
|
rotate: 45deg;
|
38
38
|
background: #FFFFFF;
|
39
39
|
}
|
40
|
-
&.fail[data-v-
|
40
|
+
&.fail[data-v-ddpd9sib] {
|
41
41
|
padding: 12px;
|
42
42
|
}
|
43
43
|
}
|
44
44
|
.message-photo {
|
45
|
-
&[data-v-
|
45
|
+
&[data-v-ddpd9sib] {
|
46
46
|
width: 52px;
|
47
47
|
text-align: right;
|
48
48
|
user-select: none;
|
49
49
|
}
|
50
|
-
img[data-v-
|
50
|
+
img[data-v-ddpd9sib] {
|
51
51
|
margin-right: 16px;
|
52
52
|
margin-top: 5px;
|
53
53
|
width: 36px;
|
54
54
|
height: 36px;
|
55
55
|
}
|
56
56
|
}
|
57
|
-
.clear-message[data-v-
|
57
|
+
.clear-message[data-v-ddpd9sib] {
|
58
58
|
color: #3a84ff;
|
59
59
|
cursor: pointer;
|
60
60
|
}
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import script from './token-expired-message.script.vue.js';
|
2
|
-
script.__scopeId = "data-v-
|
2
|
+
script.__scopeId = "data-v-ddpd9sib";
|
3
3
|
script.__file = "./src/component/render-message/token-expired-message.vue";
|
4
4
|
import './token-expired-message.vue.css';
|
5
5
|
export default script;
|
@@ -1,23 +1,23 @@
|
|
1
1
|
|
2
|
-
.user-message-home[data-v-
|
2
|
+
.user-message-home[data-v-qci4cion] {
|
3
3
|
align-items: flex-start;
|
4
4
|
justify-content: flex-end;
|
5
5
|
}
|
6
6
|
.user-message-extra {
|
7
|
-
&[data-v-
|
7
|
+
&[data-v-qci4cion] {
|
8
8
|
padding: 0 52px;
|
9
9
|
}
|
10
|
-
&[data-v-
|
10
|
+
&[data-v-qci4cion]:after {
|
11
11
|
content: '';
|
12
12
|
display: table;
|
13
13
|
clear: both;
|
14
14
|
}
|
15
|
-
.ai-ui-sdk-icon[data-v-
|
15
|
+
.ai-ui-sdk-icon[data-v-qci4cion] {
|
16
16
|
font-size: 14px;
|
17
17
|
}
|
18
18
|
}
|
19
19
|
.user-content {
|
20
|
-
&[data-v-
|
20
|
+
&[data-v-qci4cion] {
|
21
21
|
flex: 1;
|
22
22
|
max-width: calc(100% - 104px);
|
23
23
|
background: #E1ECFF;
|
@@ -30,7 +30,7 @@
|
|
30
30
|
margin-left: 52px;
|
31
31
|
}
|
32
32
|
.ai-ui-sdk-icon {
|
33
|
-
&[data-v-
|
33
|
+
&[data-v-qci4cion] {
|
34
34
|
width: 28px;
|
35
35
|
height: 28px;
|
36
36
|
background: #FFFFFF;
|
@@ -45,20 +45,20 @@
|
|
45
45
|
margin-right: 8px;
|
46
46
|
margin-top: 8px;
|
47
47
|
}
|
48
|
-
&.hover-show[data-v-
|
48
|
+
&.hover-show[data-v-qci4cion] {
|
49
49
|
display: none;
|
50
50
|
}
|
51
|
-
&.ai-ui-sdk-yinyong-2[data-v-
|
51
|
+
&.ai-ui-sdk-yinyong-2[data-v-qci4cion]:hover, &.ai-ui-sdk-copy[data-v-qci4cion]:hover, &.ai-ui-sdk-baocun[data-v-qci4cion]:hover, &.ai-ui-sdk-delete[data-v-qci4cion]:hover {
|
52
52
|
color: #3A84FF;
|
53
53
|
border-color: #3A84FF;
|
54
54
|
}
|
55
55
|
}
|
56
56
|
&:hover {
|
57
|
-
.hover-show[data-v-
|
57
|
+
.hover-show[data-v-qci4cion] {
|
58
58
|
display: flex;
|
59
59
|
}
|
60
60
|
}
|
61
|
-
&[data-v-
|
61
|
+
&[data-v-qci4cion]::after {
|
62
62
|
position: absolute;
|
63
63
|
content: '';
|
64
64
|
width: 15px;
|
@@ -69,24 +69,24 @@
|
|
69
69
|
background: #E1ECFF;
|
70
70
|
}
|
71
71
|
}
|
72
|
-
.message-tools[data-v-
|
72
|
+
.message-tools[data-v-qci4cion] {
|
73
73
|
justify-content: flex-end;
|
74
74
|
position: absolute;
|
75
75
|
width: 150px;
|
76
76
|
left: -150px;
|
77
77
|
top: 2px;
|
78
78
|
}
|
79
|
-
.message-check[data-v-
|
79
|
+
.message-check[data-v-qci4cion] {
|
80
80
|
position: absolute;
|
81
81
|
top: 0;
|
82
82
|
left: -80px;
|
83
83
|
}
|
84
84
|
.message-photo {
|
85
|
-
&[data-v-
|
85
|
+
&[data-v-qci4cion] {
|
86
86
|
width: 52px;
|
87
87
|
user-select: none;
|
88
88
|
}
|
89
|
-
img[data-v-
|
89
|
+
img[data-v-qci4cion] {
|
90
90
|
margin-left: 16px;
|
91
91
|
margin-top: 5px;
|
92
92
|
width: 36px;
|
@@ -95,6 +95,6 @@ img[data-v-rjzzl2y7] {
|
|
95
95
|
border-radius: 100%;
|
96
96
|
}
|
97
97
|
}
|
98
|
-
.skeleton-message[data-v-
|
98
|
+
.skeleton-message[data-v-qci4cion] {
|
99
99
|
margin-left: 52px;
|
100
100
|
}
|
@@ -1,6 +1,6 @@
|
|
1
1
|
|
2
2
|
.render-stop {
|
3
|
-
&[data-v-
|
3
|
+
&[data-v-gil6t8il] {
|
4
4
|
background: #FFFFFF;
|
5
5
|
border: 1px solid #DCDEE5;
|
6
6
|
border-radius: 2px;
|
@@ -9,7 +9,7 @@
|
|
9
9
|
font-size: 12px;
|
10
10
|
cursor: pointer;
|
11
11
|
}
|
12
|
-
.stop-icon[data-v-
|
12
|
+
.stop-icon[data-v-gil6t8il] {
|
13
13
|
width: 8px;
|
14
14
|
height: 8px;
|
15
15
|
background: #FFDDDD;
|
package/dist/hooks/use-chat.d.ts
CHANGED
@@ -849,6 +849,7 @@ export declare const useChat: ({ handleStart, handleText, handleReferenceDoc, ha
|
|
849
849
|
cite?: string;
|
850
850
|
}, callback?: () => void) => void;
|
851
851
|
deleteChat: (index: number) => void;
|
852
|
+
getAgentInfoApi: () => Promise<import("../types/agent").IAgentInfo>;
|
852
853
|
clearSessionApi: (sessionCode: string) => Promise<unknown>;
|
853
854
|
getSessionsApi: () => Promise<ISession[]>;
|
854
855
|
plusSessionApi: (data: ISession) => Promise<ISession>;
|
package/dist/hooks/use-chat.js
CHANGED
@@ -66,7 +66,7 @@ import { processPromptTemplate, throttle } from '../common/util.js';
|
|
66
66
|
// ai 聊天
|
67
67
|
export const useChat = ({ handleStart, handleText, handleReferenceDoc, handleThink, handleEnd, handleError, requestOptions })=>{
|
68
68
|
// 接口
|
69
|
-
const { clearSession: clearSessionApi, getSessions: getSessionsApi, plusSession: plusSessionApi, modifySession: modifySessionApi, deleteSession: deleteSessionApi, batchDeleteSessions: batchDeleteSessionsApi, getSession: getSessionApi, getSessionContents: getSessionContentsApi, plusSessionContent: plusSessionContentApi, modifySessionContent: modifySessionContentApi, deleteSessionContent: deleteSessionContentApi, batchDeleteSessionContents: batchDeleteSessionContentsApi } = useHttp(requestOptions.url);
|
69
|
+
const { getAgentInfo: getAgentInfoApi, clearSession: clearSessionApi, getSessions: getSessionsApi, plusSession: plusSessionApi, modifySession: modifySessionApi, deleteSession: deleteSessionApi, batchDeleteSessions: batchDeleteSessionsApi, getSession: getSessionApi, getSessionContents: getSessionContentsApi, plusSessionContent: plusSessionContentApi, modifySessionContent: modifySessionContentApi, deleteSessionContent: deleteSessionContentApi, batchDeleteSessionContents: batchDeleteSessionContentsApi } = useHttp(requestOptions.url);
|
70
70
|
const startMessage = '内容正在生成中...';
|
71
71
|
// 聊天上下文
|
72
72
|
const currentSession = ref();
|
@@ -552,6 +552,7 @@ export const useChat = ({ handleStart, handleText, handleReferenceDoc, handleThi
|
|
552
552
|
reGenerateChat,
|
553
553
|
reSendChat,
|
554
554
|
deleteChat,
|
555
|
+
getAgentInfoApi,
|
555
556
|
clearSessionApi,
|
556
557
|
getSessionsApi,
|
557
558
|
plusSessionApi,
|
package/dist/hooks/use-http.d.ts
CHANGED
@@ -1,5 +1,6 @@
|
|
1
1
|
import type { ISession, ISessionContent } from '@/types/session';
|
2
2
|
export declare const useHttp: (apiPrefix: string) => {
|
3
|
+
getAgentInfo: () => Promise<import("@/types/agent").IAgentInfo>;
|
3
4
|
clearSession: (sessionCode: string) => Promise<unknown>;
|
4
5
|
getSessions: () => Promise<ISession[]>;
|
5
6
|
plusSession: (data: ISession) => Promise<ISession>;
|
package/dist/hooks/use-http.js
CHANGED
@@ -1,6 +1,9 @@
|
|
1
1
|
import fetch from '../http/fetch/index.js';
|
2
2
|
import { transferSession2SessionApi, transferSessionApi2Session, transferSessionContent2SessionContentApi, transferSessionContentApi2SessionContent } from '../http/helper/session.js';
|
3
|
+
import { transferAgentInfoApi2AgentInfo } from '../http/helper/agent.js';
|
3
4
|
export const useHttp = (apiPrefix)=>{
|
5
|
+
// 获取 agent 信息
|
6
|
+
const getAgentInfo = ()=>fetch.get(`${apiPrefix}/agent/info/`).then((res)=>transferAgentInfoApi2AgentInfo(res));
|
4
7
|
// 清除聊天上下文
|
5
8
|
const clearSession = (sessionCode)=>fetch.post(`${apiPrefix}/chat_completion/${sessionCode}/clear/`);
|
6
9
|
// 获取会话列表
|
@@ -32,6 +35,7 @@ export const useHttp = (apiPrefix)=>{
|
|
32
35
|
ids
|
33
36
|
});
|
34
37
|
return {
|
38
|
+
getAgentInfo,
|
35
39
|
clearSession,
|
36
40
|
getSessions,
|
37
41
|
plusSession,
|
package/dist/http/fetch/index.js
CHANGED
@@ -90,9 +90,11 @@ const getFetchUrl = (url, method, payload = {})=>{
|
|
90
90
|
// 构造 url 对象
|
91
91
|
const urlObject = new URL(url, baseUrl);
|
92
92
|
// add path
|
93
|
-
|
94
|
-
|
95
|
-
|
93
|
+
if (urlObject.origin === baseUrl) {
|
94
|
+
const configPath = window.SITE_URL || '';
|
95
|
+
const subPath = configPath.endsWith('/') ? configPath.slice(0, -1) : configPath;
|
96
|
+
urlObject.pathname = subPath + urlObject.pathname;
|
97
|
+
}
|
96
98
|
// get 请求需要将参数拼接到url上
|
97
99
|
// if (methodsWithoutData.includes(method)) {
|
98
100
|
// urlObject.search = qs.stringify(payload);
|