@gientech/modual 1.2.9 → 1.3.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/dist/assets/index-Bpnc4tRH.js +1284 -0
- package/dist/assets/style.css +1 -1
- package/dist/assets/style3.css +1 -1
- package/dist/chat.js +85 -79
- package/dist/databaseId.js +1 -1
- package/dist/package.json +1 -1
- package/dist/streamFilesReader.js +2 -2
- package/package.json +100 -99
- package/src/examples/chat/components/DrawerGraphPreview.tsx +77 -0
- package/src/examples/chat/index.tsx +126 -87
- package/src/modules/chat/index.tsx +1 -2
- package/src/modules/nodegraph/index.tsx +1 -0
- package/src/utils/testconfigs/index.ts +1 -1
- package/stats.html +1 -1
- package/vite.config.ts +0 -1
- package/dist/assets/index-97TKgPKE.js +0 -1284
|
@@ -5,7 +5,6 @@ import {ChatMessageAdapter} from '@mxmweb/rtext'
|
|
|
5
5
|
import { message } from 'antd';
|
|
6
6
|
import { uid } from 'uid';
|
|
7
7
|
import { History } from 'lucide-react';
|
|
8
|
-
|
|
9
8
|
import '@mxmweb/rtext/style.css';
|
|
10
9
|
import '@mxmweb/aichat/style.css';
|
|
11
10
|
import '@mxmweb/zui/style.css';
|
|
@@ -1811,7 +1810,7 @@ export default function withGientechChatAdopter(WrappedComponent = AiChat) {
|
|
|
1811
1810
|
fileUploadStatus={fileStatuses}
|
|
1812
1811
|
CustomComponents={mergedCustomComponents}
|
|
1813
1812
|
activeSessionId={activeSessionId}
|
|
1814
|
-
scrollOld={true}
|
|
1813
|
+
// scrollOld={true}
|
|
1815
1814
|
/>
|
|
1816
1815
|
<FeedBackModal
|
|
1817
1816
|
open={openFeed}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import { AiChat, type AppStatusManager } from '@mxmweb/aichat';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
const token =
|
|
2
|
-
'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.
|
|
2
|
+
'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJHSUVOLVJBRyIsImF1ZCI6ImFkbWluIiwidXNlcklkIjoxMDAwLCJ1c2VyTmFtZSI6ImFkbWluIiwic3ViIjoibWl4ZWRRdWFudHVtIiwiZXhwIjoxNzYxMzUzMzg0LCJpYXQiOjE3NjEyNjY5ODR9.GCCoSkpPUQwOdTPXtjaOTUzrYSaeu8M8tH_GtSs8rsg'
|
|
3
3
|
export const rag_dev_server = {
|
|
4
4
|
token,
|
|
5
5
|
|