Spaces:
Sleeping
Sleeping
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) | |