sniro23 commited on
Commit
377b449
·
1 Parent(s): 1a68fac

fix: Update Groq model from deprecated llama3-70b-8192 to llama-3.1-70b-versatile

Browse files
Files changed (1) hide show
  1. src/enhanced_groq_medical_rag.py +1 -1
src/enhanced_groq_medical_rag.py CHANGED
@@ -77,7 +77,7 @@ class EnhancedGroqMedicalRAG:
77
  # Explicitly create an isolated httpx client for Groq to avoid conflicts
78
  http_client = httpx.Client()
79
  self.groq_client = Groq(api_key=self.groq_api_key, http_client=http_client)
80
- self.model_name = "llama3-70b-8192"
81
 
82
  # Initialize medical enhancement components
83
  self.logger.info("🏥 Initializing Enhanced Medical RAG System...")
 
77
  # Explicitly create an isolated httpx client for Groq to avoid conflicts
78
  http_client = httpx.Client()
79
  self.groq_client = Groq(api_key=self.groq_api_key, http_client=http_client)
80
+ self.model_name = "llama-3.1-70b-versatile"
81
 
82
  # Initialize medical enhancement components
83
  self.logger.info("🏥 Initializing Enhanced Medical RAG System...")