PercivalFletcher commited on
Commit
d32b359
·
verified ·
1 Parent(s): 8a06370

Update rag_utils.py

Browse files
Files changed (1) hide show
  1. rag_utils.py +1 -1
rag_utils.py CHANGED
@@ -19,7 +19,7 @@ CHUNK_OVERLAP = 200
19
  TOP_K_CHUNKS = 10 # The final number of chunks to send to the LLM
20
  # A larger number of initial candidates for reranking
21
  INITIAL_K_CANDIDATES = 20
22
- GROQ_MODEL_NAME = "meta-llama/Llama-3.1-8B"
23
  HYDE_MODEL = "meta-llama/Llama-4-Scout-17B-16E-Instruct"
24
  EMBEDDING_MODEL_NAME = "all-MiniLM-L6-v2"
25
 
 
19
  TOP_K_CHUNKS = 10 # The final number of chunks to send to the LLM
20
  # A larger number of initial candidates for reranking
21
  INITIAL_K_CANDIDATES = 20
22
+ GROQ_MODEL_NAME = "openai/gpt-oss-20b"
23
  HYDE_MODEL = "meta-llama/Llama-4-Scout-17B-16E-Instruct"
24
  EMBEDDING_MODEL_NAME = "all-MiniLM-L6-v2"
25