:💩: | GPT -> gpt-unslother

This commit is contained in:
2026-05-18 21:44:35 +03:00
parent 9078983ffd
commit 5bbd602a99
11 changed files with 2054 additions and 138 deletions

View File

@@ -0,0 +1,27 @@
const {
plugin: { store },
ui: { TextBox, Text },
} = shelter;
export default () => (
<>
<Text>Unsloth Studio URL</Text>
<TextBox
placeholder="http://127.0.0.1:8888"
value={store.unslothUrl}
onInput={(value) => {
store.unslothUrl = value;
}}
/>
<div className="mb-2 mt-2">
<Text>Unsloth API Key (optional)</Text>
<TextBox
placeholder="sk-unsloth-..."
value={store.unslothKey}
onInput={(value) => {
store.unslothKey = value;
}}
/>
</div>
</>
);