├── .gitignore ├── LICENSE ├── README.md ├── chat2knowl-client ├── .gitignore ├── README.md ├── babel.config.js ├── jsconfig.json ├── package-lock.json ├── package.json ├── public │ ├── chat2KnowL.pdf │ ├── favicon.ico │ └── index.html ├── src │ ├── App.vue │ ├── assets │ │ ├── iconfont │ │ │ ├── demo.css │ │ │ ├── demo_index.html │ │ │ ├── iconfont.css │ │ │ ├── iconfont.js │ │ │ ├── iconfont.json │ │ │ ├── iconfont.ttf │ │ │ ├── iconfont.woff │ │ │ └── iconfont.woff2 │ │ ├── logo.png │ │ └── service │ │ │ ├── mp-photo.jpg │ │ │ ├── mp-qrcode.jpg │ │ │ └── weixin.png │ ├── components │ │ ├── Chat │ │ │ ├── ChatArea.vue │ │ │ ├── ChatDialogueArea.vue │ │ │ └── ChatFileArea.vue │ │ └── PDFViewer │ │ │ ├── PDFViewer.vue │ │ │ └── viewer.properties │ ├── main.ts │ ├── router │ │ └── index.ts │ ├── shims-vue.d.ts │ ├── style │ │ └── index.css │ ├── utils │ │ └── draggable.ts │ └── views │ │ ├── ChatView.vue │ │ └── HomeView.vue ├── tsconfig.json ├── vue.config.js └── yarn.lock ├── chat2knowl-server ├── Chat2KnowL.Console │ ├── Chat2KnowL.Console.csproj │ ├── Program.cs │ └── QwenServiceCollectionExtensions.cs └── Chat2KnowL.sln └── qwen └── openai_api.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bianchenglequ/chat2KnowL/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bianchenglequ/chat2KnowL/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bianchenglequ/chat2KnowL/HEAD/README.md -------------------------------------------------------------------------------- /chat2knowl-client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bianchenglequ/chat2KnowL/HEAD/chat2knowl-client/.gitignore -------------------------------------------------------------------------------- /chat2knowl-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bianchenglequ/chat2KnowL/HEAD/chat2knowl-client/README.md -------------------------------------------------------------------------------- /chat2knowl-client/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bianchenglequ/chat2KnowL/HEAD/chat2knowl-client/babel.config.js -------------------------------------------------------------------------------- /chat2knowl-client/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bianchenglequ/chat2KnowL/HEAD/chat2knowl-client/jsconfig.json -------------------------------------------------------------------------------- /chat2knowl-client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bianchenglequ/chat2KnowL/HEAD/chat2knowl-client/package-lock.json -------------------------------------------------------------------------------- /chat2knowl-client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bianchenglequ/chat2KnowL/HEAD/chat2knowl-client/package.json -------------------------------------------------------------------------------- /chat2knowl-client/public/chat2KnowL.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bianchenglequ/chat2KnowL/HEAD/chat2knowl-client/public/chat2KnowL.pdf -------------------------------------------------------------------------------- /chat2knowl-client/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bianchenglequ/chat2KnowL/HEAD/chat2knowl-client/public/favicon.ico -------------------------------------------------------------------------------- /chat2knowl-client/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bianchenglequ/chat2KnowL/HEAD/chat2knowl-client/public/index.html -------------------------------------------------------------------------------- /chat2knowl-client/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bianchenglequ/chat2KnowL/HEAD/chat2knowl-client/src/App.vue -------------------------------------------------------------------------------- /chat2knowl-client/src/assets/iconfont/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bianchenglequ/chat2KnowL/HEAD/chat2knowl-client/src/assets/iconfont/demo.css -------------------------------------------------------------------------------- /chat2knowl-client/src/assets/iconfont/demo_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bianchenglequ/chat2KnowL/HEAD/chat2knowl-client/src/assets/iconfont/demo_index.html -------------------------------------------------------------------------------- /chat2knowl-client/src/assets/iconfont/iconfont.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bianchenglequ/chat2KnowL/HEAD/chat2knowl-client/src/assets/iconfont/iconfont.css -------------------------------------------------------------------------------- /chat2knowl-client/src/assets/iconfont/iconfont.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bianchenglequ/chat2KnowL/HEAD/chat2knowl-client/src/assets/iconfont/iconfont.js -------------------------------------------------------------------------------- /chat2knowl-client/src/assets/iconfont/iconfont.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bianchenglequ/chat2KnowL/HEAD/chat2knowl-client/src/assets/iconfont/iconfont.json -------------------------------------------------------------------------------- /chat2knowl-client/src/assets/iconfont/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bianchenglequ/chat2KnowL/HEAD/chat2knowl-client/src/assets/iconfont/iconfont.ttf -------------------------------------------------------------------------------- /chat2knowl-client/src/assets/iconfont/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bianchenglequ/chat2KnowL/HEAD/chat2knowl-client/src/assets/iconfont/iconfont.woff -------------------------------------------------------------------------------- /chat2knowl-client/src/assets/iconfont/iconfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bianchenglequ/chat2KnowL/HEAD/chat2knowl-client/src/assets/iconfont/iconfont.woff2 -------------------------------------------------------------------------------- /chat2knowl-client/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bianchenglequ/chat2KnowL/HEAD/chat2knowl-client/src/assets/logo.png -------------------------------------------------------------------------------- /chat2knowl-client/src/assets/service/mp-photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bianchenglequ/chat2KnowL/HEAD/chat2knowl-client/src/assets/service/mp-photo.jpg -------------------------------------------------------------------------------- /chat2knowl-client/src/assets/service/mp-qrcode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bianchenglequ/chat2KnowL/HEAD/chat2knowl-client/src/assets/service/mp-qrcode.jpg -------------------------------------------------------------------------------- /chat2knowl-client/src/assets/service/weixin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bianchenglequ/chat2KnowL/HEAD/chat2knowl-client/src/assets/service/weixin.png -------------------------------------------------------------------------------- /chat2knowl-client/src/components/Chat/ChatArea.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bianchenglequ/chat2KnowL/HEAD/chat2knowl-client/src/components/Chat/ChatArea.vue -------------------------------------------------------------------------------- /chat2knowl-client/src/components/Chat/ChatDialogueArea.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bianchenglequ/chat2KnowL/HEAD/chat2knowl-client/src/components/Chat/ChatDialogueArea.vue -------------------------------------------------------------------------------- /chat2knowl-client/src/components/Chat/ChatFileArea.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bianchenglequ/chat2KnowL/HEAD/chat2knowl-client/src/components/Chat/ChatFileArea.vue -------------------------------------------------------------------------------- /chat2knowl-client/src/components/PDFViewer/PDFViewer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bianchenglequ/chat2KnowL/HEAD/chat2knowl-client/src/components/PDFViewer/PDFViewer.vue -------------------------------------------------------------------------------- /chat2knowl-client/src/components/PDFViewer/viewer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bianchenglequ/chat2KnowL/HEAD/chat2knowl-client/src/components/PDFViewer/viewer.properties -------------------------------------------------------------------------------- /chat2knowl-client/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bianchenglequ/chat2KnowL/HEAD/chat2knowl-client/src/main.ts -------------------------------------------------------------------------------- /chat2knowl-client/src/router/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bianchenglequ/chat2KnowL/HEAD/chat2knowl-client/src/router/index.ts -------------------------------------------------------------------------------- /chat2knowl-client/src/shims-vue.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bianchenglequ/chat2KnowL/HEAD/chat2knowl-client/src/shims-vue.d.ts -------------------------------------------------------------------------------- /chat2knowl-client/src/style/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bianchenglequ/chat2KnowL/HEAD/chat2knowl-client/src/style/index.css -------------------------------------------------------------------------------- /chat2knowl-client/src/utils/draggable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bianchenglequ/chat2KnowL/HEAD/chat2knowl-client/src/utils/draggable.ts -------------------------------------------------------------------------------- /chat2knowl-client/src/views/ChatView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bianchenglequ/chat2KnowL/HEAD/chat2knowl-client/src/views/ChatView.vue -------------------------------------------------------------------------------- /chat2knowl-client/src/views/HomeView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bianchenglequ/chat2KnowL/HEAD/chat2knowl-client/src/views/HomeView.vue -------------------------------------------------------------------------------- /chat2knowl-client/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bianchenglequ/chat2KnowL/HEAD/chat2knowl-client/tsconfig.json -------------------------------------------------------------------------------- /chat2knowl-client/vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bianchenglequ/chat2KnowL/HEAD/chat2knowl-client/vue.config.js -------------------------------------------------------------------------------- /chat2knowl-client/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bianchenglequ/chat2KnowL/HEAD/chat2knowl-client/yarn.lock -------------------------------------------------------------------------------- /chat2knowl-server/Chat2KnowL.Console/Chat2KnowL.Console.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bianchenglequ/chat2KnowL/HEAD/chat2knowl-server/Chat2KnowL.Console/Chat2KnowL.Console.csproj -------------------------------------------------------------------------------- /chat2knowl-server/Chat2KnowL.Console/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bianchenglequ/chat2KnowL/HEAD/chat2knowl-server/Chat2KnowL.Console/Program.cs -------------------------------------------------------------------------------- /chat2knowl-server/Chat2KnowL.Console/QwenServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bianchenglequ/chat2KnowL/HEAD/chat2knowl-server/Chat2KnowL.Console/QwenServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /chat2knowl-server/Chat2KnowL.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bianchenglequ/chat2KnowL/HEAD/chat2knowl-server/Chat2KnowL.sln -------------------------------------------------------------------------------- /qwen/openai_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bianchenglequ/chat2KnowL/HEAD/qwen/openai_api.py --------------------------------------------------------------------------------