--- title: Local Search ๐Ÿ”Ž navtitle: Local Search tags: [post, orchestration] layout: page date: 2024-03-28 --- ## Entity-based Reasoning The [local search](https://github.com/microsoft/graphrag/blob/main//graphrag/query/structured_search/local_search/) method combines structured data from the knowledge graph with unstructured data from the input documents to augment the LLM context with relevant entity information at query time. It is well-suited for answering questions that require an understanding of specific entities mentioned in the input documents (e.g., โ€œWhat are the healing properties of chamomile?โ€). ## Methodology ```mermaid --- title: Local Search Dataflow --- %%{ init: { 'flowchart': { 'curve': 'step' } } }%% flowchart LR uq[User Query] ---.1 ch1[Conversation
History]---.1 .1--Entity
Description
Embedding--> ee[Extracted Entities] ee[Extracted Entities] ---.2--Entity-Text
Unit Mapping--> ctu[Candidate
Text Units]--Ranking +
Filtering -->ptu[Prioritized
Text Units]---.3 .2--Entity-Report
Mapping--> ccr[Candidate
Community Reports]--Ranking +
Filtering -->pcr[Prioritized
Community Reports]---.3 .2--Entity-Entity
Relationships--> ce[Candidate
Entities]--Ranking +
Filtering -->pe[Prioritized
Entities]---.3 .2--Entity-Entity
Relationships--> cr[Candidate
Relationships]--Ranking +
Filtering -->pr[Prioritized
Relationships]---.3 .2--Entity-Covariate
Mappings--> cc[Candidate
Covariates]--Ranking +
Filtering -->pc[Prioritized
Covariates]---.3 ch1 -->ch2[Conversation History]---.3 .3-->res[Response] classDef green fill:#26B653,stroke:#333,stroke-width:2px,color:#fff; classDef turquoise fill:#19CCD3,stroke:#333,stroke-width:2px,color:#fff; classDef rose fill:#DD8694,stroke:#333,stroke-width:2px,color:#fff; classDef orange fill:#F19914,stroke:#333,stroke-width:2px,color:#fff; classDef purple fill:#B356CD,stroke:#333,stroke-width:2px,color:#fff; classDef invisible fill:#fff,stroke:#fff,stroke-width:0px,color:#fff, width:0px; class uq,ch1 turquoise class ee green class ctu,ccr,ce,cr,cc rose class ptu,pcr,pe,pr,pc,ch2 orange class res purple class .1,.2,.3 invisible ``` Given a user query and, optionally, the conversation history, the local search method identifies a set of entities from the knowledge graph that are semantically-related to the user input. These entities serve as access points into the knowledge graph, enabling the extraction of further relevant details such as connected entities, relationships, entity covariates, and community reports. Additionally, it also extracts relevant text chunks from the raw input documents that are associated with the identified entities. These candidate data sources are then prioritized and filtered to fit within a single context window of pre-defined size, which is used to generate a response to the user query. ## Configuration Below are the key parameters of the [LocalSearch class](https://github.com/microsoft/graphrag/blob/main//graphrag/query/structured_search/local_search/search.py): * `llm`: OpenAI model object to be used for response generation * `context_builder`: [context builder](https://github.com/microsoft/graphrag/blob/main//graphrag/query/structured_search/local_search/mixed_context.py) object to be used for preparing context data from collections of knowledge model objects * `system_prompt`: prompt template used to generate the search response. Default template can be found at [system_prompt](https://github.com/microsoft/graphrag/blob/main//graphrag/query/structured_search/local_search/system_prompt.py) * `response_type`: free-form text describing the desired response type and format (e.g., `Multiple Paragraphs`, `Multi-Page Report`) * `llm_params`: a dictionary of additional parameters (e.g., temperature, max_tokens) to be passed to the LLM call * `context_builder_params`: a dictionary of additional parameters to be passed to the [`context_builder`](https://github.com/microsoft/graphrag/blob/main//graphrag/query/structured_search/local_search/mixed_context.py) object when building context for the search prompt * `callbacks`: optional callback functions, can be used to provide custom event handlers for LLM's completion streaming events ## How to Use An example of a local search scenario can be found in the following [notebook](../notebooks/local_search_nb).