|
@@ -203,6 +203,7 @@ class QueryGenerationAgent:
|
|
|
with httpx.Client() as client:
|
|
|
data_content = {"queryWords": result_items}
|
|
|
resp1 = client.post(url, headers=headers, json=data_content, timeout=30)
|
|
|
+ logger.info(f"查询词保存结果: {resp1.json()}")
|
|
|
resp1.raise_for_status()
|
|
|
|
|
|
logger.info(f"查询词保存成功: question={question},query数量={len(result_items)}")
|