Open
Conversation
LLM이 텍스트로 헛소리(Hallucination)를 하지 못하게 required로 묶고, 일반 대화를 처리할 함수를 추가
Collaborator
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.

☝️Issue Number
Close #159
📌 개요
챗봇 자연어로 CRUD 기능 개발하였습니다.

플로우는 위 사진과 같습니다.
🔁 변경 사항
📸 스크린샷
단순 일정 등록
애매한 요청 되묻기
단순 일정 수정
단순 일정 삭제
반복 일정 등록
반복 일정 삭제
👀 기타 더 이야기해볼 점
EVENT/TODO 모두 테스트 케이스 설정해서 테스트 해보고 있다가
계속해서 오류가 발생하여서 일단 지금까지의 결과물 PR을 올립니다.
또한 현재 사용하고 있는 임베딩 모델이 OpenAI의 text-embedding-3-small 모델인데
해당 모델은 한국어 의미 연결이 약해서 개념적 유사도가 낮게 나옵니다. 해당 문제가 생각보다 큰 문제가 되는 것 같습니다.
유사도가 낮게 나와서 0.25로 필터를 걸어놨는데, 이 필터가 너무 낮으니까 일정 수정 시에 조금만 일정 이름이 달라져도 이해를 못합니다 얘가
그래서 백로그에 크리티컬 우선도로 Upstage 임베딩 모델로 변경하는 백로그를 작성하였습니다.
해당 임베딩 모델로 변경 후 다시 테스트 해보면서 임계값 설정 및 안정적인 자연어 CRUD로 리팩토링 해보겠습니다...
이거 생각보다 빡세네요