ForcePilot/backend/server/routers/chat_router.py

985 lines
33 KiB
Python
Raw Normal View History

2025-03-17 19:58:00 +08:00
import traceback
2025-03-25 05:40:07 +08:00
import uuid
from typing import Any
from mimetypes import guess_type
from fastapi import APIRouter, Body, Depends, HTTPException, Query, UploadFile, File
from fastapi.responses import FileResponse, StreamingResponse
from pydantic import BaseModel, Field
from sqlalchemy.ext.asyncio import AsyncSession
2025-03-25 05:40:07 +08:00
from yuxi.storage.postgres.models_business import User
from server.routers.auth_router import get_admin_user
from server.utils.auth_middleware import get_db, get_required_user
from yuxi import config as conf
from yuxi.agents.buildin import agent_manager
from yuxi.models import select_model
from yuxi.services.chat_service import agent_chat, get_agent_state_view, stream_agent_chat, stream_agent_resume
from yuxi.services.agent_run_service import (
cancel_agent_run_view,
create_agent_run_view,
get_active_run_by_thread,
get_agent_run_view,
stream_agent_run_events,
)
from yuxi.repositories.conversation_repository import ConversationRepository
from yuxi.services.conversation_service import (
create_thread_view,
delete_thread_attachment_view,
delete_thread_view,
get_thread_history_view,
list_thread_attachments_view,
list_threads_view,
update_thread_view,
upload_thread_attachment_view,
)
from yuxi.services.thread_files_service import (
list_thread_files_view,
read_thread_file_content_view,
resolve_thread_artifact_view,
save_thread_artifact_to_workspace_view,
)
from yuxi.services.feedback_service import get_message_feedback_view, submit_message_feedback_view
from yuxi.repositories.agent_config_repository import AgentConfigRepository
from yuxi.utils.logging_config import logger
from yuxi.utils.image_processor import process_uploaded_image
from yuxi.utils.paths import VIRTUAL_PATH_PREFIX
# TODO当前文件的功能过于庞杂路由标签混乱
# 图片上传响应模型
class ImageUploadResponse(BaseModel):
success: bool
image_content: str | None = None
thumbnail_content: str | None = None
width: int | None = None
height: int | None = None
format: str | None = None
mime_type: str | None = None
size_bytes: int | None = None
error: str | None = None
2024-10-02 20:11:28 +08:00
class AgentConfigCreate(BaseModel):
name: str
description: str | None = None
icon: str | None = None
pics: list[str] | None = None
examples: list[str] | None = None
config_json: dict | None = None
set_default: bool = False
class AgentConfigUpdate(BaseModel):
name: str | None = None
description: str | None = None
icon: str | None = None
pics: list[str] | None = None
examples: list[str] | None = None
config_json: dict | None = None
class AgentRunCreate(BaseModel):
query: str = Field(..., description="用户输入的问题")
agent_config_id: int = Field(..., description="智能体配置 ID后端将据此解析 agent_id 和运行时 context")
thread_id: str = Field(..., description="会话线程 ID")
meta: dict = Field(default_factory=dict, description="可选,请求追踪信息,例如 request_id")
image_content: str | None = Field(None, description="可选base64 图片内容")
class AgentChatRequest(BaseModel):
query: str = Field(..., description="用户输入的问题")
agent_config_id: int = Field(..., description="智能体配置 ID后端将据此解析 agent_id 和运行时 context")
thread_id: str | None = Field(None, description="可选,会话线程 ID不传则自动创建")
meta: dict = Field(default_factory=dict, description="可选,请求追踪信息,例如 request_id")
image_content: str | None = Field(None, description="可选base64 图片内容")
2025-07-22 17:29:38 +08:00
chat = APIRouter(prefix="/chat", tags=["chat"])
# =============================================================================
# > === 智能体管理分组 ===
# =============================================================================
2025-03-06 23:55:20 +08:00
2025-05-02 23:56:59 +08:00
@chat.get("/default_agent")
async def get_default_agent(current_user: User = Depends(get_required_user)):
"""获取默认智能体ID需要登录"""
try:
2025-09-18 20:32:33 +08:00
default_agent_id = conf.default_agent_id
2025-05-02 23:56:59 +08:00
# 如果没有设置默认智能体,尝试获取第一个可用的智能体
if not default_agent_id:
agents = await agent_manager.get_agents_info(include_configurable_items=False)
2025-05-02 23:56:59 +08:00
if agents:
default_agent_id = agents[0].get("id", "")
2025-05-02 23:56:59 +08:00
return {"default_agent_id": default_agent_id}
except Exception as e:
logger.error(f"获取默认智能体出错: {e}")
raise HTTPException(status_code=500, detail=f"获取默认智能体出错: {str(e)}")
2025-05-02 23:56:59 +08:00
@chat.post("/set_default_agent")
async def set_default_agent(request_data: dict = Body(...), current_user=Depends(get_admin_user)):
2025-05-02 23:56:59 +08:00
"""设置默认智能体ID (仅管理员)"""
try:
agent_id = request_data.get("agent_id")
if not agent_id:
raise HTTPException(status_code=422, detail="缺少必需的 agent_id 字段")
2025-05-02 23:56:59 +08:00
# 验证智能体是否存在
agents = await agent_manager.get_agents_info(include_configurable_items=False)
agent_ids = [agent.get("id", "") for agent in agents]
2025-05-02 23:56:59 +08:00
if agent_id not in agent_ids:
raise HTTPException(status_code=404, detail=f"智能体 {agent_id} 不存在")
# 设置默认智能体ID
2025-09-18 20:32:33 +08:00
conf.default_agent_id = agent_id
2025-05-02 23:56:59 +08:00
# 保存配置
2025-09-18 20:32:33 +08:00
conf.save()
2025-05-02 23:56:59 +08:00
return {"success": True, "default_agent_id": agent_id}
except HTTPException as he:
raise he
except Exception as e:
logger.error(f"设置默认智能体出错: {e}")
raise HTTPException(status_code=500, detail=f"设置默认智能体出错: {str(e)}")
2024-10-02 20:11:28 +08:00
@chat.post("/call")
2025-05-02 23:56:59 +08:00
async def call(query: str = Body(...), meta: dict = Body(None), current_user: User = Depends(get_required_user)):
"""调用模型进行简单问答(需要登录)"""
2025-04-10 11:41:01 +08:00
meta = meta or {}
# 确保 request_id 存在
if "request_id" not in meta or not meta.get("request_id"):
meta["request_id"] = str(uuid.uuid4())
model = select_model(
model_provider=meta.get("model_provider"),
model_name=meta.get("model_name"),
model_spec=meta.get("model_spec") or meta.get("model"),
)
response = await model.call(query)
2024-10-02 20:11:28 +08:00
logger.debug({"query": query, "response": response.content})
return {"response": response.content, "request_id": meta["request_id"]}
2025-03-25 05:40:07 +08:00
@chat.get("/agent")
2025-05-02 23:56:59 +08:00
async def get_agent(current_user: User = Depends(get_required_user)):
"""获取所有可用智能体的基本信息(需要登录)"""
agents_info = await agent_manager.get_agents_info(include_configurable_items=False)
return {"agents": agents_info}
2025-03-25 05:40:07 +08:00
2025-10-24 00:11:52 +08:00
@chat.get("/agent/{agent_id}")
async def get_single_agent(agent_id: str, current_user: User = Depends(get_required_user)):
"""获取指定智能体的完整信息(包含配置选项)(需要登录)"""
try:
# 检查智能体是否存在
if not (agent := agent_manager.get_agent(agent_id)):
raise HTTPException(status_code=404, detail=f"智能体 {agent_id} 不存在")
# 获取智能体的完整信息(包含 configurable_items
agent_info = await agent.get_info()
return agent_info
except HTTPException:
raise
except Exception as e:
logger.error(f"获取智能体 {agent_id} 信息出错: {e}")
raise HTTPException(status_code=500, detail=f"获取智能体信息出错: {str(e)}")
@chat.get("/agent/{agent_id}/configs")
async def list_agent_configs(
agent_id: str,
current_user: User = Depends(get_required_user),
db: AsyncSession = Depends(get_db),
):
if not agent_manager.get_agent(agent_id):
raise HTTPException(status_code=404, detail=f"智能体 {agent_id} 不存在")
repo = AgentConfigRepository(db)
items = await repo.list_by_department_agent(department_id=current_user.department_id, agent_id=agent_id)
if not items:
await repo.get_or_create_default(
department_id=current_user.department_id,
agent_id=agent_id,
created_by=str(current_user.id),
)
items = await repo.list_by_department_agent(department_id=current_user.department_id, agent_id=agent_id)
configs = [
{
"id": item.id,
"name": item.name,
"description": item.description,
"icon": item.icon,
"pics": item.pics or [],
"examples": item.examples or [],
"is_default": bool(item.is_default),
}
for item in items
]
return {"configs": configs}
@chat.get("/agent/{agent_id}/configs/{config_id}")
async def get_agent_config_profile(
agent_id: str,
config_id: int,
current_user: User = Depends(get_required_user),
db: AsyncSession = Depends(get_db),
):
if not agent_manager.get_agent(agent_id):
raise HTTPException(status_code=404, detail=f"智能体 {agent_id} 不存在")
repo = AgentConfigRepository(db)
item = await repo.get_by_id(config_id)
if not item or item.agent_id != agent_id or item.department_id != current_user.department_id:
raise HTTPException(status_code=404, detail="配置不存在")
return {"config": item.to_dict()}
@chat.post("/agent/{agent_id}/configs")
async def create_agent_config_profile(
agent_id: str,
payload: AgentConfigCreate,
current_user: User = Depends(get_admin_user),
db: AsyncSession = Depends(get_db),
):
if not agent_manager.get_agent(agent_id):
raise HTTPException(status_code=404, detail=f"智能体 {agent_id} 不存在")
repo = AgentConfigRepository(db)
item = await repo.create(
department_id=current_user.department_id,
agent_id=agent_id,
name=payload.name,
description=payload.description,
icon=payload.icon,
pics=payload.pics,
examples=payload.examples,
config_json=payload.config_json,
is_default=payload.set_default,
created_by=str(current_user.id),
)
if payload.set_default:
item = await repo.set_default(config=item, updated_by=str(current_user.id))
return {"config": item.to_dict()}
@chat.put("/agent/{agent_id}/configs/{config_id}")
async def update_agent_config_profile(
agent_id: str,
config_id: int,
payload: AgentConfigUpdate,
current_user: User = Depends(get_admin_user),
db: AsyncSession = Depends(get_db),
):
if not agent_manager.get_agent(agent_id):
raise HTTPException(status_code=404, detail=f"智能体 {agent_id} 不存在")
repo = AgentConfigRepository(db)
item = await repo.get_by_id(config_id)
if not item or item.agent_id != agent_id or item.department_id != current_user.department_id:
raise HTTPException(status_code=404, detail="配置不存在")
updated = await repo.update(
item,
name=payload.name,
description=payload.description,
icon=payload.icon,
pics=payload.pics,
examples=payload.examples,
config_json=payload.config_json,
updated_by=str(current_user.id),
)
return {"config": updated.to_dict()}
@chat.post("/agent/{agent_id}/configs/{config_id}/set_default")
async def set_agent_config_default(
agent_id: str,
config_id: int,
current_user: User = Depends(get_admin_user),
db: AsyncSession = Depends(get_db),
):
if not agent_manager.get_agent(agent_id):
raise HTTPException(status_code=404, detail=f"智能体 {agent_id} 不存在")
repo = AgentConfigRepository(db)
item = await repo.get_by_id(config_id)
if not item or item.agent_id != agent_id or item.department_id != current_user.department_id:
raise HTTPException(status_code=404, detail="配置不存在")
updated = await repo.set_default(config=item, updated_by=str(current_user.id))
return {"config": updated.to_dict()}
@chat.delete("/agent/{agent_id}/configs/{config_id}")
async def delete_agent_config_profile(
agent_id: str,
config_id: int,
current_user: User = Depends(get_admin_user),
db: AsyncSession = Depends(get_db),
):
if not agent_manager.get_agent(agent_id):
raise HTTPException(status_code=404, detail=f"智能体 {agent_id} 不存在")
repo = AgentConfigRepository(db)
item = await repo.get_by_id(config_id)
if not item or item.agent_id != agent_id or item.department_id != current_user.department_id:
raise HTTPException(status_code=404, detail="配置不存在")
await repo.delete(config=item, updated_by=str(current_user.id))
return {"success": True}
@chat.post("/agent")
async def chat_agent(
payload: AgentChatRequest,
current_user: User = Depends(get_required_user),
db: AsyncSession = Depends(get_db),
):
2025-05-02 23:56:59 +08:00
"""使用特定智能体进行对话(需要登录)"""
logger.info(f"query: {payload.query}, agent_config_id: {payload.agent_config_id}, meta: {payload.meta}")
# 查看图片内容
logger.info(f"image_content present: {payload.image_content is not None}")
if payload.image_content:
logger.info(f"image_content length: {len(payload.image_content)}")
logger.info(f"image_content preview: {payload.image_content[:50]}...")
return StreamingResponse(
stream_agent_chat(
query=payload.query,
agent_config_id=payload.agent_config_id,
thread_id=payload.thread_id,
meta=dict(payload.meta or {}),
image_content=payload.image_content,
current_user=current_user,
db=db,
),
media_type="application/json",
)
2025-04-01 00:39:54 +08:00
@chat.post("/agent/sync")
async def chat_agent_sync(
payload: AgentChatRequest,
current_user: User = Depends(get_required_user),
db: AsyncSession = Depends(get_db),
):
"""使用特定智能体进行非流式对话(需要登录)"""
logger.info(f"[sync] query: {payload.query}, agent_config_id: {payload.agent_config_id}, meta: {payload.meta}")
logger.info(f"[sync] image_content present: {payload.image_content is not None}")
if payload.image_content:
logger.info(f"[sync] image_content length: {len(payload.image_content)}")
return await agent_chat(
query=payload.query,
agent_config_id=payload.agent_config_id,
thread_id=payload.thread_id,
meta=dict(payload.meta or {}),
image_content=payload.image_content,
current_user=current_user,
db=db,
)
@chat.post("/runs")
async def create_agent_run(
payload: AgentRunCreate,
current_user: User = Depends(get_required_user),
db: AsyncSession = Depends(get_db),
):
"""创建异步 run 任务并入队(需要登录)"""
return await create_agent_run_view(
query=payload.query,
agent_config_id=payload.agent_config_id,
thread_id=payload.thread_id,
meta=dict(payload.meta or {}),
image_content=payload.image_content,
current_user_id=str(current_user.id),
db=db,
)
@chat.get("/runs/{run_id}")
async def get_agent_run(
run_id: str,
current_user: User = Depends(get_required_user),
db: AsyncSession = Depends(get_db),
):
"""获取 run 状态(需要登录)"""
return await get_agent_run_view(run_id=run_id, current_user_id=str(current_user.id), db=db)
@chat.post("/runs/{run_id}/cancel")
async def cancel_agent_run(
run_id: str,
current_user: User = Depends(get_required_user),
db: AsyncSession = Depends(get_db),
):
"""取消 run需要登录"""
return await cancel_agent_run_view(run_id=run_id, current_user_id=str(current_user.id), db=db)
@chat.get("/runs/{run_id}/events")
async def stream_run_events(
run_id: str,
after_seq: str = Query("0"),
current_user: User = Depends(get_required_user),
):
"""SSE 拉取 run 事件(需要登录)"""
return StreamingResponse(
stream_agent_run_events(
run_id=run_id,
after_seq=after_seq,
current_user_id=str(current_user.id),
),
media_type="text/event-stream",
headers={
"Cache-Control": "no-cache",
"Connection": "keep-alive",
"X-Accel-Buffering": "no",
},
)
2025-07-22 17:29:38 +08:00
# =============================================================================
# > === 模型管理分组 ===
# =============================================================================
2025-04-01 00:39:54 +08:00
@chat.get("/models")
2025-05-02 23:56:59 +08:00
async def get_chat_models(model_provider: str, current_user: User = Depends(get_admin_user)):
"""获取指定模型提供商的模型列表(需要登录)"""
2025-04-01 00:39:54 +08:00
model = select_model(model_provider=model_provider)
models = await model.get_models()
return {"models": models}
@chat.post("/models/update")
async def update_chat_models(model_provider: str, model_names: list[str], current_user=Depends(get_admin_user)):
2025-05-02 23:56:59 +08:00
"""更新指定模型提供商的模型列表 (仅管理员)"""
2025-10-22 11:51:32 +08:00
conf.model_names[model_provider].models = model_names
conf._save_models_to_file(model_provider)
return {"models": conf.model_names[model_provider].models}
@chat.post("/thread/{thread_id}/resume")
async def resume_thread_chat(
thread_id: str,
approved: bool | None = Body(None),
answer: dict | None = Body(None),
config: dict = Body({}),
current_user: User = Depends(get_required_user),
db: AsyncSession = Depends(get_db),
):
"""恢复被人工审批中断的对话(需要登录)"""
# 验证 thread 存在且属于当前用户
conv_repo = ConversationRepository(db)
conversation = await conv_repo.get_conversation_by_thread_id(thread_id)
if not conversation or conversation.user_id != str(current_user.id) or conversation.status == "deleted":
raise HTTPException(status_code=404, detail="对话线程不存在")
agent_id = conversation.agent_id
def normalize_resume_input(raw_answer: Any, raw_approved: bool | None) -> Any:
def normalize_single_answer(value: Any) -> Any:
if isinstance(value, str):
normalized = value.strip()
if not normalized:
raise HTTPException(status_code=422, detail="answer 不能为空")
return normalized
if isinstance(value, list):
if len(value) == 0:
raise HTTPException(status_code=422, detail="answer 不能为空")
normalized_list: list[str] = []
for item in value:
if not isinstance(item, str) or not item.strip():
raise HTTPException(status_code=422, detail="answer 列表必须是非空字符串")
normalized_list.append(item.strip())
return normalized_list
if isinstance(value, dict):
if value.get("type") == "other":
text = value.get("text")
if not isinstance(text, str) or not text.strip():
raise HTTPException(status_code=422, detail="other 文本不能为空")
return value
raise HTTPException(status_code=422, detail="answer 值类型不支持")
if raw_answer is not None:
if isinstance(raw_answer, dict):
if len(raw_answer) == 0:
raise HTTPException(status_code=422, detail="answer 不能为空")
normalized_answers: dict[str, Any] = {}
for question_id, value in raw_answer.items():
normalized_question_id = str(question_id).strip()
if not normalized_question_id:
raise HTTPException(status_code=422, detail="question_id 不能为空")
normalized_answers[normalized_question_id] = normalize_single_answer(value)
return normalized_answers
raise HTTPException(status_code=422, detail="answer 必须是对象映射 {question_id: answer}")
if raw_approved is not None:
return "approve" if raw_approved else "reject"
raise HTTPException(status_code=422, detail="approved 或 answer 至少提供一个")
resume_input = normalize_resume_input(answer, approved)
logger.info(
"Resuming agent_id: %s, thread_id: %s, approved: %s, answer_type: %s",
agent_id,
thread_id,
approved,
type(answer).__name__ if answer is not None else "None",
)
meta = {
"agent_id": agent_id,
"thread_id": thread_id,
"user_id": current_user.id,
"approved": approved,
"answer": answer,
"resume_input": resume_input,
}
if "request_id" not in meta or not meta.get("request_id"):
meta["request_id"] = str(uuid.uuid4())
return StreamingResponse(
stream_agent_resume(
agent_id=agent_id,
thread_id=thread_id,
resume_input=resume_input,
meta=meta,
config=config,
current_user=current_user,
db=db,
),
media_type="application/json",
)
@chat.get("/thread/{thread_id}/active_run")
async def get_thread_active_run(
thread_id: str,
current_user: User = Depends(get_required_user),
db: AsyncSession = Depends(get_db),
):
"""获取当前会话活跃 run需要登录"""
return await get_active_run_by_thread(thread_id=thread_id, current_user_id=str(current_user.id), db=db)
@chat.get("/thread/{thread_id}/history")
async def get_thread_history(
thread_id: str, current_user: User = Depends(get_required_user), db: AsyncSession = Depends(get_db)
):
"""获取对话历史消息(需要登录)- 包含用户反馈状态"""
try:
return await get_thread_history_view(
thread_id=thread_id,
current_user_id=str(current_user.id),
db=db,
)
except Exception as e:
logger.error(f"获取对话历史消息出错: {e}, {traceback.format_exc()}")
raise HTTPException(status_code=500, detail=f"获取对话历史消息出错: {str(e)}")
@chat.get("/thread/{thread_id}/state")
async def get_thread_state(
thread_id: str,
current_user: User = Depends(get_required_user),
db: AsyncSession = Depends(get_db),
):
"""获取对话当前状态(需要登录)"""
try:
return await get_agent_state_view(
thread_id=thread_id,
current_user_id=str(current_user.id),
db=db,
)
except HTTPException:
raise
except Exception as e:
logger.error(f"获取对话状态出错: {e}, {traceback.format_exc()}")
raise HTTPException(status_code=500, detail=f"获取对话状态出错: {str(e)}")
# ==================== 线程管理 API ====================
class ThreadCreate(BaseModel):
2025-05-24 11:29:45 +08:00
title: str | None = None
agent_id: str
2025-05-24 11:29:45 +08:00
metadata: dict | None = None
class ThreadResponse(BaseModel):
id: str
user_id: str
agent_id: str
2025-05-24 11:29:45 +08:00
title: str | None = None
is_pinned: bool = False
created_at: str
updated_at: str
metadata: dict[str, Any] = Field(default_factory=dict)
class AttachmentResponse(BaseModel):
file_id: str
file_name: str
file_type: str | None = None
file_size: int
status: str
uploaded_at: str
2026-03-05 22:50:38 +08:00
path: str
artifact_url: str | None = None
original_path: str | None = None
original_artifact_url: str | None = None
minio_url: str | None = None
class AttachmentLimits(BaseModel):
allowed_extensions: list[str]
max_size_bytes: int
class AttachmentListResponse(BaseModel):
attachments: list[AttachmentResponse]
limits: AttachmentLimits
class ThreadFileEntry(BaseModel):
path: str
name: str
is_dir: bool
size: int
modified_at: str | None = None
artifact_url: str | None = None
class ThreadFileListResponse(BaseModel):
path: str
files: list[ThreadFileEntry]
class ThreadFileContentResponse(BaseModel):
path: str
content: list[str]
offset: int
limit: int
total_lines: int
artifact_url: str
class SaveThreadArtifactRequest(BaseModel):
path: str
class SaveThreadArtifactResponse(BaseModel):
name: str
source_path: str
saved_path: str
saved_artifact_url: str
2025-07-22 17:29:38 +08:00
# =============================================================================
# > === 会话管理分组 ===
# =============================================================================
@chat.post("/thread", response_model=ThreadResponse)
async def create_thread(
thread: ThreadCreate, db: AsyncSession = Depends(get_db), current_user: User = Depends(get_required_user)
):
"""创建新对话线程 (使用新存储系统)"""
return await create_thread_view(
agent_id=thread.agent_id,
title=thread.title,
metadata=thread.metadata,
db=db,
current_user_id=str(current_user.id),
)
2025-05-24 11:29:45 +08:00
@chat.get("/threads", response_model=list[ThreadResponse])
async def list_threads(
agent_id: str | None = Query(None),
limit: int = Query(100, ge=1, le=500),
offset: int = Query(0, ge=0),
db: AsyncSession = Depends(get_db),
current_user: User = Depends(get_required_user),
):
"""获取用户的所有对话线程 (使用新存储系统)"""
return await list_threads_view(
agent_id=agent_id, db=db, current_user_id=str(current_user.id), limit=limit, offset=offset
)
@chat.delete("/thread/{thread_id}")
async def delete_thread(
thread_id: str, db: AsyncSession = Depends(get_db), current_user: User = Depends(get_required_user)
):
"""删除对话线程 (使用新存储系统)"""
return await delete_thread_view(thread_id=thread_id, db=db, current_user_id=str(current_user.id))
class ThreadUpdate(BaseModel):
2025-05-24 11:29:45 +08:00
title: str | None = None
is_pinned: bool | None = None
@chat.put("/thread/{thread_id}", response_model=ThreadResponse)
async def update_thread(
thread_id: str,
thread_update: ThreadUpdate,
db: AsyncSession = Depends(get_db),
current_user: User = Depends(get_required_user),
):
"""更新对话线程信息 (使用新存储系统)"""
return await update_thread_view(
thread_id=thread_id,
title=thread_update.title,
is_pinned=thread_update.is_pinned,
db=db,
current_user_id=str(current_user.id),
)
# ================================
# > === 附件管理分组 ===
# ================================
2026-02-28 16:33:54 +08:00
@chat.post("/thread/{thread_id}/attachments", response_model=AttachmentResponse)
async def upload_thread_attachment(
thread_id: str,
file: UploadFile = File(...),
db: AsyncSession = Depends(get_db),
current_user: User = Depends(get_required_user),
):
2026-03-05 22:50:38 +08:00
"""上传原始附件并关联到指定对话线程。"""
return await upload_thread_attachment_view(
thread_id=thread_id,
file=file,
db=db,
current_user_id=str(current_user.id),
)
@chat.get("/thread/{thread_id}/attachments", response_model=AttachmentListResponse)
async def list_thread_attachments(
thread_id: str,
db: AsyncSession = Depends(get_db),
current_user: User = Depends(get_required_user),
):
"""列出当前对话线程的所有附件元信息。"""
return await list_thread_attachments_view(
thread_id=thread_id,
db=db,
current_user_id=str(current_user.id),
)
@chat.delete("/thread/{thread_id}/attachments/{file_id}")
async def delete_thread_attachment(
thread_id: str,
file_id: str,
db: AsyncSession = Depends(get_db),
current_user: User = Depends(get_required_user),
):
"""移除指定附件。"""
return await delete_thread_attachment_view(
thread_id=thread_id,
file_id=file_id,
db=db,
current_user_id=str(current_user.id),
)
@chat.get("/thread/{thread_id}/files", response_model=ThreadFileListResponse)
async def list_thread_files(
thread_id: str,
path: str = Query(f"{VIRTUAL_PATH_PREFIX}"),
recursive: bool = Query(False),
db: AsyncSession = Depends(get_db),
current_user: User = Depends(get_required_user),
):
"""列出线程文件目录。"""
return await list_thread_files_view(
thread_id=thread_id,
current_user_id=str(current_user.id),
db=db,
path=path,
recursive=recursive,
)
@chat.get("/thread/{thread_id}/files/content", response_model=ThreadFileContentResponse)
async def read_thread_file_content(
thread_id: str,
path: str = Query(...),
offset: int = Query(0, ge=0),
limit: int = Query(2000, ge=1, le=5000),
db: AsyncSession = Depends(get_db),
current_user: User = Depends(get_required_user),
):
"""读取线程文本文件(按行分页)。"""
return await read_thread_file_content_view(
thread_id=thread_id,
current_user_id=str(current_user.id),
db=db,
path=path,
offset=offset,
limit=limit,
)
@chat.get("/thread/{thread_id}/artifacts/{path:path}")
async def get_thread_artifact(
thread_id: str,
path: str,
download: bool = Query(False),
db: AsyncSession = Depends(get_db),
current_user: User = Depends(get_required_user),
):
"""下载或预览线程文件。"""
file_path = await resolve_thread_artifact_view(
thread_id=thread_id,
current_user_id=str(current_user.id),
db=db,
path=path,
)
media_type = guess_type(file_path.name)[0] or "application/octet-stream"
headers = {"Content-Disposition": f'attachment; filename="{file_path.name}"'} if download else None
return FileResponse(path=file_path, media_type=media_type, headers=headers)
@chat.post("/thread/{thread_id}/artifacts/save", response_model=SaveThreadArtifactResponse)
async def save_thread_artifact_to_workspace(
thread_id: str,
request: SaveThreadArtifactRequest,
db: AsyncSession = Depends(get_db),
current_user: User = Depends(get_required_user),
):
"""保存交付物到共享 workspace/saved_artifacts 目录。"""
return await save_thread_artifact_to_workspace_view(
thread_id=thread_id,
current_user_id=str(current_user.id),
db=db,
path=request.path,
)
# =============================================================================
# > === 消息反馈分组 ===
# =============================================================================
class MessageFeedbackRequest(BaseModel):
rating: str # 'like' or 'dislike'
reason: str | None = None # Optional reason for dislike
class MessageFeedbackResponse(BaseModel):
id: int
message_id: int
rating: str
reason: str | None
created_at: str
@chat.post("/message/{message_id}/feedback", response_model=MessageFeedbackResponse)
async def submit_message_feedback(
message_id: int,
feedback_data: MessageFeedbackRequest,
db: AsyncSession = Depends(get_db),
current_user: User = Depends(get_required_user),
):
2026-01-16 14:06:42 +08:00
"""提交消息反馈(需要登录)"""
result = await submit_message_feedback_view(
message_id=message_id,
rating=feedback_data.rating,
reason=feedback_data.reason,
db=db,
current_user_id=str(current_user.id),
)
return MessageFeedbackResponse(**result)
@chat.get("/message/{message_id}/feedback")
async def get_message_feedback(
message_id: int,
db: AsyncSession = Depends(get_db),
current_user: User = Depends(get_required_user),
):
2026-01-16 14:06:42 +08:00
"""获取指定消息的用户反馈(需要登录)"""
return await get_message_feedback_view(
message_id=message_id,
db=db,
current_user_id=str(current_user.id),
)
# =============================================================================
# > === 多模态图片支持分组 ===
# =============================================================================
@chat.post("/image/upload", response_model=ImageUploadResponse)
async def upload_image(file: UploadFile = File(...), current_user: User = Depends(get_required_user)):
"""
上传并处理图片返回base64编码的图片数据
"""
try:
# 验证文件类型
if not file.content_type or not file.content_type.startswith("image/"):
raise HTTPException(status_code=400, detail="只支持图片文件上传")
# 读取文件内容
image_data = await file.read()
# 检查文件大小10MB限制超过后会压缩到5MB
if len(image_data) > 10 * 1024 * 1024:
raise HTTPException(status_code=400, detail="图片文件过大请上传小于10MB的图片")
# 处理图片
result = process_uploaded_image(image_data, file.filename)
if not result["success"]:
raise HTTPException(status_code=400, detail=f"图片处理失败: {result['error']}")
logger.info(
f"用户 {current_user.id} 成功上传图片: {file.filename}, "
f"尺寸: {result['width']}x{result['height']}, "
f"格式: {result['format']}, "
f"大小: {result['size_bytes']} bytes"
)
return ImageUploadResponse(**result)
except HTTPException:
raise
except Exception as e:
logger.error(f"图片上传处理失败: {str(e)}, {traceback.format_exc()}")
raise HTTPException(status_code=500, detail=f"图片处理失败: {str(e)}")