Spaces:
Runtime error
Runtime error
File size: 498 Bytes
0197efc eafe093 f9d5efa eafe093 f9d5efa 0197efc eafe093 f9d5efa eafe093 f9d5efa | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | from huggingface_hub import InferenceClient
import os
HF_TOKEN = os.getenv("HF_TOKEN")
client = InferenceClient(
model="mistralai/Mistral-7B-Instruct-v0.2",
token=HF_TOKEN
)
def query_model(prompt):
response = client.chat.completions.create(
messages=[
{"role": "system", "content": "You are a professional fitness trainer"},
{"role": "user", "content": prompt}
],
max_tokens=700
)
return response.choices[0].message.content |