forked from phoenix/litellm-mirror
feat(ui/model_dashboard.tsx): add databricks models via admin ui
This commit is contained in:
parent
c14584722e
commit
f04e4b921b
11 changed files with 263 additions and 9 deletions
|
@ -1,6 +1,14 @@
|
|||
from typing import List, Optional, Union, Dict, Tuple, Literal, TypedDict
|
||||
from typing import List, Optional, Union, Dict, Tuple, Literal
|
||||
from typing_extensions import TypedDict
|
||||
|
||||
|
||||
class CostPerToken(TypedDict):
|
||||
input_cost_per_token: float
|
||||
output_cost_per_token: float
|
||||
|
||||
|
||||
class ProviderField(TypedDict):
|
||||
field_name: str
|
||||
field_type: Literal["string"]
|
||||
field_description: str
|
||||
field_value: str
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue