Skip to content

Commit 41c9551

Browse files
v1.21.5 (#84)
* Release v1.21.5 * Models for privatemode in submodules * Submodules merged * Tinycolor install
1 parent 1fd273d commit 41c9551

File tree

5 files changed

+10
-13
lines changed

5 files changed

+10
-13
lines changed

package.json

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
"lint": "next lint"
1010
},
1111
"dependencies": {
12+
"@aws-sdk/client-s3": "3.726.1",
1213
"@headlessui/react": "^1.7.19",
1314
"@headlessui/tailwindcss": "^0.2.1",
1415
"@heroicons/react": "^2.1.4",
@@ -28,6 +29,8 @@
2829
"eslint": "9.14.0",
2930
"eslint-config-next": "15.0.3",
3031
"focus-visible": "^5.2.0",
32+
"i18next": "^23.11.5",
33+
"lodash": "^4.17.21",
3134
"lodash.debounce": "^4.0.8",
3235
"next": "14.2.32",
3336
"postcss-focus-visible": "^6.0.4",
@@ -40,14 +43,12 @@
4043
"react-router-dom": "^6.10.0",
4144
"rxjs": "^7.8.1",
4245
"tailwindcss": "^3.4.4",
43-
"typescript": "^5.1.3",
44-
"@aws-sdk/client-s3": "3.726.1",
45-
"i18next": "^23.11.5",
46-
"lodash": "^4.17.21"
46+
"tinycolor2": "^1.6.0",
47+
"typescript": "^5.1.3"
4748
},
4849
"devDependencies": {
4950
"autoprefixer": "^10.4.15",
5051
"postcss": "^8.4.28",
5152
"tailwindcss": "^3.1.8"
5253
}
53-
}
54+
}

src/components/projects/projectId/attributes/attributeId/LLM/models/PrivatemodeAi.tsx

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,8 @@ import KernDropdown from "@/submodules/react-components/components/KernDropdown"
33
import { InfoButton } from "@/submodules/react-components/components/InfoButton";
44
import { InputWithSlider } from "@/submodules/react-components/components/InputWithSlider";
55
import { LLmPropsPrivatemodeAI } from "../types";
6+
import { MODEL_MAP_FULL_NAME } from "@/submodules/javascript-functions/constants";
67

7-
8-
export const MODEL_MAP_FULL_NAME = {
9-
'Meta-Llama-3.3-70B': "ibnzterrell/Meta-Llama-3.3-70B-Instruct-AWQ-INT4",
10-
'gemma-3-27b': "leon-se/gemma-3-27b-it-fp8-dynamic",
11-
}
128
const REVERSE_MAP_FULL_NAME = Object.fromEntries(Object.entries(MODEL_MAP_FULL_NAME).map(([key, value]) => [value, key]));
139
export const MODEL_OPTIONS = Object.keys(MODEL_MAP_FULL_NAME);
1410
const MODEL_MAP_FULL_NAME_OPTIONS = Object.keys(REVERSE_MAP_FULL_NAME);

src/components/shared/sidebar/Sidebar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ export default function Sidebar() {
181181
<Tooltip placement="right" trigger="hover" color="invert" content={TOOLTIPS_DICT.SIDEBAR.VERSION_OVERVIEW}>
182182
<div onClick={requestVersionOverview} id="refineryVersion"
183183
className="z-50 tooltip tooltip-right cursor-pointer select-none text-white flex items-center mr-1">
184-
v1.21.0
184+
v1.21.5
185185
{hasUpdates && <Tooltip placement="right" trigger="hover" color="invert" content={TOOLTIPS_DICT.SIDEBAR.NEWER_VERSION_AVAILABLE} >
186186
<MemoIconAlertCircle className="h-5 w-5 text-yellow-700" />
187187
</Tooltip>}

0 commit comments

Comments
 (0)