license: openrail
datasets:
- FreedomIntelligence/medical-o1-reasoning-SFT
language:
- aa
---from huggingface_hub import InferenceClient
client = InferenceClient(
provider="fireworks-ai",
api_key="hf_xxxxxxxxxxxxxxxxxxxxxxxx",
)
completion = client.chat.completions.create(
model="Qwen/QwQ-32B",
messages=[
{
"role": "user",
"content": "What is the capital of France?"
}
],
max_tokens=500,
)
print(completion.choices[0].message)