import React from "react"; import { Form, Switch, Select, Input } from "antd"; import { Text, Button, Accordion, AccordionHeader, AccordionBody, TextInput } from "@tremor/react"; import { Row, Col, Typography, Card } from "antd"; import TextArea from "antd/es/input/TextArea"; const { Link } = Typography; interface AdvancedSettingsProps { showAdvancedSettings: boolean; setShowAdvancedSettings: (show: boolean) => void; } const AdvancedSettings: React.FC = ({ showAdvancedSettings, setShowAdvancedSettings, }) => { const [form] = Form.useForm(); const [customPricing, setCustomPricing] = React.useState(false); const [pricingModel, setPricingModel] = React.useState<'per_token' | 'per_second'>('per_token'); // Add validation function for numbers const validateNumber = (_: any, value: string) => { if (!value) { return Promise.resolve(); } if (isNaN(Number(value)) || Number(value) < 0) { return Promise.reject('Please enter a valid positive number'); } return Promise.resolve(); }; const validateJSON = (_: any, value: string) => { if (!value) { return Promise.resolve(); } try { JSON.parse(value); return Promise.resolve(); } catch (error) { return Promise.reject('Please enter valid JSON'); } }; // Handle custom pricing changes const handleCustomPricingChange = (checked: boolean) => { setCustomPricing(checked); if (!checked) { // Clear pricing fields when disabled form.setFieldsValue({ input_cost_per_token: undefined, output_cost_per_token: undefined, input_cost_per_second: undefined, }); } }; const handlePassThroughChange = (checked: boolean) => { const currentParams = form.getFieldValue('litellm_extra_params'); try { let paramsObj = currentParams ? JSON.parse(currentParams) : {}; if (checked) { paramsObj.use_in_pass_through = true; } else { delete paramsObj.use_in_pass_through; } // Only set the field value if there are remaining parameters if (Object.keys(paramsObj).length > 0) { form.setFieldValue('litellm_extra_params', JSON.stringify(paramsObj, null, 2)); } else { form.setFieldValue('litellm_extra_params', ''); } } catch (error) { // If JSON parsing fails, only create new object if checked is true if (checked) { form.setFieldValue('litellm_extra_params', JSON.stringify({ use_in_pass_through: true }, null, 2)); } else { form.setFieldValue('litellm_extra_params', ''); } } }; return ( <> Advanced Settings
{customPricing && (