mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-28 04:04:31 +00:00
fix(proxy_server.py): fix /config/update
/
allows updating router config via UI and having the change be propogated across all proxy instances by persisting config changes to the db
This commit is contained in:
parent
bae6f41017
commit
f54510b6ee
6 changed files with 50 additions and 90 deletions
|
@ -125,7 +125,7 @@ const GeneralSettings: React.FC<GeneralSettingsPageProps> = ({
|
|||
</TableRow>
|
||||
</TableHead>
|
||||
<TableBody>
|
||||
{Object.entries(routerSettings).map(([param, value]) => (
|
||||
{Object.entries(routerSettings).filter(([param, value]) => param != "fallbacks" && param != "context_window_fallbacks").map(([param, value]) => (
|
||||
<TableRow key={param}>
|
||||
<TableCell>
|
||||
<Text>{param}</Text>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue