forked from phoenix/litellm-mirror
ui -show tooltip with info
This commit is contained in:
parent
92f21cba30
commit
1bb1b9c259
1 changed files with 20 additions and 0 deletions
|
@ -261,6 +261,7 @@ const ModelDashboard: React.FC<ModelDashboardProps> = ({
|
||||||
<Form.Item
|
<Form.Item
|
||||||
label="tpm"
|
label="tpm"
|
||||||
name="tpm"
|
name="tpm"
|
||||||
|
tooltip="int (optional) - Tokens limit for this deployment: in tokens per minute (tpm). Find this information on your model/providers website"
|
||||||
>
|
>
|
||||||
<InputNumber min={0} step={1} />
|
<InputNumber min={0} step={1} />
|
||||||
|
|
||||||
|
@ -269,6 +270,7 @@ const ModelDashboard: React.FC<ModelDashboardProps> = ({
|
||||||
<Form.Item
|
<Form.Item
|
||||||
label="rpm"
|
label="rpm"
|
||||||
name="rpm"
|
name="rpm"
|
||||||
|
tooltip="int (optional) - Rate limit for this deployment: in requests per minute (rpm). Find this information on your model/providers website"
|
||||||
>
|
>
|
||||||
<InputNumber min={0} step={1} />
|
<InputNumber min={0} step={1} />
|
||||||
</Form.Item>
|
</Form.Item>
|
||||||
|
@ -283,6 +285,24 @@ const ModelDashboard: React.FC<ModelDashboardProps> = ({
|
||||||
|
|
||||||
</Form.Item>
|
</Form.Item>
|
||||||
|
|
||||||
|
<Form.Item
|
||||||
|
label="timeout"
|
||||||
|
name="timeout"
|
||||||
|
tooltip="int (optional) - Timeout in seconds for LLM requests (Defaults to 600 seconds)"
|
||||||
|
>
|
||||||
|
<InputNumber min={0} step={1} />
|
||||||
|
|
||||||
|
</Form.Item>
|
||||||
|
|
||||||
|
<Form.Item
|
||||||
|
label="stream_timeout"
|
||||||
|
name="stream_timeout"
|
||||||
|
tooltip="int (optional) - Timeout for stream requests (seconds)"
|
||||||
|
>
|
||||||
|
<InputNumber min={0} step={1} />
|
||||||
|
|
||||||
|
</Form.Item>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<Form.Item
|
<Form.Item
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue