(improvement)(chat) show cases order by feedback score (#273)

Co-authored-by: jolunoluo
This commit is contained in:
LXW
2023-10-23 17:35:27 +08:00
committed by GitHub
parent 166a3cfe09
commit c6f9ea2b20
2 changed files with 15 additions and 12 deletions

View File

@@ -183,7 +183,7 @@ public class ChatServiceImpl implements ChatService {
.collect(Collectors.groupingBy(ChatParseDO::getQuestionId));
for (QueryResp queryResp : queryResps) {
List<ChatParseDO> chatParseDOList = chatParseMap.get(queryResp.getQuestionId());
if (CollectionUtils.isEmpty(chatParseMap)) {
if (CollectionUtils.isEmpty(chatParseDOList)) {
continue;
}
List<SemanticParseInfo> parseInfos = chatParseDOList.stream().map(chatParseDO ->

View File

@@ -56,18 +56,21 @@
<select id="queryShowCase" resultMap="ResultMapWithBLOBs">
select q1.*
from s2_chat_query q1
join (
join (
select distinct chat_id
from s2_chat_query
where query_state = 1 and agent_id = ${agentId} and (score is null or score > 1)
<if test="userName != null and userName != ''">
and user_name = #{userName}
</if>
order by chat_id desc
limit #{start}, #{limit}
) q2
on q1.chat_id = q2.chat_id
where agent_id = ${agentId}
from (
select *
from s2_chat_query
where query_state = 1 and agent_id = ${agentId}
<if test="userName != null and userName != ''">
and user_name = #{userName}
</if>
order by score, chat_id desc
)
limit #{start}, #{limit}
) q2 on q1.chat_id = q2.chat_id
where agent_id = ${agentId} and (score is null or score > 1)
order by score desc
</select>
</mapper>