+
+ {label}
+ {description && (
+
+ {description}
+
+ )}
+
+
+ );
+ }
+);
+
+SelectItem.displayName = 'SelectItem';
+
+export default ParamLoraSelect;
diff --git a/invokeai/frontend/web/src/features/lora/store/loraSlice.ts b/invokeai/frontend/web/src/features/lora/store/loraSlice.ts
new file mode 100644
index 0000000000..49b316b054
--- /dev/null
+++ b/invokeai/frontend/web/src/features/lora/store/loraSlice.ts
@@ -0,0 +1,44 @@
+import { PayloadAction, createSlice } from '@reduxjs/toolkit';
+
+export type Lora = {
+ name: string;
+ weight: number;
+};
+
+export const defaultLoRAConfig: Omit