mirror of
https://github.com/tiennm99/litellm.git
synced 2026-07-21 02:20:19 +00:00
ui - fix linting error
This commit is contained in:
@@ -9995,7 +9995,15 @@
|
||||
"mode": "chat",
|
||||
"supports_tool_choice": true
|
||||
},
|
||||
"mistralai/mistral-small-3.1-24b-instruct": {
|
||||
"openrouter/mistralai/mistral-small-3.1-24b-instruct": {
|
||||
"max_tokens": 32000,
|
||||
"input_cost_per_token": 1e-07,
|
||||
"output_cost_per_token": 3e-07,
|
||||
"litellm_provider": "openrouter",
|
||||
"mode": "chat",
|
||||
"supports_tool_choice": true
|
||||
},
|
||||
"openrouter/mistralai/mistral-small-3.2-24b-instruct": {
|
||||
"max_tokens": 32000,
|
||||
"input_cost_per_token": 1e-07,
|
||||
"output_cost_per_token": 3e-07,
|
||||
|
||||
@@ -3,7 +3,7 @@ import { ColumnDef } from "@tanstack/react-table";
|
||||
import { MCPTool, InputSchema } from "./types";
|
||||
import { Button, Callout, Icon } from "@tremor/react"
|
||||
|
||||
const AuthBanner = ({needsAuth, authValue}) => {
|
||||
const AuthBanner = ({needsAuth, authValue}: {needsAuth: boolean, authValue?: string | null}) => {
|
||||
if(!needsAuth || (needsAuth && authValue)) {
|
||||
return (
|
||||
<Callout
|
||||
|
||||
Reference in New Issue
Block a user