xinference 1.4.0__py3-none-any.whl → 1.5.0__py3-none-any.whl
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.
Potentially problematic release.
This version of xinference might be problematic. Click here for more details.
- xinference/_compat.py +1 -0
- xinference/_version.py +3 -3
- xinference/api/restful_api.py +54 -1
- xinference/client/restful/restful_client.py +82 -2
- xinference/constants.py +3 -0
- xinference/core/chat_interface.py +297 -83
- xinference/core/model.py +24 -3
- xinference/core/progress_tracker.py +16 -8
- xinference/core/supervisor.py +51 -1
- xinference/core/worker.py +315 -47
- xinference/deploy/cmdline.py +33 -1
- xinference/model/audio/core.py +11 -1
- xinference/model/audio/megatts.py +105 -0
- xinference/model/audio/model_spec.json +24 -1
- xinference/model/audio/model_spec_modelscope.json +26 -1
- xinference/model/core.py +14 -0
- xinference/model/embedding/core.py +6 -1
- xinference/model/flexible/core.py +6 -1
- xinference/model/image/core.py +6 -1
- xinference/model/image/model_spec.json +17 -1
- xinference/model/image/model_spec_modelscope.json +17 -1
- xinference/model/llm/__init__.py +4 -6
- xinference/model/llm/core.py +5 -0
- xinference/model/llm/llama_cpp/core.py +46 -17
- xinference/model/llm/llm_family.json +530 -85
- xinference/model/llm/llm_family.py +24 -1
- xinference/model/llm/llm_family_modelscope.json +572 -1
- xinference/model/llm/mlx/core.py +16 -2
- xinference/model/llm/reasoning_parser.py +3 -3
- xinference/model/llm/sglang/core.py +111 -13
- xinference/model/llm/transformers/__init__.py +14 -0
- xinference/model/llm/transformers/core.py +31 -6
- xinference/model/llm/transformers/deepseek_vl.py +1 -1
- xinference/model/llm/transformers/deepseek_vl2.py +287 -0
- xinference/model/llm/transformers/gemma3.py +17 -2
- xinference/model/llm/transformers/intern_vl.py +28 -18
- xinference/model/llm/transformers/minicpmv26.py +21 -2
- xinference/model/llm/transformers/qwen-omni.py +308 -0
- xinference/model/llm/transformers/qwen2_audio.py +1 -1
- xinference/model/llm/transformers/qwen2_vl.py +20 -4
- xinference/model/llm/utils.py +37 -15
- xinference/model/llm/vllm/core.py +184 -8
- xinference/model/llm/vllm/distributed_executor.py +320 -0
- xinference/model/rerank/core.py +22 -12
- xinference/model/utils.py +118 -1
- xinference/model/video/core.py +6 -1
- xinference/thirdparty/deepseek_vl2/__init__.py +31 -0
- xinference/thirdparty/deepseek_vl2/models/__init__.py +26 -0
- xinference/thirdparty/deepseek_vl2/models/configuration_deepseek.py +210 -0
- xinference/thirdparty/deepseek_vl2/models/conversation.py +310 -0
- xinference/thirdparty/deepseek_vl2/models/modeling_deepseek.py +1975 -0
- xinference/thirdparty/deepseek_vl2/models/modeling_deepseek_vl_v2.py +697 -0
- xinference/thirdparty/deepseek_vl2/models/processing_deepseek_vl_v2.py +675 -0
- xinference/thirdparty/deepseek_vl2/models/siglip_vit.py +661 -0
- xinference/thirdparty/deepseek_vl2/serve/__init__.py +0 -0
- xinference/thirdparty/deepseek_vl2/serve/app_modules/__init__.py +0 -0
- xinference/thirdparty/deepseek_vl2/serve/app_modules/gradio_utils.py +83 -0
- xinference/thirdparty/deepseek_vl2/serve/app_modules/overwrites.py +81 -0
- xinference/thirdparty/deepseek_vl2/serve/app_modules/presets.py +115 -0
- xinference/thirdparty/deepseek_vl2/serve/app_modules/utils.py +333 -0
- xinference/thirdparty/deepseek_vl2/serve/assets/Kelpy-Codos.js +100 -0
- xinference/thirdparty/deepseek_vl2/serve/assets/avatar.png +0 -0
- xinference/thirdparty/deepseek_vl2/serve/assets/custom.css +355 -0
- xinference/thirdparty/deepseek_vl2/serve/assets/custom.js +22 -0
- xinference/thirdparty/deepseek_vl2/serve/assets/favicon.ico +0 -0
- xinference/thirdparty/deepseek_vl2/serve/assets/simsun.ttc +0 -0
- xinference/thirdparty/deepseek_vl2/serve/inference.py +197 -0
- xinference/thirdparty/deepseek_vl2/utils/__init__.py +18 -0
- xinference/thirdparty/deepseek_vl2/utils/io.py +80 -0
- xinference/thirdparty/megatts3/__init__.py +0 -0
- xinference/thirdparty/megatts3/tts/frontend_function.py +175 -0
- xinference/thirdparty/megatts3/tts/gradio_api.py +93 -0
- xinference/thirdparty/megatts3/tts/infer_cli.py +277 -0
- xinference/thirdparty/megatts3/tts/modules/aligner/whisper_small.py +318 -0
- xinference/thirdparty/megatts3/tts/modules/ar_dur/ar_dur_predictor.py +362 -0
- xinference/thirdparty/megatts3/tts/modules/ar_dur/commons/layers.py +64 -0
- xinference/thirdparty/megatts3/tts/modules/ar_dur/commons/nar_tts_modules.py +73 -0
- xinference/thirdparty/megatts3/tts/modules/ar_dur/commons/rel_transformer.py +403 -0
- xinference/thirdparty/megatts3/tts/modules/ar_dur/commons/rot_transformer.py +649 -0
- xinference/thirdparty/megatts3/tts/modules/ar_dur/commons/seq_utils.py +342 -0
- xinference/thirdparty/megatts3/tts/modules/ar_dur/commons/transformer.py +767 -0
- xinference/thirdparty/megatts3/tts/modules/llm_dit/cfm.py +309 -0
- xinference/thirdparty/megatts3/tts/modules/llm_dit/dit.py +180 -0
- xinference/thirdparty/megatts3/tts/modules/llm_dit/time_embedding.py +44 -0
- xinference/thirdparty/megatts3/tts/modules/llm_dit/transformer.py +230 -0
- xinference/thirdparty/megatts3/tts/modules/wavvae/decoder/diag_gaussian.py +67 -0
- xinference/thirdparty/megatts3/tts/modules/wavvae/decoder/hifigan_modules.py +283 -0
- xinference/thirdparty/megatts3/tts/modules/wavvae/decoder/seanet_encoder.py +38 -0
- xinference/thirdparty/megatts3/tts/modules/wavvae/decoder/wavvae_v3.py +60 -0
- xinference/thirdparty/megatts3/tts/modules/wavvae/encoder/common_modules/conv.py +154 -0
- xinference/thirdparty/megatts3/tts/modules/wavvae/encoder/common_modules/lstm.py +51 -0
- xinference/thirdparty/megatts3/tts/modules/wavvae/encoder/common_modules/seanet.py +126 -0
- xinference/thirdparty/megatts3/tts/utils/audio_utils/align.py +36 -0
- xinference/thirdparty/megatts3/tts/utils/audio_utils/io.py +95 -0
- xinference/thirdparty/megatts3/tts/utils/audio_utils/plot.py +90 -0
- xinference/thirdparty/megatts3/tts/utils/commons/ckpt_utils.py +171 -0
- xinference/thirdparty/megatts3/tts/utils/commons/hparams.py +215 -0
- xinference/thirdparty/megatts3/tts/utils/text_utils/dict.json +1 -0
- xinference/thirdparty/megatts3/tts/utils/text_utils/ph_tone_convert.py +94 -0
- xinference/thirdparty/megatts3/tts/utils/text_utils/split_text.py +90 -0
- xinference/thirdparty/megatts3/tts/utils/text_utils/text_encoder.py +280 -0
- xinference/types.py +10 -0
- xinference/utils.py +54 -0
- xinference/web/ui/build/asset-manifest.json +6 -6
- xinference/web/ui/build/index.html +1 -1
- xinference/web/ui/build/static/css/main.0f6523be.css +2 -0
- xinference/web/ui/build/static/css/main.0f6523be.css.map +1 -0
- xinference/web/ui/build/static/js/main.58bd483c.js +3 -0
- xinference/web/ui/build/static/js/main.58bd483c.js.map +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/3bff8cbe9141f937f4d98879a9771b0f48e0e4e0dbee8e647adbfe23859e7048.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/4500b1a622a031011f0a291701e306b87e08cbc749c50e285103536b85b6a914.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/51709f5d3e53bcf19e613662ef9b91fb9174942c5518987a248348dd4e1e0e02.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/69081049f0c7447544b7cfd73dd13d8846c02fe5febe4d81587e95c89a412d5b.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/b8551e9775a01b28ae674125c688febe763732ea969ae344512e64ea01bf632e.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/bf2b211b0d1b6465eff512d64c869d748f803c5651a7c24e48de6ea3484a7bfe.json +1 -0
- xinference/web/ui/src/locales/en.json +2 -1
- xinference/web/ui/src/locales/zh.json +2 -1
- {xinference-1.4.0.dist-info → xinference-1.5.0.dist-info}/METADATA +128 -115
- {xinference-1.4.0.dist-info → xinference-1.5.0.dist-info}/RECORD +124 -63
- {xinference-1.4.0.dist-info → xinference-1.5.0.dist-info}/WHEEL +1 -1
- xinference/web/ui/build/static/css/main.b494ae7e.css +0 -2
- xinference/web/ui/build/static/css/main.b494ae7e.css.map +0 -1
- xinference/web/ui/build/static/js/main.3cea968e.js +0 -3
- xinference/web/ui/build/static/js/main.3cea968e.js.map +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/27bcada3ee8f89d21184b359f022fc965f350ffaca52c9814c29f1fc37121173.json +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/7f59e45e3f268ab8a4788b6fb024cf8dab088736dff22f5a3a39c122a83ab930.json +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/dcd60488509450bfff37bfff56de2c096d51de17dd00ec60d4db49c8b483ada1.json +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/e547bbb18abb4a474b675a8d5782d25617566bea0af8caa9b836ce5649e2250a.json +0 -1
- /xinference/web/ui/build/static/js/{main.3cea968e.js.LICENSE.txt → main.58bd483c.js.LICENSE.txt} +0 -0
- {xinference-1.4.0.dist-info → xinference-1.5.0.dist-info}/entry_points.txt +0 -0
- {xinference-1.4.0.dist-info → xinference-1.5.0.dist-info/licenses}/LICENSE +0 -0
- {xinference-1.4.0.dist-info → xinference-1.5.0.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) 2023-2024 DeepSeek.
|
|
3
|
+
*
|
|
4
|
+
* Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
5
|
+
* this software and associated documentation files (the "Software"), to deal in
|
|
6
|
+
* the Software without restriction, including without limitation the rights to
|
|
7
|
+
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
8
|
+
* the Software, and to permit persons to whom the Software is furnished to do so,
|
|
9
|
+
* subject to the following conditions:
|
|
10
|
+
*
|
|
11
|
+
* The above copyright notice and this permission notice shall be included in all
|
|
12
|
+
* copies or substantial portions of the Software.
|
|
13
|
+
*
|
|
14
|
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
15
|
+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
16
|
+
* FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
17
|
+
* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
18
|
+
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
19
|
+
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
20
|
+
*/
|
|
21
|
+
|
|
22
|
+
// ==UserScript==
|
|
23
|
+
// @name Kelpy Codos
|
|
24
|
+
// @namespace https://github.com/Keldos-Li/Kelpy-Codos
|
|
25
|
+
// @version 1.0.5
|
|
26
|
+
// @author Keldos; https://keldos.me/
|
|
27
|
+
// @description Add copy button to PRE tags before CODE tag, for Chuanhu ChatGPT especially.
|
|
28
|
+
// Based on Chuanhu ChatGPT version: ac04408 (2023-3-22)
|
|
29
|
+
// @license GPL-3.0
|
|
30
|
+
// @grant none
|
|
31
|
+
// ==/UserScript==
|
|
32
|
+
|
|
33
|
+
(function () {
|
|
34
|
+
"use strict";
|
|
35
|
+
|
|
36
|
+
function addCopyButton(pre) {
|
|
37
|
+
var code = pre.querySelector("code");
|
|
38
|
+
if (!code) {
|
|
39
|
+
return; // 如果没有找到 <code> 元素,则不添加按钮
|
|
40
|
+
}
|
|
41
|
+
var firstChild = code.firstChild;
|
|
42
|
+
if (!firstChild) {
|
|
43
|
+
return; // 如果 <code> 元素没有子节点,则不添加按钮
|
|
44
|
+
}
|
|
45
|
+
var button = document.createElement("button");
|
|
46
|
+
button.textContent = "\uD83D\uDCCE"; // 使用 📎 符号作为“复制”按钮的文本
|
|
47
|
+
button.style.position = "relative";
|
|
48
|
+
button.style.float = "right";
|
|
49
|
+
button.style.fontSize = "1em"; // 可选:调整按钮大小
|
|
50
|
+
button.style.background = "none"; // 可选:去掉背景颜色
|
|
51
|
+
button.style.border = "none"; // 可选:去掉边框
|
|
52
|
+
button.style.cursor = "pointer"; // 可选:显示指针样式
|
|
53
|
+
button.addEventListener("click", function () {
|
|
54
|
+
var range = document.createRange();
|
|
55
|
+
range.selectNodeContents(code);
|
|
56
|
+
range.setStartBefore(firstChild); // 将范围设置为第一个子节点之前
|
|
57
|
+
var selection = window.getSelection();
|
|
58
|
+
selection.removeAllRanges();
|
|
59
|
+
selection.addRange(range);
|
|
60
|
+
|
|
61
|
+
try {
|
|
62
|
+
var success = document.execCommand("copy");
|
|
63
|
+
if (success) {
|
|
64
|
+
button.textContent = "\u2714";
|
|
65
|
+
setTimeout(function () {
|
|
66
|
+
button.textContent = "\uD83D\uDCCE"; // 恢复按钮为“复制”
|
|
67
|
+
}, 2000);
|
|
68
|
+
} else {
|
|
69
|
+
button.textContent = "\u2716";
|
|
70
|
+
}
|
|
71
|
+
} catch (e) {
|
|
72
|
+
console.error(e);
|
|
73
|
+
button.textContent = "\u2716";
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
selection.removeAllRanges();
|
|
77
|
+
});
|
|
78
|
+
code.insertBefore(button, firstChild); // 将按钮插入到第一个子元素之前
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
function handleNewElements(mutationsList, observer) {
|
|
82
|
+
for (var mutation of mutationsList) {
|
|
83
|
+
if (mutation.type === "childList") {
|
|
84
|
+
for (var node of mutation.addedNodes) {
|
|
85
|
+
if (node.nodeName === "PRE") {
|
|
86
|
+
addCopyButton(node);
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
var observer = new MutationObserver(handleNewElements);
|
|
94
|
+
observer.observe(document.documentElement, {
|
|
95
|
+
childList: true,
|
|
96
|
+
subtree: true,
|
|
97
|
+
});
|
|
98
|
+
|
|
99
|
+
document.querySelectorAll("pre").forEach(addCopyButton);
|
|
100
|
+
})();
|
|
Binary file
|
|
@@ -0,0 +1,355 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) 2023-2024 DeepSeek.
|
|
3
|
+
*
|
|
4
|
+
* Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
5
|
+
* this software and associated documentation files (the "Software"), to deal in
|
|
6
|
+
* the Software without restriction, including without limitation the rights to
|
|
7
|
+
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
8
|
+
* the Software, and to permit persons to whom the Software is furnished to do so,
|
|
9
|
+
* subject to the following conditions:
|
|
10
|
+
*
|
|
11
|
+
* The above copyright notice and this permission notice shall be included in all
|
|
12
|
+
* copies or substantial portions of the Software.
|
|
13
|
+
*
|
|
14
|
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
15
|
+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
16
|
+
* FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
17
|
+
* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
18
|
+
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
19
|
+
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
20
|
+
*/
|
|
21
|
+
|
|
22
|
+
:root {
|
|
23
|
+
--chatbot-color-light: #f3f3f3;
|
|
24
|
+
--chatbot-color-dark: #121111;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
/* status_display */
|
|
28
|
+
#status_display {
|
|
29
|
+
display: flex;
|
|
30
|
+
min-height: 2.5em;
|
|
31
|
+
align-items: flex-end;
|
|
32
|
+
justify-content: flex-end;
|
|
33
|
+
}
|
|
34
|
+
#status_display p {
|
|
35
|
+
font-size: 0.85em;
|
|
36
|
+
font-family: monospace;
|
|
37
|
+
color: var(--body-text-color-subdued);
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
/* usage_display */
|
|
41
|
+
#usage_display {
|
|
42
|
+
height: 1em;
|
|
43
|
+
}
|
|
44
|
+
#usage_display p {
|
|
45
|
+
padding: 0 1em;
|
|
46
|
+
font-size: 0.85em;
|
|
47
|
+
font-family: monospace;
|
|
48
|
+
color: var(--body-text-color-subdued);
|
|
49
|
+
}
|
|
50
|
+
/* list */
|
|
51
|
+
ol:not(.options),
|
|
52
|
+
ul:not(.options) {
|
|
53
|
+
padding-inline-start: 2em !important;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
/* Thank @Keldos-Li for fixing it */
|
|
57
|
+
/* Light mode (default) */
|
|
58
|
+
#deepseek_chatbot {
|
|
59
|
+
background-color: var(--chatbot-color-light) !important;
|
|
60
|
+
color: #000000 !important;
|
|
61
|
+
}
|
|
62
|
+
[data-testid="bot"] {
|
|
63
|
+
background-color: #ffffff !important;
|
|
64
|
+
}
|
|
65
|
+
[data-testid="user"] {
|
|
66
|
+
background-color: #95ec69 !important;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
/* Dark mode */
|
|
70
|
+
.dark #deepseek_chatbot {
|
|
71
|
+
background-color: var(--chatbot-color-dark) !important;
|
|
72
|
+
color: #ffffff !important;
|
|
73
|
+
}
|
|
74
|
+
.dark [data-testid="bot"] {
|
|
75
|
+
background-color: #2c2c2c !important;
|
|
76
|
+
}
|
|
77
|
+
.dark [data-testid="user"] {
|
|
78
|
+
background-color: #26b561 !important;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
#deepseek_chatbot {
|
|
82
|
+
height: 100%;
|
|
83
|
+
min-height: 800px;
|
|
84
|
+
flex-grow: 1;
|
|
85
|
+
overflow: auto;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
[class*="message"] {
|
|
89
|
+
border-radius: var(--radius-xl) !important;
|
|
90
|
+
border: none;
|
|
91
|
+
padding: var(--spacing-xl) !important;
|
|
92
|
+
font-size: var(--text-md) !important;
|
|
93
|
+
line-height: var(--line-md) !important;
|
|
94
|
+
min-height: calc(var(--text-md) * var(--line-md) + 2 * var(--spacing-xl));
|
|
95
|
+
min-width: calc(var(--text-md) * var(--line-md) + 2 * var(--spacing-xl));
|
|
96
|
+
}
|
|
97
|
+
[data-testid="bot"] {
|
|
98
|
+
max-width: 85%;
|
|
99
|
+
border-bottom-left-radius: 0 !important;
|
|
100
|
+
}
|
|
101
|
+
[data-testid="user"] {
|
|
102
|
+
max-width: 85%;
|
|
103
|
+
width: auto !important;
|
|
104
|
+
border-bottom-right-radius: 0 !important;
|
|
105
|
+
}
|
|
106
|
+
/* Table */
|
|
107
|
+
table {
|
|
108
|
+
margin: 1em 0;
|
|
109
|
+
border-collapse: collapse;
|
|
110
|
+
empty-cells: show;
|
|
111
|
+
}
|
|
112
|
+
td,
|
|
113
|
+
th {
|
|
114
|
+
border: 1.2px solid var(--border-color-primary) !important;
|
|
115
|
+
padding: 0.2em;
|
|
116
|
+
}
|
|
117
|
+
thead {
|
|
118
|
+
background-color: rgba(175, 184, 193, 0.2);
|
|
119
|
+
}
|
|
120
|
+
thead th {
|
|
121
|
+
padding: 0.5em 0.2em;
|
|
122
|
+
}
|
|
123
|
+
/* Inline code */
|
|
124
|
+
#deepseek_chatbot code {
|
|
125
|
+
display: inline;
|
|
126
|
+
white-space: break-spaces;
|
|
127
|
+
border-radius: 6px;
|
|
128
|
+
margin: 0 2px 0 2px;
|
|
129
|
+
padding: 0.2em 0.4em 0.1em 0.4em;
|
|
130
|
+
background-color: rgba(175, 184, 193, 0.2);
|
|
131
|
+
}
|
|
132
|
+
/* Code block */
|
|
133
|
+
#deepseek_chatbot pre code {
|
|
134
|
+
display: block;
|
|
135
|
+
overflow: auto;
|
|
136
|
+
white-space: pre;
|
|
137
|
+
background-color: #1c1d1e !important;
|
|
138
|
+
border-radius: 10px;
|
|
139
|
+
padding: 1.4em 1.2em 0em 1.4em;
|
|
140
|
+
margin: 1.2em 2em 1.2em 0.5em;
|
|
141
|
+
color: #fdf8f8;
|
|
142
|
+
box-shadow: 6px 6px 16px hsla(0, 0%, 0%, 0.2);
|
|
143
|
+
}
|
|
144
|
+
/* Hightlight */
|
|
145
|
+
#deepseek_chatbot .highlight {
|
|
146
|
+
background-color: transparent;
|
|
147
|
+
}
|
|
148
|
+
#deepseek_chatbot .highlight .hll {
|
|
149
|
+
background-color: #49483e;
|
|
150
|
+
}
|
|
151
|
+
#deepseek_chatbot .highlight .c {
|
|
152
|
+
color: #75715e;
|
|
153
|
+
} /* Comment */
|
|
154
|
+
#deepseek_chatbot .highlight .err {
|
|
155
|
+
color: #960050;
|
|
156
|
+
background-color: #1e0010;
|
|
157
|
+
} /* Error */
|
|
158
|
+
#deepseek_chatbot .highlight .k {
|
|
159
|
+
color: #66d9ef;
|
|
160
|
+
} /* Keyword */
|
|
161
|
+
#deepseek_chatbot .highlight .l {
|
|
162
|
+
color: #ae81ff;
|
|
163
|
+
} /* Literal */
|
|
164
|
+
#deepseek_chatbot .highlight .n {
|
|
165
|
+
color: #f8f8f2;
|
|
166
|
+
} /* Name */
|
|
167
|
+
#deepseek_chatbot .highlight .o {
|
|
168
|
+
color: #f92672;
|
|
169
|
+
} /* Operator */
|
|
170
|
+
#deepseek_chatbot .highlight .p {
|
|
171
|
+
color: #f8f8f2;
|
|
172
|
+
} /* Punctuation */
|
|
173
|
+
#deepseek_chatbot .highlight .ch {
|
|
174
|
+
color: #75715e;
|
|
175
|
+
} /* Comment.Hashbang */
|
|
176
|
+
#deepseek_chatbot .highlight .cm {
|
|
177
|
+
color: #75715e;
|
|
178
|
+
} /* Comment.Multiline */
|
|
179
|
+
#deepseek_chatbot .highlight .cp {
|
|
180
|
+
color: #75715e;
|
|
181
|
+
} /* Comment.Preproc */
|
|
182
|
+
#deepseek_chatbot .highlight .cpf {
|
|
183
|
+
color: #75715e;
|
|
184
|
+
} /* Comment.PreprocFile */
|
|
185
|
+
#deepseek_chatbot .highlight .c1 {
|
|
186
|
+
color: #75715e;
|
|
187
|
+
} /* Comment.Single */
|
|
188
|
+
#deepseek_chatbot .highlight .cs {
|
|
189
|
+
color: #75715e;
|
|
190
|
+
} /* Comment.Special */
|
|
191
|
+
#deepseek_chatbot .highlight .gd {
|
|
192
|
+
color: #f92672;
|
|
193
|
+
} /* Generic.Deleted */
|
|
194
|
+
#deepseek_chatbot .highlight .ge {
|
|
195
|
+
font-style: italic;
|
|
196
|
+
} /* Generic.Emph */
|
|
197
|
+
#deepseek_chatbot .highlight .gi {
|
|
198
|
+
color: #a6e22e;
|
|
199
|
+
} /* Generic.Inserted */
|
|
200
|
+
#deepseek_chatbot .highlight .gs {
|
|
201
|
+
font-weight: bold;
|
|
202
|
+
} /* Generic.Strong */
|
|
203
|
+
#deepseek_chatbot .highlight .gu {
|
|
204
|
+
color: #75715e;
|
|
205
|
+
} /* Generic.Subheading */
|
|
206
|
+
#deepseek_chatbot .highlight .kc {
|
|
207
|
+
color: #66d9ef;
|
|
208
|
+
} /* Keyword.Constant */
|
|
209
|
+
#deepseek_chatbot .highlight .kd {
|
|
210
|
+
color: #66d9ef;
|
|
211
|
+
} /* Keyword.Declaration */
|
|
212
|
+
#deepseek_chatbot .highlight .kn {
|
|
213
|
+
color: #f92672;
|
|
214
|
+
} /* Keyword.Namespace */
|
|
215
|
+
#deepseek_chatbot .highlight .kp {
|
|
216
|
+
color: #66d9ef;
|
|
217
|
+
} /* Keyword.Pseudo */
|
|
218
|
+
#deepseek_chatbot .highlight .kr {
|
|
219
|
+
color: #66d9ef;
|
|
220
|
+
} /* Keyword.Reserved */
|
|
221
|
+
#deepseek_chatbot .highlight .kt {
|
|
222
|
+
color: #66d9ef;
|
|
223
|
+
} /* Keyword.Type */
|
|
224
|
+
#deepseek_chatbot .highlight .ld {
|
|
225
|
+
color: #e6db74;
|
|
226
|
+
} /* Literal.Date */
|
|
227
|
+
#deepseek_chatbot .highlight .m {
|
|
228
|
+
color: #ae81ff;
|
|
229
|
+
} /* Literal.Number */
|
|
230
|
+
#deepseek_chatbot .highlight .s {
|
|
231
|
+
color: #e6db74;
|
|
232
|
+
} /* Literal.String */
|
|
233
|
+
#deepseek_chatbot .highlight .na {
|
|
234
|
+
color: #a6e22e;
|
|
235
|
+
} /* Name.Attribute */
|
|
236
|
+
#deepseek_chatbot .highlight .nb {
|
|
237
|
+
color: #f8f8f2;
|
|
238
|
+
} /* Name.Builtin */
|
|
239
|
+
#deepseek_chatbot .highlight .nc {
|
|
240
|
+
color: #a6e22e;
|
|
241
|
+
} /* Name.Class */
|
|
242
|
+
#deepseek_chatbot .highlight .no {
|
|
243
|
+
color: #66d9ef;
|
|
244
|
+
} /* Name.Constant */
|
|
245
|
+
#deepseek_chatbot .highlight .nd {
|
|
246
|
+
color: #a6e22e;
|
|
247
|
+
} /* Name.Decorator */
|
|
248
|
+
#deepseek_chatbot .highlight .ni {
|
|
249
|
+
color: #f8f8f2;
|
|
250
|
+
} /* Name.Entity */
|
|
251
|
+
#deepseek_chatbot .highlight .ne {
|
|
252
|
+
color: #a6e22e;
|
|
253
|
+
} /* Name.Exception */
|
|
254
|
+
#deepseek_chatbot .highlight .nf {
|
|
255
|
+
color: #a6e22e;
|
|
256
|
+
} /* Name.Function */
|
|
257
|
+
#deepseek_chatbot .highlight .nl {
|
|
258
|
+
color: #f8f8f2;
|
|
259
|
+
} /* Name.Label */
|
|
260
|
+
#deepseek_chatbot .highlight .nn {
|
|
261
|
+
color: #f8f8f2;
|
|
262
|
+
} /* Name.Namespace */
|
|
263
|
+
#deepseek_chatbot .highlight .nx {
|
|
264
|
+
color: #a6e22e;
|
|
265
|
+
} /* Name.Other */
|
|
266
|
+
#deepseek_chatbot .highlight .py {
|
|
267
|
+
color: #f8f8f2;
|
|
268
|
+
} /* Name.Property */
|
|
269
|
+
#deepseek_chatbot .highlight .nt {
|
|
270
|
+
color: #f92672;
|
|
271
|
+
} /* Name.Tag */
|
|
272
|
+
#deepseek_chatbot .highlight .nv {
|
|
273
|
+
color: #f8f8f2;
|
|
274
|
+
} /* Name.Variable */
|
|
275
|
+
#deepseek_chatbot .highlight .ow {
|
|
276
|
+
color: #f92672;
|
|
277
|
+
} /* Operator.Word */
|
|
278
|
+
#deepseek_chatbot .highlight .w {
|
|
279
|
+
color: #f8f8f2;
|
|
280
|
+
} /* Text.Whitespace */
|
|
281
|
+
#deepseek_chatbot .highlight .mb {
|
|
282
|
+
color: #ae81ff;
|
|
283
|
+
} /* Literal.Number.Bin */
|
|
284
|
+
#deepseek_chatbot .highlight .mf {
|
|
285
|
+
color: #ae81ff;
|
|
286
|
+
} /* Literal.Number.Float */
|
|
287
|
+
#deepseek_chatbot .highlight .mh {
|
|
288
|
+
color: #ae81ff;
|
|
289
|
+
} /* Literal.Number.Hex */
|
|
290
|
+
#deepseek_chatbot .highlight .mi {
|
|
291
|
+
color: #ae81ff;
|
|
292
|
+
} /* Literal.Number.Integer */
|
|
293
|
+
#deepseek_chatbot .highlight .mo {
|
|
294
|
+
color: #ae81ff;
|
|
295
|
+
} /* Literal.Number.Oct */
|
|
296
|
+
#deepseek_chatbot .highlight .sa {
|
|
297
|
+
color: #e6db74;
|
|
298
|
+
} /* Literal.String.Affix */
|
|
299
|
+
#deepseek_chatbot .highlight .sb {
|
|
300
|
+
color: #e6db74;
|
|
301
|
+
} /* Literal.String.Backtick */
|
|
302
|
+
#deepseek_chatbot .highlight .sc {
|
|
303
|
+
color: #e6db74;
|
|
304
|
+
} /* Literal.String.Char */
|
|
305
|
+
#deepseek_chatbot .highlight .dl {
|
|
306
|
+
color: #e6db74;
|
|
307
|
+
} /* Literal.String.Delimiter */
|
|
308
|
+
#deepseek_chatbot .highlight .sd {
|
|
309
|
+
color: #e6db74;
|
|
310
|
+
} /* Literal.String.Doc */
|
|
311
|
+
#deepseek_chatbot .highlight .s2 {
|
|
312
|
+
color: #e6db74;
|
|
313
|
+
} /* Literal.String.Double */
|
|
314
|
+
#deepseek_chatbot .highlight .se {
|
|
315
|
+
color: #ae81ff;
|
|
316
|
+
} /* Literal.String.Escape */
|
|
317
|
+
#deepseek_chatbot .highlight .sh {
|
|
318
|
+
color: #e6db74;
|
|
319
|
+
} /* Literal.String.Heredoc */
|
|
320
|
+
#deepseek_chatbot .highlight .si {
|
|
321
|
+
color: #e6db74;
|
|
322
|
+
} /* Literal.String.Interpol */
|
|
323
|
+
#deepseek_chatbot .highlight .sx {
|
|
324
|
+
color: #e6db74;
|
|
325
|
+
} /* Literal.String.Other */
|
|
326
|
+
#deepseek_chatbot .highlight .sr {
|
|
327
|
+
color: #e6db74;
|
|
328
|
+
} /* Literal.String.Regex */
|
|
329
|
+
#deepseek_chatbot .highlight .s1 {
|
|
330
|
+
color: #e6db74;
|
|
331
|
+
} /* Literal.String.Single */
|
|
332
|
+
#deepseek_chatbot .highlight .ss {
|
|
333
|
+
color: #e6db74;
|
|
334
|
+
} /* Literal.String.Symbol */
|
|
335
|
+
#deepseek_chatbot .highlight .bp {
|
|
336
|
+
color: #f8f8f2;
|
|
337
|
+
} /* Name.Builtin.Pseudo */
|
|
338
|
+
#deepseek_chatbot .highlight .fm {
|
|
339
|
+
color: #a6e22e;
|
|
340
|
+
} /* Name.Function.Magic */
|
|
341
|
+
#deepseek_chatbot .highlight .vc {
|
|
342
|
+
color: #f8f8f2;
|
|
343
|
+
} /* Name.Variable.Class */
|
|
344
|
+
#deepseek_chatbot .highlight .vg {
|
|
345
|
+
color: #f8f8f2;
|
|
346
|
+
} /* Name.Variable.Global */
|
|
347
|
+
#deepseek_chatbot .highlight .vi {
|
|
348
|
+
color: #f8f8f2;
|
|
349
|
+
} /* Name.Variable.Instance */
|
|
350
|
+
#deepseek_chatbot .highlight .vm {
|
|
351
|
+
color: #f8f8f2;
|
|
352
|
+
} /* Name.Variable.Magic */
|
|
353
|
+
#deepseek_chatbot .highlight .il {
|
|
354
|
+
color: #ae81ff;
|
|
355
|
+
} /* Literal.Number.Integer.Long */
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) 2023-2024 DeepSeek.
|
|
3
|
+
*
|
|
4
|
+
* Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
5
|
+
* this software and associated documentation files (the "Software"), to deal in
|
|
6
|
+
* the Software without restriction, including without limitation the rights to
|
|
7
|
+
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
8
|
+
* the Software, and to permit persons to whom the Software is furnished to do so,
|
|
9
|
+
* subject to the following conditions:
|
|
10
|
+
*
|
|
11
|
+
* The above copyright notice and this permission notice shall be included in all
|
|
12
|
+
* copies or substantial portions of the Software.
|
|
13
|
+
*
|
|
14
|
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
15
|
+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
16
|
+
* FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
17
|
+
* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
18
|
+
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
19
|
+
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
20
|
+
*/
|
|
21
|
+
|
|
22
|
+
// custom javascript here
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,197 @@
|
|
|
1
|
+
# Copyright (c) 2023-2024 DeepSeek.
|
|
2
|
+
#
|
|
3
|
+
# Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
4
|
+
# this software and associated documentation files (the "Software"), to deal in
|
|
5
|
+
# the Software without restriction, including without limitation the rights to
|
|
6
|
+
# use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
7
|
+
# the Software, and to permit persons to whom the Software is furnished to do so,
|
|
8
|
+
# subject to the following conditions:
|
|
9
|
+
#
|
|
10
|
+
# The above copyright notice and this permission notice shall be included in all
|
|
11
|
+
# copies or substantial portions of the Software.
|
|
12
|
+
#
|
|
13
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
14
|
+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
15
|
+
# FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
16
|
+
# COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
17
|
+
# IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
18
|
+
# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
19
|
+
|
|
20
|
+
from threading import Thread
|
|
21
|
+
from typing import List
|
|
22
|
+
|
|
23
|
+
import torch
|
|
24
|
+
import transformers
|
|
25
|
+
from transformers import (
|
|
26
|
+
AutoModelForCausalLM,
|
|
27
|
+
StoppingCriteria,
|
|
28
|
+
StoppingCriteriaList,
|
|
29
|
+
TextIteratorStreamer,
|
|
30
|
+
)
|
|
31
|
+
|
|
32
|
+
from deepseek_vl2.models import DeepseekVLV2Processor, DeepseekVLV2ForCausalLM
|
|
33
|
+
from deepseek_vl2.models.conversation import Conversation
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
def load_model(model_path, dtype=torch.bfloat16):
|
|
37
|
+
vl_chat_processor = DeepseekVLV2Processor.from_pretrained(model_path)
|
|
38
|
+
tokenizer = vl_chat_processor.tokenizer
|
|
39
|
+
|
|
40
|
+
vl_gpt: DeepseekVLV2ForCausalLM = AutoModelForCausalLM.from_pretrained(
|
|
41
|
+
model_path, trust_remote_code=True, torch_dtype=dtype
|
|
42
|
+
)
|
|
43
|
+
vl_gpt = vl_gpt.cuda().eval()
|
|
44
|
+
return tokenizer, vl_gpt, vl_chat_processor
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
def convert_conversation_to_prompts(conversation: Conversation):
|
|
48
|
+
conv_prompts = []
|
|
49
|
+
|
|
50
|
+
last_image = None
|
|
51
|
+
|
|
52
|
+
messages = conversation.messages
|
|
53
|
+
for i in range(0, len(messages), 2):
|
|
54
|
+
|
|
55
|
+
if isinstance(messages[i][1], tuple):
|
|
56
|
+
text, images = messages[i][1]
|
|
57
|
+
last_image = images[-1]
|
|
58
|
+
else:
|
|
59
|
+
text, images = messages[i][1], []
|
|
60
|
+
|
|
61
|
+
prompt = {
|
|
62
|
+
"role": messages[i][0],
|
|
63
|
+
"content": text,
|
|
64
|
+
"images": images
|
|
65
|
+
}
|
|
66
|
+
response = {"role": messages[i + 1][0], "content": messages[i + 1][1]}
|
|
67
|
+
conv_prompts.extend([prompt, response])
|
|
68
|
+
|
|
69
|
+
return conv_prompts, last_image
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
class StoppingCriteriaSub(StoppingCriteria):
|
|
73
|
+
def __init__(self, stops=[], encounters=1):
|
|
74
|
+
super().__init__()
|
|
75
|
+
self.stops = [stop.to("cuda") for stop in stops]
|
|
76
|
+
|
|
77
|
+
def __call__(
|
|
78
|
+
self, input_ids: torch.LongTensor, scores: torch.FloatTensor, **kwargs
|
|
79
|
+
):
|
|
80
|
+
for stop in self.stops:
|
|
81
|
+
if input_ids.shape[-1] < len(stop):
|
|
82
|
+
continue
|
|
83
|
+
if torch.all((stop == input_ids[0][-len(stop) :])).item():
|
|
84
|
+
return True
|
|
85
|
+
|
|
86
|
+
return False
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
@torch.inference_mode()
|
|
90
|
+
def deepseek_generate(
|
|
91
|
+
conversations: list,
|
|
92
|
+
vl_gpt: torch.nn.Module,
|
|
93
|
+
vl_chat_processor: DeepseekVLV2Processor,
|
|
94
|
+
tokenizer: transformers.PreTrainedTokenizer,
|
|
95
|
+
stop_words: list,
|
|
96
|
+
max_length: int = 256,
|
|
97
|
+
temperature: float = 1.0,
|
|
98
|
+
top_p: float = 1.0,
|
|
99
|
+
repetition_penalty: float = 1.1,
|
|
100
|
+
chunk_size: int = -1
|
|
101
|
+
):
|
|
102
|
+
pil_images = []
|
|
103
|
+
for message in conversations:
|
|
104
|
+
if "images" not in message:
|
|
105
|
+
continue
|
|
106
|
+
pil_images.extend(message["images"])
|
|
107
|
+
|
|
108
|
+
prepare_inputs = vl_chat_processor.__call__(
|
|
109
|
+
conversations=conversations,
|
|
110
|
+
images=pil_images,
|
|
111
|
+
inference_mode=True,
|
|
112
|
+
force_batchify=True,
|
|
113
|
+
system_prompt=""
|
|
114
|
+
).to(vl_gpt.device)
|
|
115
|
+
|
|
116
|
+
return generate(
|
|
117
|
+
vl_gpt,
|
|
118
|
+
tokenizer,
|
|
119
|
+
prepare_inputs,
|
|
120
|
+
max_gen_len=max_length,
|
|
121
|
+
temperature=temperature,
|
|
122
|
+
repetition_penalty=repetition_penalty,
|
|
123
|
+
top_p=top_p,
|
|
124
|
+
stop_words=stop_words,
|
|
125
|
+
chunk_size=chunk_size
|
|
126
|
+
)
|
|
127
|
+
|
|
128
|
+
|
|
129
|
+
@torch.inference_mode()
|
|
130
|
+
def generate(
|
|
131
|
+
vl_gpt,
|
|
132
|
+
tokenizer,
|
|
133
|
+
prepare_inputs,
|
|
134
|
+
max_gen_len: int = 256,
|
|
135
|
+
temperature: float = 0,
|
|
136
|
+
repetition_penalty=1.1,
|
|
137
|
+
top_p: float = 0.95,
|
|
138
|
+
stop_words: List[str] = [],
|
|
139
|
+
chunk_size: int = -1
|
|
140
|
+
):
|
|
141
|
+
"""Stream the text output from the multimodality model with prompt and image inputs."""
|
|
142
|
+
streamer = TextIteratorStreamer(tokenizer, skip_prompt=True)
|
|
143
|
+
|
|
144
|
+
stop_words_ids = [
|
|
145
|
+
torch.tensor(tokenizer.encode(stop_word)) for stop_word in stop_words
|
|
146
|
+
]
|
|
147
|
+
stopping_criteria = StoppingCriteriaList(
|
|
148
|
+
[StoppingCriteriaSub(stops=stop_words_ids)]
|
|
149
|
+
)
|
|
150
|
+
|
|
151
|
+
if chunk_size != -1:
|
|
152
|
+
inputs_embeds, past_key_values = vl_gpt.incremental_prefilling(
|
|
153
|
+
input_ids=prepare_inputs.input_ids,
|
|
154
|
+
images=prepare_inputs.images,
|
|
155
|
+
images_seq_mask=prepare_inputs.images_seq_mask,
|
|
156
|
+
images_spatial_crop=prepare_inputs.images_spatial_crop,
|
|
157
|
+
attention_mask=prepare_inputs.attention_mask,
|
|
158
|
+
chunk_size=chunk_size
|
|
159
|
+
)
|
|
160
|
+
else:
|
|
161
|
+
inputs_embeds = vl_gpt.prepare_inputs_embeds(**prepare_inputs)
|
|
162
|
+
past_key_values = None
|
|
163
|
+
|
|
164
|
+
generation_config = dict(
|
|
165
|
+
inputs_embeds=inputs_embeds,
|
|
166
|
+
input_ids=prepare_inputs.input_ids,
|
|
167
|
+
images=prepare_inputs.images,
|
|
168
|
+
images_seq_mask=prepare_inputs.images_seq_mask,
|
|
169
|
+
images_spatial_crop=prepare_inputs.images_spatial_crop,
|
|
170
|
+
attention_mask=prepare_inputs.attention_mask,
|
|
171
|
+
past_key_values=past_key_values,
|
|
172
|
+
pad_token_id=tokenizer.eos_token_id,
|
|
173
|
+
bos_token_id=tokenizer.bos_token_id,
|
|
174
|
+
eos_token_id=tokenizer.eos_token_id,
|
|
175
|
+
max_new_tokens=max_gen_len,
|
|
176
|
+
do_sample=True,
|
|
177
|
+
use_cache=True,
|
|
178
|
+
streamer=streamer,
|
|
179
|
+
stopping_criteria=stopping_criteria,
|
|
180
|
+
)
|
|
181
|
+
|
|
182
|
+
if temperature > 0:
|
|
183
|
+
generation_config.update(
|
|
184
|
+
{
|
|
185
|
+
"do_sample": True,
|
|
186
|
+
"top_p": top_p,
|
|
187
|
+
"temperature": temperature,
|
|
188
|
+
"repetition_penalty": repetition_penalty,
|
|
189
|
+
}
|
|
190
|
+
)
|
|
191
|
+
else:
|
|
192
|
+
generation_config["do_sample"] = False
|
|
193
|
+
|
|
194
|
+
thread = Thread(target=vl_gpt.generate, kwargs=generation_config)
|
|
195
|
+
thread.start()
|
|
196
|
+
|
|
197
|
+
yield from streamer
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# Copyright (c) 2023-2024 DeepSeek.
|
|
2
|
+
#
|
|
3
|
+
# Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
4
|
+
# this software and associated documentation files (the "Software"), to deal in
|
|
5
|
+
# the Software without restriction, including without limitation the rights to
|
|
6
|
+
# use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
7
|
+
# the Software, and to permit persons to whom the Software is furnished to do so,
|
|
8
|
+
# subject to the following conditions:
|
|
9
|
+
#
|
|
10
|
+
# The above copyright notice and this permission notice shall be included in all
|
|
11
|
+
# copies or substantial portions of the Software.
|
|
12
|
+
#
|
|
13
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
14
|
+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
15
|
+
# FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
16
|
+
# COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
17
|
+
# IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
18
|
+
# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|