499c511140
- 删除 opencode_search.py / mcp_search_server.py 及所有 MCP 引用 - 移除搜索缓存定时任务(scheduled_refresh_search_cache) - 清理前后端所有 opencode/MCP 代码和注释 - LLM 提供商量换:opencode-go→nvidia(默认)+sensenova(合规审查) - llm_configs 新增 is_default 字段,API 层互斥逻辑 - 所有定时任务支持独立 LLM 模型选择(LLM_TASK_PROVIDER env) - compliance_optimizer.py 修复:import os / 解硬编码 / 关键词过滤 - Scheduler 日志修复:始终 INSERT,避免僵尸 running 行 - Systemd 服务化:Restart=always / 单 worker / Type=exec - 搜索提供商:替换 opencode→360/搜狗/微信(免 Key) - 更新 AGENTS.md / PROGRESS.md
93 lines
2.9 KiB
Python
93 lines
2.9 KiB
Python
from fastapi import APIRouter, Depends, HTTPException, Request
|
|
from sqlalchemy.orm import Session
|
|
from typing import List
|
|
|
|
from ..database import get_db
|
|
from ..models import LLMConfig
|
|
from ..schemas import LLMConfigBase, LLMConfigResponse
|
|
from .auth import get_current_admin
|
|
|
|
router = APIRouter(prefix="/api/admin/llmconfigs", tags=["admin"])
|
|
|
|
def _apply_default_exclusive(config: LLMConfig, db: Session):
|
|
"""当 config.is_default=True 时,将其他所有配置的 is_default 置为 False"""
|
|
if config.is_default:
|
|
db.query(LLMConfig).filter(LLMConfig.id != config.id).update(
|
|
{"is_default": False}, synchronize_session=False
|
|
)
|
|
db.flush()
|
|
|
|
@router.get("", response_model=List[LLMConfigResponse])
|
|
def list_llm_configs(
|
|
request: Request,
|
|
db: Session = Depends(get_db),
|
|
admin_user = Depends(get_current_admin)
|
|
):
|
|
"""获取 LLM 配置列表"""
|
|
configs = db.query(LLMConfig).all()
|
|
return [LLMConfigResponse.model_validate(c) for c in configs]
|
|
|
|
@router.get("/{config_id}", response_model=LLMConfigResponse)
|
|
def get_llm_config(
|
|
config_id: int,
|
|
request: Request,
|
|
db: Session = Depends(get_db),
|
|
admin_user = Depends(get_current_admin)
|
|
):
|
|
"""获取单个 LLM 配置详情"""
|
|
config = db.query(LLMConfig).filter(LLMConfig.id == config_id).first()
|
|
if not config:
|
|
raise HTTPException(status_code=404, detail="配置不存在")
|
|
return config
|
|
|
|
@router.post("", response_model=LLMConfigResponse)
|
|
def create_llm_config(
|
|
config_data: LLMConfigBase,
|
|
request: Request,
|
|
db: Session = Depends(get_db),
|
|
admin_user = Depends(get_current_admin)
|
|
):
|
|
"""创建 LLM 配置"""
|
|
config = LLMConfig(**config_data.model_dump())
|
|
db.add(config)
|
|
db.flush()
|
|
_apply_default_exclusive(config, db)
|
|
db.commit()
|
|
db.refresh(config)
|
|
return config
|
|
|
|
@router.put("/{config_id}", response_model=LLMConfigResponse)
|
|
def update_llm_config(
|
|
config_id: int,
|
|
config_update: LLMConfigBase,
|
|
request: Request,
|
|
db: Session = Depends(get_db),
|
|
admin_user = Depends(get_current_admin)
|
|
):
|
|
"""更新 LLM 配置"""
|
|
config = db.query(LLMConfig).filter(LLMConfig.id == config_id).first()
|
|
if not config:
|
|
raise HTTPException(status_code=404, detail="配置不存在")
|
|
update_data = config_update.model_dump(exclude_unset=True)
|
|
for field, value in update_data.items():
|
|
setattr(config, field, value)
|
|
_apply_default_exclusive(config, db)
|
|
db.commit()
|
|
db.refresh(config)
|
|
return config
|
|
|
|
@router.delete("/{config_id}")
|
|
def delete_llm_config(
|
|
config_id: int,
|
|
request: Request,
|
|
db: Session = Depends(get_db),
|
|
admin_user = Depends(get_current_admin)
|
|
):
|
|
"""删除 LLM 配置"""
|
|
config = db.query(LLMConfig).filter(LLMConfig.id == config_id).first()
|
|
if not config:
|
|
raise HTTPException(status_code=404, detail="配置不存在")
|
|
db.delete(config)
|
|
db.commit()
|
|
return {"message": "删除成功"}
|