Files
llmproxy/app/main.py
Vertex-AI-Step-Builder 42548108ba fix: 修复流式工具调用解析并更新标签格式
主要变更:
- 将工具调用标签从 {} 改为 <invoke></invoke>,避免与 JSON 括号冲突
- 修复流式请求未解析工具调用的问题,现在返回 OpenAI 格式的 tool_calls
- 从 SSE 响应中正确提取 content 并解析工具调用
- 更新提示词格式以使用新标签
- 更新所有相关测试用例

问题修复:
- 流式请求现在正确返回 OpenAI 格式的 tool_calls
- 标签冲突导致的解析失败问题已解决
- 所有单元测试通过 (20/20)
- API 完全兼容 OpenAI REST API tools 字段行为

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2025-12-31 09:20:08 +00:00

206 lines
8.2 KiB
Python

import os
import sys
import logging
import time
from dotenv import load_dotenv
from fastapi import FastAPI, HTTPException, Depends, Request
from starlette.responses import StreamingResponse
from .models import IncomingRequest, ProxyResponse
from .services import process_chat_request, stream_llm_api, inject_tools_into_prompt, parse_llm_response_from_content, _parse_sse_data
from .core.config import get_settings, Settings
from .database import init_db, log_request, update_request_log
# --- Environment & Debug Loading ---
# load_dotenv() # Uncomment if you run uvicorn directly and need to load .env
# ---
# --- Logging Configuration ---
logging.basicConfig(
level=logging.INFO,
format='%(asctime)s - %(name)s - %(levelname)s - %(message)s',
handlers=[
logging.FileHandler("llm_proxy.log"),
logging.StreamHandler()
]
)
logger = logging.getLogger(__name__)
# --- End of Logging Configuration ---
app = FastAPI(
title="LLM Tool Proxy",
description="A proxy that intercepts LLM requests to inject and handle tool calls.",
version="1.0.0",
)
# --- Middleware for logging basic request/response info ---
@app.middleware("http")
async def logging_middleware(request: Request, call_next):
start_time = time.time()
logger.info(f"Request received: {request.method} {request.url.path} from {request.client.host}")
logger.info(f"Request Headers: {dict(request.headers)}")
response = await call_next(request)
process_time = (time.time() - start_time) * 1000
logger.info(f"Response sent: status_code={response.status_code} ({process_time:.2f}ms)")
return response
# --- End of Middleware ---
@app.on_event("startup")
async def startup_event():
logger.info("Application startup complete.")
init_db()
logger.info("Database initialized.")
current_settings = get_settings()
logger.info(f"Loaded LLM API URL: {current_settings.REAL_LLM_API_URL}")
@app.post("/v1/chat/completions")
async def chat_completions(
request: IncomingRequest,
settings: Settings = Depends(get_settings)
):
"""
This endpoint mimics the OpenAI Chat Completions API and supports both
streaming and non-streaming responses, with detailed logging.
"""
log_id = log_request(client_request=request.model_dump())
logger.info(f"Request body logged with ID: {log_id}")
if not settings.REAL_LLM_API_KEY or not settings.REAL_LLM_API_URL:
logger.error("REAL_LLM_API_KEY or REAL_LLM_API_URL is not configured.")
raise HTTPException(status_code=500, detail="LLM API Key or URL is not configured.")
messages_to_llm = request.messages
if request.tools:
messages_to_llm = inject_tools_into_prompt(request.messages, request.tools)
# Handle streaming request
if request.stream:
logger.info(f"Initiating streaming request for log ID: {log_id}")
async def stream_and_log():
import json
stream_content_buffer = []
raw_chunks = []
# First, collect all chunks to detect if there are tool calls
async for chunk in stream_llm_api(messages_to_llm, settings, log_id):
raw_chunks.append(chunk)
# Extract content from SSE chunks
parsed = _parse_sse_data(chunk)
if parsed and parsed.get("type") != "done":
choices = parsed.get("choices")
if choices and len(choices) > 0:
delta = choices[0].get("delta")
if delta and "content" in delta:
stream_content_buffer.append(delta["content"])
# Parse the complete content
full_content = "".join(stream_content_buffer)
response_message = parse_llm_response_from_content(full_content)
# If tool_calls detected, send only OpenAI format tool_calls
if response_message.tool_calls:
logger.info(f"Tool calls detected in stream, sending OpenAI format for log ID {log_id}")
# Send tool_calls chunks
for tc in response_message.tool_calls:
# Send tool call start
chunk_data = {
"id": "chatcmpl-" + str(log_id),
"object": "chat.completion.chunk",
"created": 0,
"model": "gpt-3.5-turbo",
"choices": [{
"index": 0,
"delta": {
"tool_calls": [{
"index": 0,
"id": tc.id,
"type": tc.type,
"function": {
"name": tc.function.name,
"arguments": ""
}
}]
},
"finish_reason": None
}]
}
yield f"data: {json.dumps(chunk_data)}\n\n".encode('utf-8')
# Split arguments into smaller chunks to simulate streaming
args = tc.function.arguments
chunk_size = 20
for i in range(0, len(args), chunk_size):
chunk_data = {
"id": "chatcmpl-" + str(log_id),
"object": "chat.completion.chunk",
"created": 0,
"model": "gpt-3.5-turbo",
"choices": [{
"index": 0,
"delta": {
"tool_calls": [{
"index": 0,
"function": {
"arguments": args[i:i+chunk_size]
}
}]
},
"finish_reason": None
}]
}
yield f"data: {json.dumps(chunk_data)}\n\n".encode('utf-8')
# Send final chunk
final_chunk = {
"id": "chatcmpl-" + str(log_id),
"object": "chat.completion.chunk",
"created": 0,
"model": "gpt-3.5-turbo",
"choices": [{
"index": 0,
"delta": {},
"finish_reason": "tool_calls"
}]
}
yield f"data: {json.dumps(final_chunk)}\n\n".encode('utf-8')
else:
# No tool calls, yield original chunks
for chunk in raw_chunks:
yield chunk
# Log the response
proxy_response = ProxyResponse(message=response_message)
logger.info(f"Streaming client response for log ID {log_id}:\n{proxy_response.model_dump_json(indent=2)}")
update_request_log(log_id, client_response=proxy_response.model_dump())
return StreamingResponse(stream_and_log(), media_type="text/event-stream")
# Handle non-streaming request
try:
logger.info(f"Initiating non-streaming request for log ID: {log_id}")
response_message = await process_chat_request(messages_to_llm, settings, log_id)
proxy_response = ProxyResponse(message=response_message)
logger.info(f"Response body for log ID {log_id}:\n{proxy_response.model_dump_json(indent=2)}")
# Log client response to DB
update_request_log(log_id, client_response=proxy_response.model_dump())
return proxy_response
except Exception as e:
logger.exception(f"An unexpected error occurred during non-streaming request for log ID: {log_id}")
# Log the error to the database
update_request_log(log_id, client_response={"error": str(e)})
raise HTTPException(status_code=500, detail=f"An unexpected error occurred: {str(e)}")
@app.get("/")
def read_root():
return {"message": "LLM Tool Proxy is running."}