[agent] system_instruction_name = "rag_agent" tool_names = ["local_search"] [agent.generation_config] model = "ollama/llama3.1" [completion] provider = "litellm" concurrent_request_limit = 1 [completion.generation_config] model = "ollama/llama3.1" temperature = 0.1 top_p = 1 max_tokens_to_sample = 1_024 stream = false add_generation_kwargs = { } [embedding] provider = "ollama" base_model = "mxbai-embed-large" base_dimension = 1_024 batch_size = 128 add_title_as_prefix = true concurrent_request_limit = 2 [database] provider = "postgres" [database.graph_creation_settings] graph_entity_description_prompt = "graphrag_entity_description" entity_types = [] # if empty, all entities are extracted relation_types = [] # if empty, all relations are extracted fragment_merge_count = 4 # number of fragments to merge into a single extraction max_knowledge_relationships = 100 max_description_input_length = 65536 generation_config = { model = "ollama/llama3.1" } # and other params, model used for relationshipt extraction [database.graph_entity_deduplication_settings] graph_entity_deduplication_type = "by_name" graph_entity_deduplication_prompt = "graphrag_entity_deduplication" max_description_input_length = 65536 generation_config = { model = "ollama/llama3.1" } # and other params, model used for deduplication [database.graph_enrichment_settings] community_reports_prompt = "graphrag_community_reports" max_summary_input_length = 65536 generation_config = { model = "ollama/llama3.1" } # and other params, model used for node description and graph clustering leiden_params = {} [database.graph_search_settings] generation_config = { model = "ollama/llama3.1" } [orchestration] provider = "simple" [ingestion] vision_img_model = "ollama/llama3.2-vision" vision_pdf_model = "ollama/llama3.2-vision" [ingestion.extra_parsers] pdf = "zerox" chunks_for_document_summary = 16 document_summary_model = "ollama/llama3.1"