Skip to content

Commit

Permalink
Merge branch 'feature/detailed-message-actions' into staging
Browse files Browse the repository at this point in the history
  • Loading branch information
AlisoSouza committed Nov 25, 2024
2 parents bd3568b + 56ca387 commit 84cdee2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nexus/logs/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def groundedness_details(self):
for chunk in self.messagelog.chunks_json:
evidence: str = sentence.get("evidence", "")
clean_evidence: str = self.clean_string(evidence)
clean_chunk: str = self.clean_string(chunk.get("full_page"), "")
clean_chunk: str = self.clean_string(chunk.get("full_page", ""))
if clean_evidence in clean_chunk:
sentence_stats["sources"].append(
{
Expand Down

0 comments on commit 84cdee2

Please sign in to comment.