forked from phoenix/litellm-mirror
stash ui changes
This commit is contained in:
parent
c1a215b955
commit
e62d8e9bc9
1 changed files with 9 additions and 13 deletions
|
@ -1248,23 +1248,19 @@ const handleEditSubmit = async (formValues: Record<string, any>) => {
|
|||
))}
|
||||
</Select>
|
||||
</div>
|
||||
<Card>
|
||||
|
||||
<Title>
|
||||
Retry Policy for {selectedModelGroup}
|
||||
</Title>
|
||||
{
|
||||
retry_policy_map && Object.keys(retry_policy_map).map((key, idx) => (
|
||||
<div key={idx}>
|
||||
<Grid numItems={2}>
|
||||
<Text className="mb-6">How many retries should be attempted based on the Exception</Text>
|
||||
{retry_policy_map &&
|
||||
Object.keys(retry_policy_map).map((key, idx) => (
|
||||
<div key={idx} className="flex justify-start">
|
||||
<Text>{key}</Text>
|
||||
<InputNumber />
|
||||
|
||||
</Grid>
|
||||
|
||||
<InputNumber className="mr-5" />
|
||||
</div>
|
||||
))
|
||||
}
|
||||
</Card>
|
||||
))}
|
||||
|
||||
</TabPanel>
|
||||
|
||||
</TabPanels>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue