ui - fix linting error

This commit is contained in:
Ishaan Jaff
2025-06-23 18:18:36 -07:00
parent 180ed14918
commit 77813ebdf8
2 changed files with 10 additions and 2 deletions
@@ -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