File size: 776 Bytes
150cd80
 
 
b27eb78
150cd80
 
 
 
 
 
b27eb78
 
150cd80
b27eb78
150cd80
 
b27eb78
150cd80
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# RAG Configuration for Conversation Data (Agent UI)
# This config matches the settings used to create rag_conversations collection

parameters:
  extract_collection_name: test_conversation_documents
  fetch_limit: 0
  load_collection_name: rag_conversations  # Query conversation data
  content_quality_score_threshold: 0.0
  retriever_type: contextual  # Hybrid vector + full-text search
  embedding_model_id: text-embedding-3-small  # Must match offline pipeline
  embedding_model_type: openai
  embedding_model_dim: 1536
  chunk_size: 640  # Match offline pipeline
  contextual_summarization_type: contextual
  contextual_agent_model_id: gpt-4o-mini
  contextual_agent_max_characters: 200
  mock: false
  processing_batch_size: 5
  processing_max_workers: 4
  device: mps