Post-generator-tool / llm_helper.py
Deaksh's picture
Update llm_helper.py
0ac93ae verified
raw
history blame contribute delete
309 Bytes
from langchain_groq import ChatGroq
import os
llm = ChatGroq(
api_key=os.environ["GROQ_API_KEY"], # This will raise an error if unset
model_name="llama3-70b-8192"
)
if __name__ == "__main__":
response = llm.invoke("Two most important ingredient in samosa are ")
print(response.content)