Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,8 @@ import KernDropdown from "@/submodules/react-components/components/KernDropdown"
import { InfoButton } from "@/submodules/react-components/components/InfoButton";
import { InputWithSlider } from "@/submodules/react-components/components/InputWithSlider";
import { LLmPropsPrivatemodeAI } from "../types";
import { MODEL_MAP_FULL_NAME } from "@/submodules/javascript-functions/constants";


export const MODEL_MAP_FULL_NAME = {
'Meta-Llama-3.3-70B': "ibnzterrell/Meta-Llama-3.3-70B-Instruct-AWQ-INT4",
'gemma-3-27b': "leon-se/gemma-3-27b-it-fp8-dynamic",
}
const REVERSE_MAP_FULL_NAME = Object.fromEntries(Object.entries(MODEL_MAP_FULL_NAME).map(([key, value]) => [value, key]));
export const MODEL_OPTIONS = Object.keys(MODEL_MAP_FULL_NAME);
const MODEL_MAP_FULL_NAME_OPTIONS = Object.keys(REVERSE_MAP_FULL_NAME);
Expand Down
2 changes: 1 addition & 1 deletion src/components/shared/sidebar/Sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ export default function Sidebar() {
<Tooltip placement="right" trigger="hover" color="invert" content={TOOLTIPS_DICT.SIDEBAR.VERSION_OVERVIEW}>
<div onClick={requestVersionOverview} id="refineryVersion"
className="z-50 tooltip tooltip-right cursor-pointer select-none text-white flex items-center mr-1">
v1.21.0
v1.21.5
{hasUpdates && <Tooltip placement="right" trigger="hover" color="invert" content={TOOLTIPS_DICT.SIDEBAR.NEWER_VERSION_AVAILABLE} >
<MemoIconAlertCircle className="h-5 w-5 text-yellow-700" />
</Tooltip>}
Expand Down
2 changes: 1 addition & 1 deletion submodules/javascript-functions
2 changes: 1 addition & 1 deletion submodules/tailwind-config