Multi-Rag / src /llm /llm_loader.py
VashuTheGreat2's picture
Upload folder using huggingface_hub
9c90775 verified
Raw
History Blame Contribute Delete
188 Bytes
from langchain_groq import ChatGroq
from src.constants import MODEL_NAME
import logging
llm = ChatGroq(
model=MODEL_NAME
)
logging.info(f"LLM initialized with model_name:{MODEL_NAME}")