mirror of
https://github.com/QuantumNous/new-api.git
synced 2026-09-07 01:56:53 +00:00
Add a Bun script to apply and normalize AGPL copyright headers across the default frontend source files. The script keeps headers idempotent, upgrades existing headers to the 2023-2026 QuantumNous range, and is exposed through `bun run copyright` for future maintenance.
83 lines
2.9 KiB
TypeScript
Vendored
83 lines
2.9 KiB
TypeScript
Vendored
/*
|
|
Copyright (C) 2023-2026 QuantumNous
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU Affero General Public License as
|
|
published by the Free Software Foundation, either version 3 of the
|
|
License, or (at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU Affero General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
For commercial licensing, please contact support@quantumnous.com
|
|
*/
|
|
import { SettingsPage } from '../components/settings-page'
|
|
import type { ModelSettings } from '../types'
|
|
import {
|
|
MODELS_DEFAULT_SECTION,
|
|
getModelsSectionContent,
|
|
} from './section-registry.tsx'
|
|
|
|
const defaultModelSettings: ModelSettings = {
|
|
'global.pass_through_request_enabled': false,
|
|
'global.thinking_model_blacklist': '[]',
|
|
'global.chat_completions_to_responses_policy': '{}',
|
|
'general_setting.ping_interval_enabled': false,
|
|
'general_setting.ping_interval_seconds': 60,
|
|
'gemini.safety_settings': '',
|
|
'gemini.version_settings': '',
|
|
'gemini.supported_imagine_models': '',
|
|
'gemini.thinking_adapter_enabled': false,
|
|
'gemini.thinking_adapter_budget_tokens_percentage': 0.6,
|
|
'gemini.function_call_thought_signature_enabled': true,
|
|
'gemini.remove_function_response_id_enabled': true,
|
|
'claude.model_headers_settings': '',
|
|
'claude.default_max_tokens': '',
|
|
'claude.thinking_adapter_enabled': true,
|
|
'claude.thinking_adapter_budget_tokens_percentage': 0.8,
|
|
'grok.violation_deduction_enabled': true,
|
|
'grok.violation_deduction_amount': 0.05,
|
|
ModelPrice: '',
|
|
ModelRatio: '',
|
|
CacheRatio: '',
|
|
CreateCacheRatio: '',
|
|
CompletionRatio: '',
|
|
ImageRatio: '',
|
|
AudioRatio: '',
|
|
AudioCompletionRatio: '',
|
|
ExposeRatioEnabled: false,
|
|
'billing_setting.billing_mode': '{}',
|
|
'billing_setting.billing_expr': '{}',
|
|
'tool_price_setting.prices': '{}',
|
|
TopupGroupRatio: '',
|
|
GroupRatio: '',
|
|
UserUsableGroups: '',
|
|
GroupGroupRatio: '',
|
|
AutoGroups: '',
|
|
DefaultUseAutoGroup: false,
|
|
'group_ratio_setting.group_special_usable_group': '{}',
|
|
'channel_affinity_setting.enabled': false,
|
|
'channel_affinity_setting.switch_on_success': true,
|
|
'channel_affinity_setting.max_entries': 100000,
|
|
'channel_affinity_setting.default_ttl_seconds': 3600,
|
|
'channel_affinity_setting.rules': '[]',
|
|
'model_deployment.ionet.api_key': '',
|
|
'model_deployment.ionet.enabled': false,
|
|
}
|
|
|
|
export function ModelSettings() {
|
|
return (
|
|
<SettingsPage
|
|
routePath='/_authenticated/system-settings/models/$section'
|
|
defaultSettings={defaultModelSettings}
|
|
defaultSection={MODELS_DEFAULT_SECTION}
|
|
getSectionContent={getModelsSectionContent}
|
|
/>
|
|
)
|
|
}
|