Spaces:
Runtime error
Runtime error
import os | |
from huggingface_hub import InferenceClient | |
client = InferenceClient( | |
provider="hf-inference", | |
api_key=os.environ["HF_TOKEN"], | |
) | |
completion = client.chat.completions.create( | |
model="sarvamai/sarvam-m", | |
messages=[ | |
{ | |
"role": "user", | |
"content": "What is the capital of France?" | |
} | |
], | |
) | |
print(completion.choices[0].message) |