File size: 334 Bytes
790ed47
 
 
 
1a3d382
790ed47
 
 
 
1
2
3
4
5
6
7
8
9
import getpass
import os
#os.environ["MISTRAL_API_KEY"] = getpass.getpass()
#os.environ["HF_TOKEN"] = getpass.getpass()
api_key = os.getenv("HF_TOKEN")
client = HuggingFaceHub(repo_id = 'mistralai/Mathstral-7B-v0.1') # 'mistralai/Mathstral-7B-v0.1')
prompt = "What is the best French cheese?"
response = client(prompt)
print(response)