-
Notifications
You must be signed in to change notification settings - Fork 399
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'Developing/feature/AI'
- Loading branch information
Showing
346 changed files
with
25,197 additions
and
9,820 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
<!-- | ||
(c) Copyright Ascensio System SIA 2020 | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
--> | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | ||
<title>Edit action</title> | ||
|
||
<script type="text/javascript" src="https://onlyoffice.github.io/sdkjs-plugins/v1/plugins.js"></script> | ||
<script type="text/javascript" src="https://onlyoffice.github.io/sdkjs-plugins/v1/plugins-ui.js"></script> | ||
<script src="vendor/jQuery-2.2.2-min/jquery-v2.2.2-min.js"></script> | ||
<script src="vendor/select2-4.0.6-rc.1/dist/js/select2.js"></script> | ||
<script type="text/javascript" src="scripts/engine/storage.js"></script> | ||
<link rel="stylesheet" href="https://onlyoffice.github.io/sdkjs-plugins/v1/plugins.css"> | ||
<link rel="stylesheet" href="https://onlyoffice.github.io/sdkjs-plugins/v1/plugins.css"> | ||
<link rel="stylesheet" href="vendor/select2-4.0.6-rc.1/dist/css/select2.css"/> | ||
<link rel="stylesheet" href="./resources/styles/common.css"> | ||
<link rel="stylesheet" href="./resources/styles/aiModelEdit.css"> | ||
</head> | ||
<body class="noselect"> | ||
<div class="section"> | ||
<div class="form-vertical-item"> | ||
<div class="section-label"> | ||
<label class="i18n">Model name</label> | ||
</div> | ||
<input id="name-input" type="text" class="form-control"/> | ||
</div> | ||
</div> | ||
|
||
<div class="section"> | ||
<div class="section-label" id="provider-section-label"> | ||
<label class="i18n">Provider</label> | ||
</div> | ||
<div class="form-horizontal-item"> | ||
<label class="i18n">Name</label> | ||
<select id="provider-name-cmb" class="form-control"></select> | ||
</div> | ||
<div class="form-horizontal-item"> | ||
<label class="i18n">URL</label> | ||
<input id="provider-url-input" type="text" class="form-control"/> | ||
</div> | ||
<div class="form-horizontal-item"> | ||
<label class="i18n">Key</label> | ||
<input id="provider-key-input" type="text" class="form-control"/> | ||
</div> | ||
</div> | ||
|
||
<div class="section"> | ||
<div class="form-vertical-item"> | ||
<div class="section-label"> | ||
<label class="i18n">Model</label> | ||
<div id="update-models-row"> | ||
<div id="update-models-loader-container" class="asc-loader-container"></div> | ||
<button id="update-models-btn" class="action-btn i18n">Update models list</button> | ||
<img id="update-models-error" src="resources/icons/error-small/error.png"/> | ||
</div> | ||
</div> | ||
<select id="model-name-cmb" class="form-control"></select> | ||
</div> | ||
</div> | ||
|
||
<div class="section" style="margin-bottom: 0;"> | ||
<div class="form-vertical-item"> | ||
<div class="section-label"> | ||
<label class="i18n">Use model for</label> | ||
</div> | ||
</div> | ||
<div class="form-horizontal-item" id="block-use-for" style="margin-bottom: 0;"> | ||
<div id="use-for-text"></div> | ||
<div id="use-for-image"></div> | ||
<div id="use-for-embeddings"></div> | ||
<div id="use-for-audio"></div> | ||
<div id="use-for-moderations"></div> | ||
<div id="use-for-realtime"></div> | ||
<div id="use-for-code"></div> | ||
<div id="use-for-vision"></div> | ||
|
||
</div> | ||
</div> | ||
<script type="text/javascript" src="scripts/aiModelEdit.js"></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
<!-- | ||
(c) Copyright Ascensio System SIA 2020 | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
--> | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | ||
<title>AI Models list</title> | ||
|
||
<script type="text/javascript" src="https://onlyoffice.github.io/sdkjs-plugins/v1/plugins.js"></script> | ||
<script type="text/javascript" src="https://onlyoffice.github.io/sdkjs-plugins/v1/plugins-ui.js"></script> | ||
<link rel="stylesheet" href="https://onlyoffice.github.io/sdkjs-plugins/v1/plugins.css"> | ||
<link rel="stylesheet" href="https://onlyoffice.github.io/sdkjs-plugins/v1/plugins.css"> | ||
<link rel="stylesheet" href="./resources/styles/common.css"> | ||
<link rel="stylesheet" href="./resources/styles/aiModelsList.css"> | ||
</head> | ||
<body class="noselect"> | ||
<div id="ai-models-list"> | ||
<!-- Dynamic render items --> | ||
</div> | ||
<div id="buttons-block"> | ||
<button id="add-btn" class="btn-text-default i18n">Add</button> | ||
<button id="edit-btn" class="btn-text-default i18n">Edit</button> | ||
<button id="delete-btn" class="btn-text-default i18n">Delete</button> | ||
</div> | ||
<script type="text/javascript" src="scripts/aiModelsList.js"></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
{ | ||
"name" : "AI", | ||
"nameLocale": { | ||
"ru": "ИИ", | ||
"fr": "AI", | ||
"es": "AI", | ||
"de": "AI", | ||
"cs": "AI", | ||
"zh": "AI", | ||
"pt-BR": "AI" | ||
}, | ||
|
||
"guid" : "asc.{9DC93CDB-B576-4F0C-B55E-FCC9C48DD007}", | ||
"version": "2.1.0", | ||
"minVersion" : "8.2.0", | ||
|
||
"variations" : [ | ||
{ | ||
"description": "Use the AI chatbot to perform tasks which involve understanding or generating natural language or code.", | ||
"descriptionLocale": { | ||
"ru": "Используйте чат-бот AI для выполнения задач, связанных с пониманием или генерацией естественного языка или кода.", | ||
"fr": "Utilisez le chatbot AI pour effectuer des tâches qui impliquent la compréhension ou la génération de langage naturel ou de code.", | ||
"es": "Utilice el chatbot AI para realizar tareas que impliquen la comprensión o generación de lenguaje natural o de código.", | ||
"pt-BR": "Use o chatbot AI para realizar tarefas que envolvam compreensão ou geração de linguagem ou código natural.", | ||
"de": "Verwenden Sie den AI-Chatbot, um Aufgaben auszuführen, die das Verstehen oder Generieren von natürlicher Sprache oder Code beinhalten.", | ||
"cs": "AI API lze použít prakticky na jakýkoli úkol, který zahrnuje porozumění nebo generování přirozeného jazyka nebo kódu.", | ||
"zh": "使用 AI 聊天机器人完成有关理解、生成自然语言或代码的任务。" | ||
}, | ||
|
||
"url" : "index.html", | ||
|
||
"icons": "resources/%theme-type%(light|dark)/icon%scale%(default).%extension%(png)", | ||
|
||
"isViewer" : false, | ||
"EditorsSupport" : ["word", "cell", "slide"], | ||
"type" : "background", | ||
"initDataType" : "none", | ||
"buttons" : [], | ||
"events" : ["onContextMenuShow", "onContextMenuClick", "onToolbarMenuClick"], | ||
|
||
"store": { | ||
"background": { | ||
"light" : "linear-gradient(90deg, #F9B6FF 0%, #E370EE 102.01%)", | ||
"dark" : "linear-gradient(90deg, #F9B6FF 0%, #E370EE 102.01%)" | ||
}, | ||
"screenshots" : | ||
[ | ||
"resources/store/screenshots/screen_1.png", | ||
"resources/store/screenshots/screen_2.png", | ||
"resources/store/screenshots/screen_3.png", | ||
"resources/store/screenshots/screen_4.png", | ||
"resources/store/screenshots/screen_5.png", | ||
"resources/store/screenshots/screen_6.png" | ||
], | ||
"icons" : { | ||
"light" : "resources/store/icons", | ||
"dark" : "resources/store/icons" | ||
}, | ||
"categories": ["specAbilities", "work", "recommended"] | ||
} | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
{ | ||
"name" : "AI", | ||
"nameLocale": { | ||
"ru": "ИИ", | ||
"fr": "AI", | ||
"es": "AI", | ||
"de": "AI", | ||
"cs": "AI", | ||
"zh": "AI", | ||
"pt-BR": "AI" | ||
}, | ||
|
||
"guid" : "asc.{9DC93CDB-B576-4F0C-B55E-FCC9C48DD007}", | ||
"version": "2.1.0", | ||
"minVersion" : "7.4.0", | ||
|
||
"variations" : [ | ||
{ | ||
"description": "Use the AI chatbot to perform tasks which involve understanding or generating natural language or code.", | ||
"descriptionLocale": { | ||
"ru": "Используйте чат-бот AI для выполнения задач, связанных с пониманием или генерацией естественного языка или кода.", | ||
"fr": "Utilisez le chatbot AI pour effectuer des tâches qui impliquent la compréhension ou la génération de langage naturel ou de code.", | ||
"es": "Utilice el chatbot AI para realizar tareas que impliquen la comprensión o generación de lenguaje natural o de código.", | ||
"pt-BR": "Use o chatbot AI para realizar tarefas que envolvam compreensão ou geração de linguagem ou código natural.", | ||
"de": "Verwenden Sie den AI-Chatbot, um Aufgaben auszuführen, die das Verstehen oder Generieren von natürlicher Sprache oder Code beinhalten.", | ||
"cs": "AI API lze použít prakticky na jakýkoli úkol, který zahrnuje porozumění nebo generování přirozeného jazyka nebo kódu.", | ||
"zh": "使用 AI 聊天机器人完成有关理解、生成自然语言或代码的任务。" | ||
}, | ||
|
||
"url" : "index.html", | ||
|
||
"icons": "resources/%theme-type%(light|dark)/icon%scale%(default).%extension%(png)", | ||
|
||
"isViewer" : false, | ||
"EditorsSupport" : ["word", "cell", "slide"], | ||
"type" : "background", | ||
"initDataType" : "none", | ||
"buttons" : [], | ||
"events" : ["onContextMenuShow", "onContextMenuClick", "onToolbarMenuClick"], | ||
|
||
"store": { | ||
"background": { | ||
"light" : "linear-gradient(90deg, #F9B6FF 0%, #E370EE 102.01%)", | ||
"dark" : "linear-gradient(90deg, #F9B6FF 0%, #E370EE 102.01%)" | ||
}, | ||
"screenshots" : | ||
[ | ||
"resources/store/screenshots/screen_1.png", | ||
"resources/store/screenshots/screen_2.png", | ||
"resources/store/screenshots/screen_3.png", | ||
"resources/store/screenshots/screen_4.png", | ||
"resources/store/screenshots/screen_5.png", | ||
"resources/store/screenshots/screen_6.png", | ||
"resources/store/screenshots/screen_7.png", | ||
"resources/store/screenshots/screen_8.png", | ||
"resources/store/screenshots/screen_9.png", | ||
"resources/store/screenshots/screen_10.png" | ||
], | ||
"icons" : { | ||
"light" : "resources/store/icons", | ||
"dark" : "resources/store/icons" | ||
}, | ||
"categories": ["specAbilities", "work", "recommended"] | ||
} | ||
} | ||
] | ||
} |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
<!-- | ||
(c) Copyright Ascensio System SIA 2020 | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
--> | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<title>AI Constructor</title> | ||
<script type="text/javascript" src="https://onlyoffice.github.io/sdkjs-plugins/v1/plugins.js"></script> | ||
<script type="text/javascript" src="https://onlyoffice.github.io/sdkjs-plugins/v1/plugins-ui.js"></script> | ||
<link rel="stylesheet" href="https://onlyoffice.github.io/sdkjs-plugins/v1/plugins.css"> | ||
|
||
<script type="text/javascript" src="vendor/GPT-3-Encoder/encoder.js"></script> | ||
|
||
<script type="text/javascript" src="scripts/engine/storage.js"></script> | ||
<script type="text/javascript" src="scripts/engine/internal_providers.js"></script> | ||
<script type="text/javascript" src="scripts/engine/local_storage.js"></script> | ||
<script type="text/javascript" src="scripts/engine/engine.js"></script> | ||
|
||
<script type="text/javascript" src="scripts/engine/buttons.js"></script> | ||
<script type="text/javascript" src="scripts/engine/register.js"></script> | ||
<script type="text/javascript" src="scripts/engine/library.js"></script> | ||
|
||
<script type="text/javascript" src="scripts/code.js"></script> | ||
</head> | ||
<body> | ||
</body> | ||
</html> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+209 Bytes
sdkjs-plugins/content/ai/resources/icons/dark/ai-embeddings@1.25x.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+227 Bytes
sdkjs-plugins/content/ai/resources/icons/dark/ai-embeddings@1.5x.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+264 Bytes
sdkjs-plugins/content/ai/resources/icons/dark/ai-embeddings@1.75x.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.
Binary file added
BIN
+204 Bytes
sdkjs-plugins/content/ai/resources/icons/dark/ai-moderations@1.25x.png
Oops, something went wrong.
Binary file added
BIN
+236 Bytes
sdkjs-plugins/content/ai/resources/icons/dark/ai-moderations@1.5x.png
Oops, something went wrong.
Binary file added
BIN
+255 Bytes
sdkjs-plugins/content/ai/resources/icons/dark/ai-moderations@1.75x.png
Oops, something went wrong.
Binary file added
BIN
+269 Bytes
sdkjs-plugins/content/ai/resources/icons/dark/ai-moderations@2x.png
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+279 Bytes
sdkjs-plugins/content/ai/resources/icons/dark/ai-realtime@1.25x.png
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+335 Bytes
sdkjs-plugins/content/ai/resources/icons/dark/ai-realtime@1.75x.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+201 Bytes
sdkjs-plugins/content/ai/resources/icons/dark/ai-visual-analysis.png
Oops, something went wrong.
Binary file added
BIN
+237 Bytes
sdkjs-plugins/content/ai/resources/icons/dark/ai-visual-analysis@1.25x.png
Oops, something went wrong.
Binary file added
BIN
+262 Bytes
sdkjs-plugins/content/ai/resources/icons/dark/ai-visual-analysis@1.5x.png
Oops, something went wrong.
Binary file added
BIN
+289 Bytes
sdkjs-plugins/content/ai/resources/icons/dark/ai-visual-analysis@1.75x.png
Oops, something went wrong.
Binary file added
BIN
+340 Bytes
sdkjs-plugins/content/ai/resources/icons/dark/ai-visual-analysis@2x.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+305 Bytes
sdkjs-plugins/content/ai/resources/icons/dark/big/default@1.75x.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+360 Bytes
sdkjs-plugins/content/ai/resources/icons/dark/big/settings@1.25x.png
Oops, something went wrong.
Binary file added
BIN
+419 Bytes
sdkjs-plugins/content/ai/resources/icons/dark/big/settings@1.5x.png
Oops, something went wrong.
Binary file added
BIN
+461 Bytes
sdkjs-plugins/content/ai/resources/icons/dark/big/settings@1.75x.png
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+179 Bytes
sdkjs-plugins/content/ai/resources/icons/dark/big/summarization.png
Oops, something went wrong.
Binary file added
BIN
+191 Bytes
sdkjs-plugins/content/ai/resources/icons/dark/big/summarization@1.25x.png
Oops, something went wrong.
Binary file added
BIN
+236 Bytes
sdkjs-plugins/content/ai/resources/icons/dark/big/summarization@1.5x.png
Oops, something went wrong.
Binary file added
BIN
+267 Bytes
sdkjs-plugins/content/ai/resources/icons/dark/big/summarization@1.75x.png
Oops, something went wrong.
Binary file added
BIN
+323 Bytes
sdkjs-plugins/content/ai/resources/icons/dark/big/summarization@2x.png
Oops, something went wrong.
Binary file added
BIN
+258 Bytes
sdkjs-plugins/content/ai/resources/icons/dark/big/text-to-image.png
Oops, something went wrong.
Binary file added
BIN
+270 Bytes
sdkjs-plugins/content/ai/resources/icons/dark/big/text-to-image@1.25x.png
Oops, something went wrong.
Binary file added
BIN
+352 Bytes
sdkjs-plugins/content/ai/resources/icons/dark/big/text-to-image@1.5x.png
Oops, something went wrong.
Binary file added
BIN
+396 Bytes
sdkjs-plugins/content/ai/resources/icons/dark/big/text-to-image@1.75x.png
Oops, something went wrong.
Binary file added
BIN
+531 Bytes
sdkjs-plugins/content/ai/resources/icons/dark/big/text-to-image@2x.png
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+300 Bytes
sdkjs-plugins/content/ai/resources/icons/dark/big/translation@1.25x.png
Oops, something went wrong.
Binary file added
BIN
+339 Bytes
sdkjs-plugins/content/ai/resources/icons/dark/big/translation@1.5x.png
Oops, something went wrong.
Binary file added
BIN
+372 Bytes
sdkjs-plugins/content/ai/resources/icons/dark/big/translation@1.75x.png
Oops, something went wrong.
Binary file added
BIN
+440 Bytes
sdkjs-plugins/content/ai/resources/icons/dark/big/translation@2x.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+168 Bytes
sdkjs-plugins/content/ai/resources/icons/dark/summarization@1.25x.png
Oops, something went wrong.
Binary file added
BIN
+180 Bytes
sdkjs-plugins/content/ai/resources/icons/dark/summarization@1.5x.png
Oops, something went wrong.
Binary file added
BIN
+191 Bytes
sdkjs-plugins/content/ai/resources/icons/dark/summarization@1.75x.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+212 Bytes
sdkjs-plugins/content/ai/resources/icons/dark/text-to-image@1.25x.png
Oops, something went wrong.
Binary file added
BIN
+261 Bytes
sdkjs-plugins/content/ai/resources/icons/dark/text-to-image@1.5x.png
Oops, something went wrong.
Binary file added
BIN
+270 Bytes
sdkjs-plugins/content/ai/resources/icons/dark/text-to-image@1.75x.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+229 Bytes
sdkjs-plugins/content/ai/resources/icons/dark/translation@1.25x.png
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+300 Bytes
sdkjs-plugins/content/ai/resources/icons/dark/translation@1.75x.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
4 changes: 4 additions & 0 deletions
4
sdkjs-plugins/content/ai/resources/icons/error-big/error-big.svg
Oops, something went wrong.
Binary file added
BIN
+300 Bytes
sdkjs-plugins/content/ai/resources/icons/error-big/error-big@1.25x.png
Oops, something went wrong.
Binary file added
BIN
+332 Bytes
sdkjs-plugins/content/ai/resources/icons/error-big/error-big@1.5x.png
Oops, something went wrong.
Binary file added
BIN
+345 Bytes
sdkjs-plugins/content/ai/resources/icons/error-big/error-big@1.75x.png
Oops, something went wrong.
Binary file added
BIN
+361 Bytes
sdkjs-plugins/content/ai/resources/icons/error-big/error-big@2x.png
Oops, something went wrong.
Oops, something went wrong.
4 changes: 4 additions & 0 deletions
4
sdkjs-plugins/content/ai/resources/icons/error-small/error.svg
Oops, something went wrong.
Binary file added
BIN
+245 Bytes
sdkjs-plugins/content/ai/resources/icons/error-small/error@1.25x.png
Oops, something went wrong.
Binary file added
BIN
+288 Bytes
sdkjs-plugins/content/ai/resources/icons/error-small/error@1.5x.png
Oops, something went wrong.
Binary file added
BIN
+309 Bytes
sdkjs-plugins/content/ai/resources/icons/error-small/error@1.75x.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+197 Bytes
sdkjs-plugins/content/ai/resources/icons/light/ai-embeddings@1.25x.png
Oops, something went wrong.
Binary file added
BIN
+220 Bytes
sdkjs-plugins/content/ai/resources/icons/light/ai-embeddings@1.5x.png
Oops, something went wrong.
Binary file added
BIN
+247 Bytes
sdkjs-plugins/content/ai/resources/icons/light/ai-embeddings@1.75x.png
Oops, something went wrong.
Binary file added
BIN
+310 Bytes
sdkjs-plugins/content/ai/resources/icons/light/ai-embeddings@2x.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+198 Bytes
sdkjs-plugins/content/ai/resources/icons/light/ai-moderations@1.25x.png
Oops, something went wrong.
Binary file added
BIN
+226 Bytes
sdkjs-plugins/content/ai/resources/icons/light/ai-moderations@1.5x.png
Oops, something went wrong.
Binary file added
BIN
+241 Bytes
sdkjs-plugins/content/ai/resources/icons/light/ai-moderations@1.75x.png
Oops, something went wrong.
Binary file added
BIN
+268 Bytes
sdkjs-plugins/content/ai/resources/icons/light/ai-moderations@2x.png
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+265 Bytes
sdkjs-plugins/content/ai/resources/icons/light/ai-realtime@1.25x.png
Oops, something went wrong.
Binary file added
BIN
+285 Bytes
sdkjs-plugins/content/ai/resources/icons/light/ai-realtime@1.5x.png
Oops, something went wrong.
Binary file added
BIN
+320 Bytes
sdkjs-plugins/content/ai/resources/icons/light/ai-realtime@1.75x.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+193 Bytes
sdkjs-plugins/content/ai/resources/icons/light/ai-visual-analysis.png
Oops, something went wrong.
Binary file added
BIN
+231 Bytes
sdkjs-plugins/content/ai/resources/icons/light/ai-visual-analysis@1.25x.png
Oops, something went wrong.
Binary file added
BIN
+252 Bytes
sdkjs-plugins/content/ai/resources/icons/light/ai-visual-analysis@1.5x.png
Oops, something went wrong.
Binary file added
BIN
+278 Bytes
sdkjs-plugins/content/ai/resources/icons/light/ai-visual-analysis@1.75x.png
Oops, something went wrong.
Binary file added
BIN
+348 Bytes
sdkjs-plugins/content/ai/resources/icons/light/ai-visual-analysis@2x.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+206 Bytes
sdkjs-plugins/content/ai/resources/icons/light/big/ask-ai@1.25x.png
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+273 Bytes
sdkjs-plugins/content/ai/resources/icons/light/big/ask-ai@1.75x.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+317 Bytes
sdkjs-plugins/content/ai/resources/icons/light/big/default@1.25x.png
Oops, something went wrong.
Binary file added
BIN
+273 Bytes
sdkjs-plugins/content/ai/resources/icons/light/big/default@1.5x.png
Oops, something went wrong.
Binary file added
BIN
+347 Bytes
sdkjs-plugins/content/ai/resources/icons/light/big/default@1.75x.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+346 Bytes
sdkjs-plugins/content/ai/resources/icons/light/big/settings@1.25x.png
Oops, something went wrong.
Binary file added
BIN
+391 Bytes
sdkjs-plugins/content/ai/resources/icons/light/big/settings@1.5x.png
Oops, something went wrong.
Binary file added
BIN
+438 Bytes
sdkjs-plugins/content/ai/resources/icons/light/big/settings@1.75x.png
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+174 Bytes
sdkjs-plugins/content/ai/resources/icons/light/big/summarization.png
Oops, something went wrong.
Binary file added
BIN
+189 Bytes
sdkjs-plugins/content/ai/resources/icons/light/big/summarization@1.25x.png
Oops, something went wrong.
Binary file added
BIN
+227 Bytes
sdkjs-plugins/content/ai/resources/icons/light/big/summarization@1.5x.png
Oops, something went wrong.
Binary file added
BIN
+252 Bytes
sdkjs-plugins/content/ai/resources/icons/light/big/summarization@1.75x.png
Oops, something went wrong.
Binary file added
BIN
+323 Bytes
sdkjs-plugins/content/ai/resources/icons/light/big/summarization@2x.png
Oops, something went wrong.
Binary file added
BIN
+250 Bytes
sdkjs-plugins/content/ai/resources/icons/light/big/text-to-image.png
Oops, something went wrong.
Binary file added
BIN
+263 Bytes
sdkjs-plugins/content/ai/resources/icons/light/big/text-to-image@1.25x.png
Oops, something went wrong.
Binary file added
BIN
+341 Bytes
sdkjs-plugins/content/ai/resources/icons/light/big/text-to-image@1.5x.png
Oops, something went wrong.
Binary file added
BIN
+384 Bytes
sdkjs-plugins/content/ai/resources/icons/light/big/text-to-image@1.75x.png
Oops, something went wrong.
Binary file added
BIN
+527 Bytes
sdkjs-plugins/content/ai/resources/icons/light/big/text-to-image@2x.png
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+280 Bytes
sdkjs-plugins/content/ai/resources/icons/light/big/translation@1.25x.png
Oops, something went wrong.
Binary file added
BIN
+318 Bytes
sdkjs-plugins/content/ai/resources/icons/light/big/translation@1.5x.png
Oops, something went wrong.
Binary file added
BIN
+353 Bytes
sdkjs-plugins/content/ai/resources/icons/light/big/translation@1.75x.png
Oops, something went wrong.
Binary file added
BIN
+434 Bytes
sdkjs-plugins/content/ai/resources/icons/light/big/translation@2x.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+165 Bytes
sdkjs-plugins/content/ai/resources/icons/light/summarization@1.25x.png
Oops, something went wrong.
Binary file added
BIN
+175 Bytes
sdkjs-plugins/content/ai/resources/icons/light/summarization@1.5x.png
Oops, something went wrong.
Binary file added
BIN
+189 Bytes
sdkjs-plugins/content/ai/resources/icons/light/summarization@1.75x.png
Oops, something went wrong.
Binary file added
BIN
+232 Bytes
sdkjs-plugins/content/ai/resources/icons/light/summarization@2x.png
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+209 Bytes
sdkjs-plugins/content/ai/resources/icons/light/text-to-image@1.25x.png
Oops, something went wrong.
Binary file added
BIN
+255 Bytes
sdkjs-plugins/content/ai/resources/icons/light/text-to-image@1.5x.png
Oops, something went wrong.
Binary file added
BIN
+263 Bytes
sdkjs-plugins/content/ai/resources/icons/light/text-to-image@1.75x.png
Oops, something went wrong.
Binary file added
BIN
+366 Bytes
sdkjs-plugins/content/ai/resources/icons/light/text-to-image@2x.png
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+216 Bytes
sdkjs-plugins/content/ai/resources/icons/light/translation@1.25x.png
Oops, something went wrong.
Binary file added
BIN
+237 Bytes
sdkjs-plugins/content/ai/resources/icons/light/translation@1.5x.png
Oops, something went wrong.
Binary file added
BIN
+280 Bytes
sdkjs-plugins/content/ai/resources/icons/light/translation@1.75x.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.