diff --git a/src/App.tsx b/src/App.tsx index 3b62231..f3963f0 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -348,6 +348,10 @@ export default function App() { (m) => m.provider === currentProvider.name )} defaultModel={config.default_model} + rawOther={config.raw_other} + onRawOtherChange={(nextRawOther) => + updateConfig((cfg) => ({ ...cfg, raw_other: nextRawOther })) + } onBack={() => setView("list")} onChange={handleUpdateProvider} onDelete={() => handleDeleteProvider(currentProvider.name)}