Spaces:
Sleeping
Sleeping
File size: 304 Bytes
6d0c6c2 c0ea645 6d0c6c2 c0ea645 04f20c1 6d0c6c2 c0ea645 6d0c6c2 |
1 2 3 4 5 6 7 8 9 10 11 12 |
import os
from langchain_groq import ChatGroq
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)
|