yt-chat-components 1.0.0 → 1.0.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/.idea/modules.xml +1 -1
- package/.idea/sonarlint/issuestore/index.pb +3 -31
- package/dist/build/static/js/bundle.min.js +1 -0
- package/package.json +76 -76
- package/public/index.html +108 -108
- package/src/YtChatView/chatWidget/chatWindow/chatMessage/index.tsx +464 -464
- package/src/YtChatView/chatWidget/chatWindow/controllers/index.ts +249 -249
- package/src/YtChatView/chatWidget/chatWindow/index.module.css +196 -196
- package/src/YtChatView/chatWidget/chatWindow/index.tsx +1054 -1041
- package/src/YtChatView/chatWidget/chatWindow/types/chatWidget/index.ts +50 -50
- package/src/YtChatView/chatWidget/index.tsx +2586 -2586
- package/src/YtChatView/logoBtn/index.css +3 -3
- package/src/YtChatView/logoBtn/index.jsx +103 -103
- package/src/YtChatView/logoSplitBtn/index.css +3 -3
- package/src/YtChatView/logoSplitBtn/index.jsx +105 -105
- package/src/YtChatView/mobileChat/index.jsx +944 -848
- package/src/YtChatView/mobileChat/index.module.css +253 -253
- package/src/YtChatView/previewDialog/index.jsx +600 -600
- package/src/YtChatView/previewDialog/index.module.css +253 -253
- package/src/chatWidget/chatWindow/index.tsx +426 -426
- package/src/chatWidget/index.tsx +2193 -2193
- package/src/index.tsx +10 -10
- package/webpack.config.js +50 -50
- package/.idea/sonarlint/issuestore/3/6/364385cedcce4c06de1901392ffeeac0caef0f3c +0 -0
- package/.idea/sonarlint/issuestore/3/9/39129446b425a1d640160c068e4194e96639eedf +0 -0
- package/.idea/sonarlint/issuestore/4/a/4a2f33951ce07c1ff7184f91877aa13db05d3785 +0 -0
- package/.idea/sonarlint/issuestore/4/a/4a7b99bdbee5792679d347b6474463bf5e14b66d +0 -0
- package/.idea/sonarlint/issuestore/4/b/4b015aa5428c4d4c3d672893ec23f5fe3969f9be +0 -0
- package/.idea/sonarlint/issuestore/4/b/4b6989b8ccae808ebc45d02230d336ea53800365 +0 -0
- package/.idea/sonarlint/issuestore/6/1/61ebb9fd6e8cf9082658121d5d81e297791dacd0 +0 -0
- package/.idea/sonarlint/issuestore/6/c/6c024c1d0ad64656b9d4b0695ec3c49c0454addf +0 -0
- package/.idea/sonarlint/issuestore/6/e/6e75fc1c07c3a427a86fc213ca9479caaaff00ea +0 -0
- package/.idea/sonarlint/issuestore/8/d/8d6123af13a140f93e06299fff7ea23c547e9ec8 +0 -0
- package/.idea/sonarlint/issuestore/c/c/cc2352788140b6778ac06df4b33f50b390d2d8be +0 -0
- package/.idea/sonarlint/issuestore/d/5/d5595158cc48f9bf3e51b06f6e6805a8fd2d6262 +0 -0
- package/.idea/sonarlint/issuestore/d/7/d747cbed4201192dfa83a1a51345b020a050b647 +0 -0
- package/.idea/sonarlint/issuestore/d/9/d938938695d447dadda115e28781c6541f53fc4f +0 -0
- package/build/static/js/bundle.min.js +0 -2
- package/build/static/js/bundle.min.js.LICENSE.txt +0 -132
- /package/.idea/{langflow-embedded-chat.iml → langflow-embedded-chat-clone.iml} +0 -0
- /package/.idea/sonarlint/issuestore/{0/f/0f8c0c92cf798431ebb931ff6e997b1af86ecee5 → 7/0/7030d0b2f71b999ff89a343de08c414af32fc93a} +0 -0
- /package/.idea/sonarlint/issuestore/{2/7/27e69cb561aeea20c1afbdd32d260dd60b89a81b → 9/c/9cfff9a6d27bd6c255aa751213163c7901fb8ce7} +0 -0
package/package.json
CHANGED
|
@@ -1,76 +1,76 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "yt-chat-components",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"main": "build/static/js/bundle.min.js",
|
|
5
|
-
"module": "build/static/js/bundle.min.js",
|
|
6
|
-
"types": "build/static/js/index.d.ts",
|
|
7
|
-
"peerDependencies": {
|
|
8
|
-
"react": "^17.0.0 || ^18.0.0",
|
|
9
|
-
"react-dom": "^17.0.0 || ^18.0.0"
|
|
10
|
-
},
|
|
11
|
-
"dependencies": {
|
|
12
|
-
"@ant-design/icons": "5.0.0",
|
|
13
|
-
"@testing-library/jest-dom": "^5.16.5",
|
|
14
|
-
"@testing-library/react": "^13.4.0",
|
|
15
|
-
"@testing-library/user-event": "^13.5.0",
|
|
16
|
-
"@types/jest": "^27.5.2",
|
|
17
|
-
"@types/node": "^16.18.37",
|
|
18
|
-
"@types/react": "^18.2.14",
|
|
19
|
-
"@types/react-dom": "^18.2.6",
|
|
20
|
-
"antd": "5.24.2",
|
|
21
|
-
"axios": "^1.4.0",
|
|
22
|
-
"lodash": "^4.17.21",
|
|
23
|
-
"lucide-react": "^0.256.0",
|
|
24
|
-
"react": "^17.0.0 || ^18.0.0",
|
|
25
|
-
"react-dom": "^17.0.0 || ^18.0.0",
|
|
26
|
-
"react-markdown": "^8.0.7",
|
|
27
|
-
"react-scripts": "5.0.1",
|
|
28
|
-
"react-shadow": "^20.3.0",
|
|
29
|
-
"rehype-mathjax": "^4.0.3",
|
|
30
|
-
"remark-gfm": "3.0.1",
|
|
31
|
-
"typescript": "^4.9.5",
|
|
32
|
-
"uglifyjs-webpack-plugin": "^2.2.0",
|
|
33
|
-
"uuid": "^10.0.0",
|
|
34
|
-
"web-vitals": "^2.1.4"
|
|
35
|
-
},
|
|
36
|
-
"scripts": {
|
|
37
|
-
"start": "react-scripts start",
|
|
38
|
-
"build": "npm install --legacy-peer-deps && npm run build:react && npm run build:bundle",
|
|
39
|
-
"build:react": "react-scripts build",
|
|
40
|
-
"build:bundle": "webpack --config webpack.config.js",
|
|
41
|
-
"test": "react-scripts test",
|
|
42
|
-
"eject": "react-scripts eject"
|
|
43
|
-
},
|
|
44
|
-
"eslintConfig": {
|
|
45
|
-
"extends": [
|
|
46
|
-
"react-app",
|
|
47
|
-
"react-app/jest"
|
|
48
|
-
]
|
|
49
|
-
},
|
|
50
|
-
"browserslist": {
|
|
51
|
-
"production": [
|
|
52
|
-
">0.2%",
|
|
53
|
-
"not dead",
|
|
54
|
-
"not op_mini all"
|
|
55
|
-
],
|
|
56
|
-
"development": [
|
|
57
|
-
"last 1 chrome version",
|
|
58
|
-
"last 1 firefox version",
|
|
59
|
-
"last 1 safari version"
|
|
60
|
-
]
|
|
61
|
-
},
|
|
62
|
-
"devDependencies": {
|
|
63
|
-
"@babel/core": "^7.26.10",
|
|
64
|
-
"@babel/preset-env": "^7.26.9",
|
|
65
|
-
"@babel/preset-react": "^7.26.3",
|
|
66
|
-
"@babel/preset-typescript": "^7.26.0",
|
|
67
|
-
"babel-loader": "^10.0.0",
|
|
68
|
-
"css-loader": "^7.1.2",
|
|
69
|
-
"file-loader": "^6.2.0",
|
|
70
|
-
"mini-css-extract-plugin": "^2.9.2",
|
|
71
|
-
"style-loader": "^4.0.0",
|
|
72
|
-
"url-loader": "^4.1.1",
|
|
73
|
-
"webpack": "^5.98.0",
|
|
74
|
-
"webpack-cli": "^5.1.4"
|
|
75
|
-
}
|
|
76
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "yt-chat-components",
|
|
3
|
+
"version": "1.0.2",
|
|
4
|
+
"main": "build/static/js/bundle.min.js",
|
|
5
|
+
"module": "build/static/js/bundle.min.js",
|
|
6
|
+
"types": "build/static/js/index.d.ts",
|
|
7
|
+
"peerDependencies": {
|
|
8
|
+
"react": "^17.0.0 || ^18.0.0",
|
|
9
|
+
"react-dom": "^17.0.0 || ^18.0.0"
|
|
10
|
+
},
|
|
11
|
+
"dependencies": {
|
|
12
|
+
"@ant-design/icons": "5.0.0",
|
|
13
|
+
"@testing-library/jest-dom": "^5.16.5",
|
|
14
|
+
"@testing-library/react": "^13.4.0",
|
|
15
|
+
"@testing-library/user-event": "^13.5.0",
|
|
16
|
+
"@types/jest": "^27.5.2",
|
|
17
|
+
"@types/node": "^16.18.37",
|
|
18
|
+
"@types/react": "^18.2.14",
|
|
19
|
+
"@types/react-dom": "^18.2.6",
|
|
20
|
+
"antd": "5.24.2",
|
|
21
|
+
"axios": "^1.4.0",
|
|
22
|
+
"lodash": "^4.17.21",
|
|
23
|
+
"lucide-react": "^0.256.0",
|
|
24
|
+
"react": "^17.0.0 || ^18.0.0",
|
|
25
|
+
"react-dom": "^17.0.0 || ^18.0.0",
|
|
26
|
+
"react-markdown": "^8.0.7",
|
|
27
|
+
"react-scripts": "5.0.1",
|
|
28
|
+
"react-shadow": "^20.3.0",
|
|
29
|
+
"rehype-mathjax": "^4.0.3",
|
|
30
|
+
"remark-gfm": "3.0.1",
|
|
31
|
+
"typescript": "^4.9.5",
|
|
32
|
+
"uglifyjs-webpack-plugin": "^2.2.0",
|
|
33
|
+
"uuid": "^10.0.0",
|
|
34
|
+
"web-vitals": "^2.1.4"
|
|
35
|
+
},
|
|
36
|
+
"scripts": {
|
|
37
|
+
"start": "react-scripts start",
|
|
38
|
+
"build": "npm install --legacy-peer-deps && npm run build:react && npm run build:bundle",
|
|
39
|
+
"build:react": "react-scripts build",
|
|
40
|
+
"build:bundle": "webpack --config webpack.config.js",
|
|
41
|
+
"test": "react-scripts test",
|
|
42
|
+
"eject": "react-scripts eject"
|
|
43
|
+
},
|
|
44
|
+
"eslintConfig": {
|
|
45
|
+
"extends": [
|
|
46
|
+
"react-app",
|
|
47
|
+
"react-app/jest"
|
|
48
|
+
]
|
|
49
|
+
},
|
|
50
|
+
"browserslist": {
|
|
51
|
+
"production": [
|
|
52
|
+
">0.2%",
|
|
53
|
+
"not dead",
|
|
54
|
+
"not op_mini all"
|
|
55
|
+
],
|
|
56
|
+
"development": [
|
|
57
|
+
"last 1 chrome version",
|
|
58
|
+
"last 1 firefox version",
|
|
59
|
+
"last 1 safari version"
|
|
60
|
+
]
|
|
61
|
+
},
|
|
62
|
+
"devDependencies": {
|
|
63
|
+
"@babel/core": "^7.26.10",
|
|
64
|
+
"@babel/preset-env": "^7.26.9",
|
|
65
|
+
"@babel/preset-react": "^7.26.3",
|
|
66
|
+
"@babel/preset-typescript": "^7.26.0",
|
|
67
|
+
"babel-loader": "^10.0.0",
|
|
68
|
+
"css-loader": "^7.1.2",
|
|
69
|
+
"file-loader": "^6.2.0",
|
|
70
|
+
"mini-css-extract-plugin": "^2.9.2",
|
|
71
|
+
"style-loader": "^4.0.0",
|
|
72
|
+
"url-loader": "^4.1.1",
|
|
73
|
+
"webpack": "^5.98.0",
|
|
74
|
+
"webpack-cli": "^5.1.4"
|
|
75
|
+
}
|
|
76
|
+
}
|
package/public/index.html
CHANGED
|
@@ -1,108 +1,108 @@
|
|
|
1
|
-
<!DOCTYPE html>
|
|
2
|
-
<html lang="en">
|
|
3
|
-
<head>
|
|
4
|
-
<meta charset="UTF-8">
|
|
5
|
-
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
|
-
<title>校园智多星</title>
|
|
7
|
-
<script type="text/javascript" src="https://res.wx.qq.com/open/js/jweixin-1.6.0.js"></script>
|
|
8
|
-
</head>
|
|
9
|
-
<body style="width: 100vw; height: 100vh; position: relative; margin: unset ">
|
|
10
|
-
<yt-chat
|
|
11
|
-
right="100"
|
|
12
|
-
bottom="100"
|
|
13
|
-
width="50"
|
|
14
|
-
height="50"
|
|
15
|
-
title="菜鸟驿站"
|
|
16
|
-
icon-url="https://trans-from-yuntu-resourse.oss-cn-beijing.aliyuncs.com/smartSchool/appCreator/school/ccit/user/xc//image/ebfaf4da-c1d9-46fb-a0b1-f159e95cffc2_AI招生咨询小助手.png"
|
|
17
|
-
host-url="https://ai-api.yuntu.cn"
|
|
18
|
-
user-info='{"id": "123", "name": "John Doe", "code":"1606451129" }'
|
|
19
|
-
app-id="0b4cc8ef-d5bb-45e6-b342-647765f5d195"
|
|
20
|
-
is-show-side-left=true
|
|
21
|
-
is-show-side-right=false
|
|
22
|
-
modal-index="9999999999"
|
|
23
|
-
modal-width="1200"
|
|
24
|
-
dialog-index="999999999"
|
|
25
|
-
agent-url="https://trans-from-yuntu-resourse.oss-cn-beijing.aliyuncs.com/smartSchool/appCreator/school/ccit/user/xc//image/ebfaf4da-c1d9-46fb-a0b1-f159e95cffc2_AI招生咨询小助手.png"
|
|
26
|
-
agent-name="医专智能助手"
|
|
27
|
-
logo-width="42px"
|
|
28
|
-
logo-font-size="26px"
|
|
29
|
-
logo-position="fixed"
|
|
30
|
-
is-title-side-icon=false
|
|
31
|
-
is-show-upload-button=true
|
|
32
|
-
/>
|
|
33
|
-
</body>
|
|
34
|
-
|
|
35
|
-
<!--<body style="width: 100vw; height: 100vh; margin:0 ">-->
|
|
36
|
-
<!--<yt-page-chat-->
|
|
37
|
-
<!-- title="菜鸟驿站"-->
|
|
38
|
-
<!-- host-url="https://ai-api.yuntu.cn"-->
|
|
39
|
-
<!-- app-id="a8e7ebd8-9bf7-499b-9e4a-c235078a0910"-->
|
|
40
|
-
<!-- user-info='{"id": "123", "name": "John Doe", "code":"1606451129" }'-->
|
|
41
|
-
<!-- tags='[{"name":"今天天气怎么样?"},{"name":"明天天气怎么样?"},{"name":"昨天天气怎么样?"}]'-->
|
|
42
|
-
<!-- box-style='{"height":"100%"}'-->
|
|
43
|
-
<!-- scene-id="c1e7a2a4-6127-4e53-a529-113da78eb069"-->
|
|
44
|
-
<!-- is-show-side-right=true-->
|
|
45
|
-
<!-- is-show-side-left=true-->
|
|
46
|
-
<!-- dialog-index="999999999"-->
|
|
47
|
-
<!-- agent-url="https://trans-from-yuntu-resourse.oss-cn-beijing.aliyuncs.com/smartSchool/appCreator/school/ccit/user/xc//image/ebfaf4da-c1d9-46fb-a0b1-f159e95cffc2_AI招生咨询小助手.png"-->
|
|
48
|
-
<!-- agent-name="医专智能助手"-->
|
|
49
|
-
<!-- logo-width="42px"-->
|
|
50
|
-
<!-- logo-font-size="26px"-->
|
|
51
|
-
<!-- is-title-side-icon=true-->
|
|
52
|
-
<!-- is-show-upload-button=false-->
|
|
53
|
-
<!-- drop-man-url="https://trans-from-yuntu-resourse.oss-cn-beijing.aliyuncs.com/smartSchool/appCreator/ai/ai_man01.png"-->
|
|
54
|
-
<!--/>-->
|
|
55
|
-
<!--</body>-->
|
|
56
|
-
|
|
57
|
-
<!--<body style="width: 100vw; height: 100vh; position: relative; margin: unset ">-->
|
|
58
|
-
<!--<yt-split-modal-chat-->
|
|
59
|
-
<!-- right="100"-->
|
|
60
|
-
<!-- bottom="100"-->
|
|
61
|
-
<!-- width="50"-->
|
|
62
|
-
<!-- height="50"-->
|
|
63
|
-
<!-- title="招生助手"-->
|
|
64
|
-
<!-- icon-url="https://trans-from-yuntu-resourse.oss-cn-beijing.aliyuncs.com/smartSchool/appCreator/school/ccit/user/xc//image/ebfaf4da-c1d9-46fb-a0b1-f159e95cffc2_AI招生咨询小助手.png"-->
|
|
65
|
-
<!-- host-url="https://ai-api.yuntu.cn"-->
|
|
66
|
-
<!-- user-info='{"id": "test", "name": "test", "code":"test" }'-->
|
|
67
|
-
<!-- is-show-side-right=true-->
|
|
68
|
-
<!-- is-show-side-left=true-->
|
|
69
|
-
<!-- scene-id="c1e7a2a4-6127-4e53-a529-113da78eb069"-->
|
|
70
|
-
<!-- modal-index="9999999999"-->
|
|
71
|
-
<!-- modal-width="1300"-->
|
|
72
|
-
<!-- dialog-index="999999999"-->
|
|
73
|
-
<!-- agent-url="https://trans-from-yuntu-resourse.oss-cn-beijing.aliyuncs.com/smartSchool/appCreator/school/bcyz/user/ai/agent.png"-->
|
|
74
|
-
<!-- agent-name="医专智能助手"-->
|
|
75
|
-
<!-- logo-width="42px"-->
|
|
76
|
-
<!-- logo-font-size="26px"-->
|
|
77
|
-
<!-- logo-position="fixed"-->
|
|
78
|
-
<!-- is-title-side-icon=false-->
|
|
79
|
-
<!-- is-show-upload-button=false-->
|
|
80
|
-
<!--/>-->
|
|
81
|
-
<!--</body>-->
|
|
82
|
-
|
|
83
|
-
<!--fd432d45-51fa-47cb-9ca9-a545385c618c de12e244-d603-4651-999f-25e22bdceeeb-->
|
|
84
|
-
<!--校园智多星sceneId=de12e244-d603-4651-999f-25e22bdceeeb appId=-->
|
|
85
|
-
<!--<body style="width: 100vw; height: 100vh; margin:0 ">-->
|
|
86
|
-
<!--<yt-page-chat-mobile-->
|
|
87
|
-
<!-- title="移动聊天"-->
|
|
88
|
-
<!-- host-url="https://ai-api.yuntu.cn"-->
|
|
89
|
-
<!-- app-id="a8e7ebd8-9bf7-499b-9e4a-c235078a0910"-->
|
|
90
|
-
<!-- user-info='{"id": "123", "name": "测试校长", "code":"1606451129" }'-->
|
|
91
|
-
<!-- tags='[{"name":"今天天气怎么样?"},{"name":"明天天气怎么样?"},{"name":"昨天天气怎么样?"}]'-->
|
|
92
|
-
<!-- box-style='{"height":"100%"}'-->
|
|
93
|
-
<!-- scene-id="de12e244-d603-4651-999f-25e22bdceeeb"-->
|
|
94
|
-
<!-- is-show-side-right=true-->
|
|
95
|
-
<!-- is-show-side-left=true-->
|
|
96
|
-
<!-- is-show-login=true-->
|
|
97
|
-
<!-- is-login=true-->
|
|
98
|
-
<!-- dialog-index="999999999"-->
|
|
99
|
-
<!-- agent-url="https://trans-from-yuntu-resourse.oss-cn-beijing.aliyuncs.com/smartSchool/appCreator/school/ccit/user/xc//image/ebfaf4da-c1d9-46fb-a0b1-f159e95cffc2_AI招生咨询小助手.png"-->
|
|
100
|
-
<!-- agent-name="校园智多星"-->
|
|
101
|
-
<!-- logo-width="42px"-->
|
|
102
|
-
<!-- logo-font-size="26px"-->
|
|
103
|
-
<!-- is-title-side-icon=true-->
|
|
104
|
-
<!-- is-show-upload-button=false-->
|
|
105
|
-
<!-- drop-man-url="https://trans-from-yuntu-resourse.oss-cn-beijing.aliyuncs.com/smartSchool/appCreator/ai/ai_man01.png"-->
|
|
106
|
-
<!--/>-->
|
|
107
|
-
<!--</body>-->
|
|
108
|
-
</html>
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8">
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
|
+
<title>校园智多星</title>
|
|
7
|
+
<script type="text/javascript" src="https://res.wx.qq.com/open/js/jweixin-1.6.0.js"></script>
|
|
8
|
+
</head>
|
|
9
|
+
<body style="width: 100vw; height: 100vh; position: relative; margin: unset ">
|
|
10
|
+
<yt-chat
|
|
11
|
+
right="100"
|
|
12
|
+
bottom="100"
|
|
13
|
+
width="50"
|
|
14
|
+
height="50"
|
|
15
|
+
title="菜鸟驿站"
|
|
16
|
+
icon-url="https://trans-from-yuntu-resourse.oss-cn-beijing.aliyuncs.com/smartSchool/appCreator/school/ccit/user/xc//image/ebfaf4da-c1d9-46fb-a0b1-f159e95cffc2_AI招生咨询小助手.png"
|
|
17
|
+
host-url="https://ai-api.yuntu.cn"
|
|
18
|
+
user-info='{"id": "123", "name": "John Doe", "code":"1606451129" }'
|
|
19
|
+
app-id="0b4cc8ef-d5bb-45e6-b342-647765f5d195"
|
|
20
|
+
is-show-side-left=true
|
|
21
|
+
is-show-side-right=false
|
|
22
|
+
modal-index="9999999999"
|
|
23
|
+
modal-width="1200"
|
|
24
|
+
dialog-index="999999999"
|
|
25
|
+
agent-url="https://trans-from-yuntu-resourse.oss-cn-beijing.aliyuncs.com/smartSchool/appCreator/school/ccit/user/xc//image/ebfaf4da-c1d9-46fb-a0b1-f159e95cffc2_AI招生咨询小助手.png"
|
|
26
|
+
agent-name="医专智能助手"
|
|
27
|
+
logo-width="42px"
|
|
28
|
+
logo-font-size="26px"
|
|
29
|
+
logo-position="fixed"
|
|
30
|
+
is-title-side-icon=false
|
|
31
|
+
is-show-upload-button=true
|
|
32
|
+
/>
|
|
33
|
+
</body>
|
|
34
|
+
|
|
35
|
+
<!--<body style="width: 100vw; height: 100vh; margin:0 ">-->
|
|
36
|
+
<!--<yt-page-chat-->
|
|
37
|
+
<!-- title="菜鸟驿站"-->
|
|
38
|
+
<!-- host-url="https://ai-api.yuntu.cn"-->
|
|
39
|
+
<!-- app-id="a8e7ebd8-9bf7-499b-9e4a-c235078a0910"-->
|
|
40
|
+
<!-- user-info='{"id": "123", "name": "John Doe", "code":"1606451129" }'-->
|
|
41
|
+
<!-- tags='[{"name":"今天天气怎么样?"},{"name":"明天天气怎么样?"},{"name":"昨天天气怎么样?"}]'-->
|
|
42
|
+
<!-- box-style='{"height":"100%"}'-->
|
|
43
|
+
<!-- scene-id="c1e7a2a4-6127-4e53-a529-113da78eb069"-->
|
|
44
|
+
<!-- is-show-side-right=true-->
|
|
45
|
+
<!-- is-show-side-left=true-->
|
|
46
|
+
<!-- dialog-index="999999999"-->
|
|
47
|
+
<!-- agent-url="https://trans-from-yuntu-resourse.oss-cn-beijing.aliyuncs.com/smartSchool/appCreator/school/ccit/user/xc//image/ebfaf4da-c1d9-46fb-a0b1-f159e95cffc2_AI招生咨询小助手.png"-->
|
|
48
|
+
<!-- agent-name="医专智能助手"-->
|
|
49
|
+
<!-- logo-width="42px"-->
|
|
50
|
+
<!-- logo-font-size="26px"-->
|
|
51
|
+
<!-- is-title-side-icon=true-->
|
|
52
|
+
<!-- is-show-upload-button=false-->
|
|
53
|
+
<!-- drop-man-url="https://trans-from-yuntu-resourse.oss-cn-beijing.aliyuncs.com/smartSchool/appCreator/ai/ai_man01.png"-->
|
|
54
|
+
<!--/>-->
|
|
55
|
+
<!--</body>-->
|
|
56
|
+
|
|
57
|
+
<!--<body style="width: 100vw; height: 100vh; position: relative; margin: unset ">-->
|
|
58
|
+
<!--<yt-split-modal-chat-->
|
|
59
|
+
<!-- right="100"-->
|
|
60
|
+
<!-- bottom="100"-->
|
|
61
|
+
<!-- width="50"-->
|
|
62
|
+
<!-- height="50"-->
|
|
63
|
+
<!-- title="招生助手"-->
|
|
64
|
+
<!-- icon-url="https://trans-from-yuntu-resourse.oss-cn-beijing.aliyuncs.com/smartSchool/appCreator/school/ccit/user/xc//image/ebfaf4da-c1d9-46fb-a0b1-f159e95cffc2_AI招生咨询小助手.png"-->
|
|
65
|
+
<!-- host-url="https://ai-api.yuntu.cn"-->
|
|
66
|
+
<!-- user-info='{"id": "test", "name": "test", "code":"test" }'-->
|
|
67
|
+
<!-- is-show-side-right=true-->
|
|
68
|
+
<!-- is-show-side-left=true-->
|
|
69
|
+
<!-- scene-id="c1e7a2a4-6127-4e53-a529-113da78eb069"-->
|
|
70
|
+
<!-- modal-index="9999999999"-->
|
|
71
|
+
<!-- modal-width="1300"-->
|
|
72
|
+
<!-- dialog-index="999999999"-->
|
|
73
|
+
<!-- agent-url="https://trans-from-yuntu-resourse.oss-cn-beijing.aliyuncs.com/smartSchool/appCreator/school/bcyz/user/ai/agent.png"-->
|
|
74
|
+
<!-- agent-name="医专智能助手"-->
|
|
75
|
+
<!-- logo-width="42px"-->
|
|
76
|
+
<!-- logo-font-size="26px"-->
|
|
77
|
+
<!-- logo-position="fixed"-->
|
|
78
|
+
<!-- is-title-side-icon=false-->
|
|
79
|
+
<!-- is-show-upload-button=false-->
|
|
80
|
+
<!--/>-->
|
|
81
|
+
<!--</body>-->
|
|
82
|
+
|
|
83
|
+
<!--fd432d45-51fa-47cb-9ca9-a545385c618c de12e244-d603-4651-999f-25e22bdceeeb-->
|
|
84
|
+
<!--校园智多星sceneId=de12e244-d603-4651-999f-25e22bdceeeb appId=-->
|
|
85
|
+
<!--<body style="width: 100vw; height: 100vh; margin:0 ">-->
|
|
86
|
+
<!--<yt-page-chat-mobile-->
|
|
87
|
+
<!-- title="移动聊天"-->
|
|
88
|
+
<!-- host-url="https://ai-api.yuntu.cn"-->
|
|
89
|
+
<!-- app-id="a8e7ebd8-9bf7-499b-9e4a-c235078a0910"-->
|
|
90
|
+
<!-- user-info='{"id": "123", "name": "测试校长", "code":"1606451129" }'-->
|
|
91
|
+
<!-- tags='[{"name":"今天天气怎么样?"},{"name":"明天天气怎么样?"},{"name":"昨天天气怎么样?"}]'-->
|
|
92
|
+
<!-- box-style='{"height":"100%"}'-->
|
|
93
|
+
<!-- scene-id="de12e244-d603-4651-999f-25e22bdceeeb"-->
|
|
94
|
+
<!-- is-show-side-right=true-->
|
|
95
|
+
<!-- is-show-side-left=true-->
|
|
96
|
+
<!-- is-show-login=true-->
|
|
97
|
+
<!-- is-login=true-->
|
|
98
|
+
<!-- dialog-index="999999999"-->
|
|
99
|
+
<!-- agent-url="https://trans-from-yuntu-resourse.oss-cn-beijing.aliyuncs.com/smartSchool/appCreator/school/ccit/user/xc//image/ebfaf4da-c1d9-46fb-a0b1-f159e95cffc2_AI招生咨询小助手.png"-->
|
|
100
|
+
<!-- agent-name="校园智多星"-->
|
|
101
|
+
<!-- logo-width="42px"-->
|
|
102
|
+
<!-- logo-font-size="26px"-->
|
|
103
|
+
<!-- is-title-side-icon=true-->
|
|
104
|
+
<!-- is-show-upload-button=false-->
|
|
105
|
+
<!-- drop-man-url="https://trans-from-yuntu-resourse.oss-cn-beijing.aliyuncs.com/smartSchool/appCreator/ai/ai_man01.png"-->
|
|
106
|
+
<!--/>-->
|
|
107
|
+
<!--</body>-->
|
|
108
|
+
</html>
|