export const userModelConfigs = [ { id: 'user_001', name: '我的 GPT-4', type: 'basic', isActive: true, createdAt: '2026-03-26T10:00:00', updatedAt: '2026-03-26T10:00:00', basic: { apiUrl: 'https://api.openai.com/v1', apiKey: 'sk-user-abc123xyz456', modelName: 'gpt-4o', temperature: 0.7, maxTokens: 4096, topP: 0.9 } }, { id: 'user_002', name: 'Claude 备用', type: 'basic', isActive: false, createdAt: '2026-03-28T16:00:00', updatedAt: '2026-03-28T16:00:00', basic: { apiUrl: 'https://api.anthropic.com/v1', apiKey: 'sk-user-claude789abc', modelName: 'claude-3-sonnet', temperature: 0.8, maxTokens: 8192, topP: 0.9 } } ];