|
@@ -223,7 +223,7 @@ class GoogleAI(object):
|
|
|
)
|
|
|
response.raise_for_status()
|
|
|
result = response.json()
|
|
|
- logger.info(f"[内容分析] API原始响应: {result}")
|
|
|
+ # print(f"[内容分析] API原始响应: {result}")
|
|
|
|
|
|
if not result:
|
|
|
raise Exception("API返回结果为空")
|
|
@@ -270,7 +270,7 @@ class GoogleAI(object):
|
|
|
if not demand_list:
|
|
|
raise Exception("CozeHook处理结果为空")
|
|
|
|
|
|
- logger.info(f"[内容分析] API分析完成, 结果: {analysis_data}, {demand_list}")
|
|
|
+ # print(f"[内容分析] API分析完成, 结果: {analysis_data}, {demand_list}")
|
|
|
return analysis_data, demand_list
|
|
|
|
|
|
except orjson.JSONDecodeError as e:
|