feature: 移除多余的print语句

This commit is contained in:
贺海国
2026-04-13 17:50:03 +08:00
parent 29d1e33169
commit c9ee44edce

4
app.py
View File

@@ -52,10 +52,6 @@ def encode_image_to_base64(image: Image.Image) -> str:
async def call_openrouter_api(image_base64: str, user_message: str) -> str:
"""调用 OpenRouter API"""
print()
print(f"调用 OpenRouter API: {MODEL_NAME}")
print(f"用户消息: {user_message} {OPENROUTER_API_KEY}")
headers = {
"Authorization": f"Bearer {OPENROUTER_API_KEY}",
"Content-Type": "application/json",