|
|
@@ -76,7 +76,7 @@ async def _do_search(query: str, channel: str) -> Optional[List[dict]]:
|
|
|
"type": channel,
|
|
|
"keyword": query,
|
|
|
"cursor": "0",
|
|
|
- "max_count": 5,
|
|
|
+ "max_count": 10,
|
|
|
"content_type": "图文",
|
|
|
}
|
|
|
try:
|
|
|
@@ -203,7 +203,8 @@ async def _eval_single_post(
|
|
|
)
|
|
|
|
|
|
# 仅对与人设匹配的帖子做选题点匹配
|
|
|
- if result["persona_match_result"] and result["post_keywords"]:
|
|
|
+ # if result["persona_match_result"] and result["post_keywords"]:
|
|
|
+ if result["post_keywords"]:
|
|
|
matched = await match_derivation_to_post_points(
|
|
|
result["post_keywords"], account_name, post_id
|
|
|
)
|