Update veryfinal.py
Browse files- veryfinal.py +1 -1
veryfinal.py
CHANGED
@@ -147,7 +147,7 @@ json_chunks = text_splitter.split_documents(json_docs)
|
|
147 |
database = FAISS.from_documents(json_chunks, NVIDIAEmbeddings())
|
148 |
|
149 |
# Initialize LLM
|
150 |
-
llm = ChatGroq(model="llama-
|
151 |
|
152 |
# Create retriever and retriever tool
|
153 |
retriever = database.as_retriever(search_type="similarity", search_kwargs={"k": 3})
|
|
|
147 |
database = FAISS.from_documents(json_chunks, NVIDIAEmbeddings())
|
148 |
|
149 |
# Initialize LLM
|
150 |
+
llm = ChatGroq(model="meta-llama/llama-4-scout-17b-16e-instruct", temperature=0,api_key=os.getenv("GROQ_API_KEY"))
|
151 |
|
152 |
# Create retriever and retriever tool
|
153 |
retriever = database.as_retriever(search_type="similarity", search_kwargs={"k": 3})
|