forked from phoenix/litellm-mirror
(ui) allow settig all proxy models
This commit is contained in:
parent
203a91864c
commit
c35b4c9b80
1 changed files with 4 additions and 3 deletions
|
@ -115,19 +115,20 @@ const Team: React.FC<TeamProps> = ({
|
||||||
<Input />
|
<Input />
|
||||||
</Form.Item>
|
</Form.Item>
|
||||||
<Form.Item label="Models" name="models">
|
<Form.Item label="Models" name="models">
|
||||||
<Select2.Option key="all-proxy-models" value="all-proxy-models">
|
|
||||||
All Proxy Models
|
|
||||||
</Select2.Option>
|
|
||||||
<Select2
|
<Select2
|
||||||
mode="multiple"
|
mode="multiple"
|
||||||
placeholder="Select models"
|
placeholder="Select models"
|
||||||
style={{ width: "100%" }}
|
style={{ width: "100%" }}
|
||||||
>
|
>
|
||||||
|
<Select2.Option key="all-proxy-models" value="all-proxy-models">
|
||||||
|
{"All Proxy Models"}
|
||||||
|
</Select2.Option>
|
||||||
{userModels && userModels.map((model) => (
|
{userModels && userModels.map((model) => (
|
||||||
<Select2.Option key={model} value={model}>
|
<Select2.Option key={model} value={model}>
|
||||||
{model}
|
{model}
|
||||||
</Select2.Option>
|
</Select2.Option>
|
||||||
))}
|
))}
|
||||||
|
|
||||||
</Select2>
|
</Select2>
|
||||||
</Form.Item>
|
</Form.Item>
|
||||||
<Form.Item label="Max Budget (USD)" name="max_budget">
|
<Form.Item label="Max Budget (USD)" name="max_budget">
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue