Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
変更内容の説明
RAGチャットにおいて、2回目以降の会話の根拠文書の紐づけがおかしくなることがある点を修正
原因
「前処理:Few-shot で参考にされてしまうため、過去ログから footnote を削除」とコメント記載のある処理において、
末尾の脚注([^0] [^1] ...)のみが削除されており、footnate全体が除去されていないこと、
メッセージ本文の脚注アンカー部分([^0] [^1] ...)が残っていることにより、
1回目の会話の脚注と、2回目以降の会話の脚注間で意図せぬ紐づきが発生していた
参考:2回目の会話における1回目のメッセージの内容
処理前のメッセージ例
処理後のメッセージ(不具合発生時)
→ 末尾の脚注表記のみが削除されリンクが残っている/メッセージ本文の脚注アンカー部分([^0] [^1] ...)が残っている
処理後のメッセージ(改善)
→footnate全体を削除
チェック項目
本対応により、当該現象が発生しなくなることを確認済みです。
関連する Issue
#601