Skip to content

Commit 11b66a1

Browse files
author
pipeline
committed
v27.1.48 is released
1 parent 774cb89 commit 11b66a1

File tree

1,386 files changed

+71146
-64038
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,386 files changed

+71146
-64038
lines changed

config.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,6 +178,10 @@
178178
"signature",
179179
"multiline-textbox",
180180
null,
181-
"textarea"
181+
"textarea",
182+
"aiassistview",
183+
"ai",
184+
"assistview",
185+
null
182186
]
183187
}

index.html

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,9 @@
3131
<link href="src/common/lib/content/codemirror.css" rel="stylesheet"></link>
3232
<script src="src/skipChunk.js" type="text/javascript"></script>
3333
<script src="src/common.min.js" type="text/javascript"></script>
34+
<script src="src/common/embedding_model.js" type="module"></script>
35+
<script src="src/common/azure_openai.js" type="module"></script>
36+
<script src="src/ai-kanban/custom-model.js" type="module"></script>
3437
<script>
3538
var orgin = location.origin;
3639
var baseref = location.href.split('#')[0].replace(orgin, '');
@@ -143,7 +146,7 @@
143146
<div class="sb-header-item sb-table-cell" id="sb-dark-theme">
144147
<div class="sb-switch-btn" role="button" data-theme="dark" id="buttoncolor">
145148
<svg xmlns="http://www.w3.org/2000/svg" style="display: none;" id="dark-icon"
146-
width="16" height="14" fill="currentColor" class="bi bi-moon" viewBox="0 0 16 16">
149+
width="16" height="15" fill="currentColor" class="bi bi-moon" viewBox="0 0 16 16">
147150
<path
148151
d="M6 .278a.77.77 0 0 1 .08.858 7.2 7.2 0 0 0-.878 3.46c0 4.021 3.278 7.277 7.318 7.277q.792-.001 1.533-.16a.79.79 0 0 1 .81.316.73.73 0 0 1-.031.893A8.35 8.35 0 0 1 8.344 16C3.734 16 0 12.286 0 7.71 0 4.266 2.114 1.312 5.124.06A.75.75 0 0 1 6 .278M4.858 1.311A7.27 7.27 0 0 0 1.025 7.71c0 4.02 3.279 7.276 7.319 7.276a7.32 7.32 0 0 0 5.205-2.162q-.506.063-1.029.063c-4.61 0-8.343-3.714-8.343-8.29 0-1.167.242-2.278.681-3.286" />
149152
</svg>
@@ -233,6 +236,10 @@
233236
<span class='sb-icons sb-theme-select sb-icon-icon-selection'></span>
234237
<span class="switch-text">Tailwind CSS</span>
235238
</li>
239+
<li class="e-list" id="fluent2-highcontrast" role="listitem">
240+
<span class='sb-icons sb-theme-select sb-icon-icon-selection'></span>
241+
<span class="switch-text">Fluent 2 High Contrast</span>
242+
</li>
236243
<li class="e-list" id="highcontrast">
237244
<span class='sb-icons sb-theme-select sb-icon-icon-selection'></span>
238245
<span class="switch-text">High Contrast</span>
@@ -242,7 +249,7 @@
242249
<span class="switch-text">Fluent</span>
243250
</li>
244251
</ul>
245-
<div class="sb-theme-studio"><a target="_blank" href="https://ej2.syncfusion.com/themestudio/?theme=material" aria-label="Go to Theme Studio">Go to Theme Studio</a></div>
252+
<div class="sb-theme-studio"><a id="theme-studio" target="_blank" href="https://ej2.syncfusion.com/themestudio/?theme=fluent2" aria-label="Go to Theme Studio">Go to Theme Studio</a></div>
246253
</div>
247254
<div id='settings-popup' class='sb-setting-popup'>
248255
<div class='sb-setting-header'>
@@ -261,6 +268,7 @@
261268
<option value="bootstrap5">Bootstrap 5</option>
262269
<option value="fluent2">Fluent 2</option>
263270
<option value="tailwind">Tailwind CSS</option>
271+
<option value="fluent2-highcontrast">Fluent 2 High Contrast</option>
264272
<option value="highcontrast">High Contrast</option>
265273
<option value="fluent">Fluent</option>
266274
</select>

models/config.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"architectures": [
3+
"BertModel"
4+
],
5+
"attention_probs_dropout_prob": 0.1,
6+
"classifier_dropout": null,
7+
"hidden_act": "gelu",
8+
"hidden_dropout_prob": 0.1,
9+
"hidden_size": 384,
10+
"initializer_range": 0.02,
11+
"intermediate_size": 1536,
12+
"layer_norm_eps": 1e-12,
13+
"max_position_embeddings": 512,
14+
"model_type": "bert",
15+
"num_attention_heads": 12,
16+
"num_hidden_layers": 12,
17+
"pad_token_id": 0,
18+
"position_embedding_type": "absolute",
19+
"torch_dtype": "float16",
20+
"transformers_version": "4.28.1",
21+
"type_vocab_size": 2,
22+
"use_cache": true,
23+
"vocab_size": 30522
24+
}

models/onnx/model_quantized.onnx

32.4 MB
Binary file not shown.

0 commit comments

Comments
 (0)