웹 페이지를 Context 삼아서 유저의 질문에 답하는 챗봇을 구현해보자. 과정은 다음과 같다.1. 대상 웹 페이지 크롤링2. 적절한 사이즈로 잘라서 Docs 만들기 (chunks들 만들기)3. 유저 질문 받기4. 유저 질문 기반으로 VectorDB 검색 (docs에서 가장 코사인 유사도 높은 chunk가 Context로 선택된다.)5. 최종 Prompt 생성 = 사전 Prompt + Context + 유저 질문6. 답변 대상으로는 해당 페이지를 사용하였다. (https://lilianweng.github.io/posts/2023-06-23-agent/) LLM Powered Autonomous AgentsBuilding agents with LLM (large language model) as its ..