mirror of https://github.com/Mai-with-u/MaiBot.git
fix:无效推断
parent
3243b9c725
commit
0123d68578
|
|
@ -58,7 +58,8 @@ def _init_inference_prompts() -> None:
|
||||||
prompt1_str = """
|
prompt1_str = """
|
||||||
**词条内容**
|
**词条内容**
|
||||||
{content}
|
{content}
|
||||||
|
**词条出现的上下文(raw_content)其中的SELF是你自己的发言**
|
||||||
|
{raw_content_list}
|
||||||
|
|
||||||
请根据以上词条内容和上下文,推断这个词条的含义。
|
请根据以上词条内容和上下文,推断这个词条的含义。
|
||||||
- 如果这是一个黑话、俚语或网络用语,请推断其含义
|
- 如果这是一个黑话、俚语或网络用语,请推断其含义
|
||||||
|
|
@ -350,13 +351,22 @@ class JargonMiner:
|
||||||
logger.error(f"jargon {content} 推断2解析失败: {e}")
|
logger.error(f"jargon {content} 推断2解析失败: {e}")
|
||||||
return
|
return
|
||||||
|
|
||||||
|
|
||||||
|
logger.info(f"jargon {content} 推断2提示词: {prompt2}")
|
||||||
|
logger.info(f"jargon {content} 推断2结果: {response2}")
|
||||||
|
logger.info(f"jargon {content} 推断1提示词: {prompt1}")
|
||||||
|
logger.info(f"jargon {content} 推断1结果: {response1}")
|
||||||
|
|
||||||
if global_config.debug.show_jargon_prompt:
|
if global_config.debug.show_jargon_prompt:
|
||||||
logger.info(f"jargon {content} 推断2提示词: {prompt2}")
|
logger.info(f"jargon {content} 推断2提示词: {prompt2}")
|
||||||
logger.info(f"jargon {content} 推断2结果: {response2}")
|
logger.info(f"jargon {content} 推断2结果: {response2}")
|
||||||
# logger.info(f"jargon {content} 推断2结果: {inference2}")
|
|
||||||
logger.info(f"jargon {content} 推断1提示词: {prompt1}")
|
logger.info(f"jargon {content} 推断1提示词: {prompt1}")
|
||||||
logger.info(f"jargon {content} 推断1结果: {response1}")
|
logger.info(f"jargon {content} 推断1结果: {response1}")
|
||||||
# logger.info(f"jargon {content} 推断1结果: {inference1}")
|
else:
|
||||||
|
logger.debug(f"jargon {content} 推断2提示词: {prompt2}")
|
||||||
|
logger.debug(f"jargon {content} 推断2结果: {response2}")
|
||||||
|
logger.debug(f"jargon {content} 推断1提示词: {prompt1}")
|
||||||
|
logger.debug(f"jargon {content} 推断1结果: {response1}")
|
||||||
|
|
||||||
# 步骤3: 比较两个推断结果
|
# 步骤3: 比较两个推断结果
|
||||||
prompt3 = await global_prompt_manager.format_prompt(
|
prompt3 = await global_prompt_manager.format_prompt(
|
||||||
|
|
|
||||||
|
|
@ -450,8 +450,8 @@ async def _react_agent_solve_question(
|
||||||
|
|
||||||
messages.extend(_conversation_messages)
|
messages.extend(_conversation_messages)
|
||||||
|
|
||||||
for msg in messages:
|
# for msg in messages:
|
||||||
print(msg)
|
# print(msg)
|
||||||
|
|
||||||
return messages
|
return messages
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue