Spaces:
Runtime error
Runtime error
File size: 22,586 Bytes
b30d305 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 | // AI API统一转换代理系统前端交互逻辑
class APIConverter {
constructor() {
this.currentTaskId = null;
this.progressInterval = null;
this.channels = [];
this.init();
}
init() {
this.setupEventListeners();
this.setupTabNavigation();
this.loadProviders();
this.loadCapabilities();
this.loadChannels();
this.setupModernAnimations();
}
setupEventListeners() {
// 渠道表单提交事件
if (document.getElementById('channelForm')) {
document.getElementById('channelForm').addEventListener('submit', (e) => {
e.preventDefault();
const form = e.target;
if (form.dataset.isEditing === 'true') {
// 编辑模式
const channelId = form.dataset.editingChannelId;
this.updateChannel(channelId);
} else {
// 创建模式
this.createChannel();
}
});
}
// 检测表单提交事件
if (document.getElementById('detectionForm')) {
document.getElementById('detectionForm').addEventListener('submit', (e) => {
e.preventDefault();
this.startDetection();
});
}
// 提供商选择事件
if (document.getElementById('provider')) {
document.getElementById('provider').addEventListener('change', (e) => {
this.updateDefaultUrl(e.target.value);
this.updateModelOptions(e.target.value);
});
}
// 渠道提供商选择事件
if (document.getElementById('channel_provider')) {
document.getElementById('channel_provider').addEventListener('change', (e) => {
this.updateChannelDefaultUrl(e.target.value);
});
}
}
updateDefaultUrl(provider) {
const defaultUrls = {
'openai': 'https://api.openai.com/v1',
'anthropic': 'https://api.anthropic.com',
'gemini': 'https://generativelanguage.googleapis.com/v1beta'
};
const baseUrlInput = document.getElementById('detection_base_url');
if (defaultUrls[provider] && baseUrlInput) {
baseUrlInput.value = defaultUrls[provider];
}
}
updateChannelDefaultUrl(provider) {
const defaultUrls = {
'openai': 'https://api.openai.com/v1',
'anthropic': 'https://api.anthropic.com',
'gemini': 'https://generativelanguage.googleapis.com/v1beta'
};
const baseUrlInput = document.getElementById('base_url');
if (defaultUrls[provider] && baseUrlInput) {
baseUrlInput.value = defaultUrls[provider];
}
}
updateModelOptions(provider) {
const modelSelect = document.getElementById('target_model_select');
if (!modelSelect) return;
const commonModels = {
'openai': [
'gpt-4o',
'gpt-4o-mini',
'gpt-4-turbo',
'gpt-4',
'gpt-3.5-turbo'
],
'anthropic': [
'claude-3-5-sonnet-20241022',
'claude-3-5-haiku-20241022',
'claude-3-opus-20240229',
'claude-3-sonnet-20240229',
'claude-3-haiku-20240307'
],
'gemini': [
'gemini-1.5-pro',
'gemini-1.5-flash',
'gemini-1.0-pro'
]
};
// 清空现有选项
modelSelect.innerHTML = '<option value="">请选择模型</option>';
// 添加对应的模型选项
if (commonModels[provider]) {
commonModels[provider].forEach(model => {
const option = document.createElement('option');
option.value = model;
option.textContent = model;
modelSelect.appendChild(option);
});
}
}
setupTabNavigation() {
// 标签页切换事件
const tabButtons = document.querySelectorAll('.tab-button');
tabButtons.forEach(button => {
button.addEventListener('click', (e) => {
const targetTab = e.target.getAttribute('data-tab');
this.switchTab(targetTab);
});
});
}
switchTab(tabName) {
// 移除所有活动状态
document.querySelectorAll('.tab-button').forEach(btn => {
btn.classList.remove('active');
});
document.querySelectorAll('.tab-content').forEach(content => {
content.classList.remove('active');
});
// 激活选中的标签页
const activeButton = document.querySelector(`[data-tab="${tabName}"]`);
const activeContent = document.getElementById(`${tabName}-tab`);
if (activeButton && activeContent) {
activeButton.classList.add('active');
activeContent.classList.add('active');
}
}
async loadProviders() {
try {
const response = await fetch('/api/providers');
const data = await response.json();
const channelProviderSelect = document.getElementById('channel_provider');
if (channelProviderSelect) {
data.providers.forEach(provider => {
const option = document.createElement('option');
option.value = provider.id;
option.textContent = provider.name;
channelProviderSelect.appendChild(option);
});
}
} catch (error) {
console.error('Failed to load providers:', error);
}
}
async loadCapabilities() {
try {
const response = await fetch('/api/capabilities');
await response.json();
// 处理能力选项
} catch (error) {
console.error('Failed to load capabilities:', error);
}
}
async startDetection() {
// 检测逻辑
console.log('Starting detection...');
}
setupModernAnimations() {
// 动画设置
const inputs = document.querySelectorAll('input, select, textarea');
inputs.forEach(input => {
input.addEventListener('focus', () => {
input.closest('.form-group').classList.add('focused');
});
input.addEventListener('blur', () => {
input.closest('.form-group').classList.remove('focused');
});
});
}
// 渠道管理方法
async createChannel() {
const form = document.getElementById('channelForm');
const formData = new FormData(form);
const channelData = Object.fromEntries(formData.entries());
// 转换数值类型
channelData.timeout = parseInt(channelData.timeout);
channelData.max_retries = parseInt(channelData.max_retries);
try {
const sessionToken = localStorage.getItem('session_token');
const response = await fetch('/api/channels', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Authorization': `Bearer ${sessionToken}`
},
body: JSON.stringify(channelData)
});
const result = await response.json();
if (response.ok) {
alert('渠道创建成功!');
form.reset();
await this.loadChannels(); // 重新加载渠道列表
} else {
alert('创建失败: ' + (result.detail || '未知错误'));
}
} catch (error) {
alert('请求失败: ' + error.message);
}
}
async loadChannels() {
console.log('开始加载渠道列表...');
try {
const sessionToken = localStorage.getItem('session_token');
const response = await fetch('/api/channels', {
headers: {
'Authorization': `Bearer ${sessionToken}`
}
});
const result = await response.json();
console.log('API响应:', result);
if (response.ok) {
this.channels = result.channels;
console.log('渠道数量:', this.channels.length);
this.updateChannelsList();
} else {
console.error('加载渠道列表失败:', result.detail);
// 显示错误信息
const channelsList = document.getElementById('channelsList');
if (channelsList) {
channelsList.innerHTML = '<p>加载渠道列表失败</p>';
}
}
} catch (error) {
console.error('加载渠道列表失败:', error);
// 显示错误信息
const channelsList = document.getElementById('channelsList');
if (channelsList) {
channelsList.innerHTML = '<p>加载渠道列表失败</p>';
}
}
}
updateChannelsList() {
console.log('更新渠道列表,渠道数量:', this.channels.length);
const channelsList = document.getElementById('channelsList');
if (!channelsList) {
console.error('找不到channelsList元素');
return;
}
if (this.channels.length === 0) {
console.log('渠道列表为空,显示暂无配置信息');
channelsList.innerHTML = '<p>暂无配置的渠道</p>';
return;
}
const channelsHTML = this.channels.map(channel => `
<div class="channel-item ${channel.enabled ? 'enabled' : 'disabled'}">
<div class="channel-info">
<h4>${channel.name}</h4>
<p><strong>提供商:</strong> ${channel.provider}</p>
<p><strong>URL:</strong> ${channel.base_url}</p>
<p><strong>自定义Key:</strong> <code>${channel.custom_key}</code></p>
<p><strong>状态:</strong> ${channel.enabled ? '启用' : '禁用'}</p>
<p><small>创建时间: ${new Date(channel.created_at).toLocaleString()}</small></p>
</div>
<div class="channel-actions">
<button onclick="apiConverter.testChannel('${channel.id}')" class="btn-secondary">测试</button>
<button onclick="apiConverter.editChannel('${channel.id}')" class="btn-primary">编辑</button>
<button onclick="apiConverter.toggleChannel('${channel.id}')" class="btn-secondary">
${channel.enabled ? '禁用' : '启用'}
</button>
<button onclick="apiConverter.deleteChannel('${channel.id}')" class="btn-danger">删除</button>
</div>
</div>
`).join('');
channelsList.innerHTML = channelsHTML;
}
async testChannel(channelId) {
try {
const response = await fetch(`/api/channels/${channelId}/test`);
const result = await response.json();
if (response.ok) {
alert(`测试成功!响应时间: ${result.test_result.response_time}ms`);
} else {
alert('测试失败: ' + (result.detail || '未知错误'));
}
} catch (error) {
alert('测试失败: ' + error.message);
}
}
async toggleChannel(channelId) {
const channel = this.channels.find(c => c.id === channelId);
if (!channel) return;
try {
const response = await fetch(`/api/channels/${channelId}`, {
method: 'PUT',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({
enabled: !channel.enabled
})
});
const result = await response.json();
if (response.ok) {
this.loadChannels(); // 重新加载渠道列表
} else {
alert('操作失败: ' + (result.detail || '未知错误'));
}
} catch (error) {
alert('操作失败: ' + error.message);
}
}
editChannel(channelId) {
const channel = this.channels.find(c => c.id === channelId);
if (!channel) {
alert('渠道不存在');
return;
}
// 修改表单标题和按钮
document.querySelector('.channel-form h3').textContent = '编辑渠道';
const submitButton = document.querySelector('#channelForm button[type="submit"]');
submitButton.textContent = '更新渠道';
// 存储当前编辑的渠道ID到表单数据属性
const form = document.getElementById('channelForm');
form.dataset.editingChannelId = channelId;
form.dataset.isEditing = 'true';
// 填充表单数据
document.getElementById('name').value = channel.name || '';
document.getElementById('channel_provider').value = channel.provider || '';
document.getElementById('base_url').value = channel.base_url || '';
// 对于API密钥,如果已掩码则设置placeholder,否则清空
const apiKeyInput = document.getElementById('api_key');
if (channel.api_key && channel.api_key.includes('***')) {
apiKeyInput.value = '';
apiKeyInput.placeholder = channel.api_key + ' (留空保持不变)';
apiKeyInput.required = false; // 编辑时可以不填
} else {
apiKeyInput.value = '';
apiKeyInput.placeholder = '输入新的API密钥或留空保持不变';
apiKeyInput.required = false; // 编辑时可以不填
}
document.getElementById('custom_key').value = channel.custom_key || '';
document.getElementById('timeout').value = channel.timeout || 30;
document.getElementById('max_retries').value = channel.max_retries || 3;
// 添加取消按钮
if (!document.getElementById('cancelEdit')) {
const cancelButton = document.createElement('button');
cancelButton.id = 'cancelEdit';
cancelButton.type = 'button';
cancelButton.className = 'btn-secondary';
cancelButton.textContent = '取消编辑';
cancelButton.onclick = () => this.cancelEdit();
submitButton.parentNode.insertBefore(cancelButton, submitButton.nextSibling);
}
// 添加编辑状态样式提示
const channelForm = document.querySelector('.channel-form');
if (channelForm) {
channelForm.classList.add('editing-mode');
// 延迟滚动,确保DOM更新完成
setTimeout(() => {
channelForm.scrollIntoView({
behavior: 'smooth',
block: 'start',
inline: 'nearest'
});
}, 100);
}
}
cancelEdit() {
// 恢复表单标题和按钮
document.querySelector('.channel-form h3').textContent = '添加新渠道';
const submitButton = document.querySelector('#channelForm button[type="submit"]');
submitButton.textContent = '添加渠道';
// 清除编辑状态
const form = document.getElementById('channelForm');
delete form.dataset.editingChannelId;
delete form.dataset.isEditing;
// 重置表单
form.reset();
// 重置API密钥字段的placeholder和必填属性
const apiKeyInput = document.getElementById('api_key');
apiKeyInput.placeholder = '';
apiKeyInput.required = true;
// 移除取消按钮
const cancelButton = document.getElementById('cancelEdit');
if (cancelButton) {
cancelButton.remove();
}
// 移除编辑状态样式
const channelForm = document.querySelector('.channel-form');
if (channelForm) {
channelForm.classList.remove('editing-mode');
}
}
async updateChannel(channelId) {
const form = document.getElementById('channelForm');
const formData = new FormData(form);
const channelData = Object.fromEntries(formData.entries());
// 转换数值类型
channelData.timeout = parseInt(channelData.timeout);
channelData.max_retries = parseInt(channelData.max_retries);
// 输入验证
if (!channelData.name || !channelData.provider || !channelData.base_url || !channelData.custom_key) {
alert('请填写所有必填字段');
return;
}
// 如果API密钥是掩码形式或为空,则不更新密钥
if (!channelData.api_key || channelData.api_key.trim() === '' || channelData.api_key.includes('***')) {
delete channelData.api_key;
}
try {
const response = await fetch(`/api/channels/${channelId}`, {
method: 'PUT',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify(channelData)
});
const result = await response.json();
if (response.ok) {
alert('渠道更新成功!');
this.cancelEdit();
await this.loadChannels(); // 重新加载渠道列表
} else {
if (response.status === 404) {
alert('渠道不存在,可能已被删除。页面将刷新以同步最新数据。');
await this.loadChannels();
this.cancelEdit();
} else {
alert('更新失败: ' + (result.detail || '未知错误'));
}
}
} catch (error) {
alert('请求失败: ' + error.message);
}
}
async deleteChannel(channelId) {
if (!confirm('确定要删除这个渠道吗?')) return;
try {
const response = await fetch(`/api/channels/${channelId}`, {
method: 'DELETE',
headers: {
'Content-Type': 'application/json'
}
});
const result = await response.json();
if (response.ok) {
alert('删除成功!');
await this.loadChannels(); // 重新加载渠道列表
} else {
alert('删除失败: ' + (result.detail || '未知错误'));
}
} catch (error) {
alert('删除失败: ' + error.message);
}
}
}
// 现代化的平滑滚动效果
class SmoothScroll {
constructor() {
this.init();
}
init() {
// 为链接添加平滑滚动
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', (e) => {
e.preventDefault();
const target = document.querySelector(anchor.getAttribute('href'));
if (target) {
target.scrollIntoView({
behavior: 'smooth',
block: 'start'
});
}
});
});
}
}
// 全局函数定义
function updateTargetModel() {
const select = document.getElementById('target_model_select');
const input = document.getElementById('target_model');
if (select && input && select.value) {
input.value = select.value;
}
}
function selectAllCapabilities() {
document.querySelectorAll('input[name="capabilities"]').forEach(cb => {
cb.checked = true;
});
}
function clearAllCapabilities() {
document.querySelectorAll('input[name="capabilities"]').forEach(cb => {
cb.checked = false;
});
}
async function fetchModels() {
const provider = document.getElementById('provider').value;
const baseUrl = document.getElementById('detection_base_url').value;
const apiKey = document.getElementById('detection_api_key').value;
if (!provider || !baseUrl || !apiKey) {
alert('请先填写提供商、API基础URL和API密钥');
return;
}
const btn = document.getElementById('fetch_models_btn');
btn.disabled = true;
btn.textContent = '获取中...';
try {
const response = await fetch('/api/fetch_models', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({
provider: provider,
base_url: baseUrl,
api_key: apiKey
})
});
const data = await response.json();
if (response.ok) {
const select = document.getElementById('target_model_select');
select.innerHTML = '<option value="">请选择模型</option>';
data.models.forEach(model => {
const option = document.createElement('option');
option.value = model;
option.textContent = model;
select.appendChild(option);
});
} else {
alert('获取模型列表失败: ' + (data.detail || '未知错误'));
}
} catch (error) {
alert('请求失败: ' + error.message);
} finally {
btn.disabled = false;
btn.textContent = '获取模型列表';
}
}
// 全局实例
let apiConverter;
// 初始化应用函数
function initializeApp() {
apiConverter = new APIConverter();
new SmoothScroll();
// 添加键盘导航支持
document.addEventListener('keydown', (e) => {
if (e.key === 'Tab') {
document.body.classList.add('keyboard-navigation');
}
});
document.addEventListener('mousedown', () => {
document.body.classList.remove('keyboard-navigation');
});
}
// 如果页面已经加载完成,直接初始化;否则等待DOMContentLoaded
if (document.readyState === 'loading') {
document.addEventListener('DOMContentLoaded', initializeApp);
} else {
initializeApp();
} |