AI 에이전트의 경우: 문서 인덱스는 https://www.mongodb.com/ko-kr/docs/llms.txt에서 사용할 수 있으며, 모든 페이지의 마크다운 버전은 어떤 URL 경로에 .md를 추가하여 사용할 수 있습니다.
Docs Menu

MongoDB 벡터 검색 수익 시작 튜토리얼

이 섹션에서는 클러스터 에 로드하는 샘플 데이터에 MongoDB Vector Search 인덱스 생성합니다.

이 섹션에서는 인덱싱된 필드 에 대해 샘플 MongoDB 벡터 검색 쿼리 실행 .

이 빠른 시작은 제공된 쿼리 와 의미상 관련된 텍스트가 포함된 문서를 클러스터 에서 검색하는 데 중점을 두었습니다. 그러나 이미지나 동영상과 같이 클러스터 에 쓰기 (write) 수 있는 모든 유형의 데이터를 나타내는 임베딩에 벡터 검색 인덱스 생성할 수 있습니다.

The query you ran in this quick start is an aggregation pipeline, in which the $vectorSearch stage performs an Approximate Nearest Neighbor (ANN) search followed by a $project stage that refines the results. To see all the options for a semantic search query, including using Exact Nearest Neighbor (ENN) or how to narrow the scope of your semantic search with the filter option, see Run Vector Search Queries.