completion = client.chat.completions.create(
model=“deepseek-ai/DeepSeek-V3-0324:together”,
messages=[
{
“role”: “user”,
“content”: “What is the capital of France?”
}
],
)
print(completion.choices[0].message)
i am getting this error.
only Inference Providers with accurate pricing are available for organizations.
completion = client.chat.completions.create(
model=“deepseek-ai/DeepSeek-V3-0324:together”,
messages=[
{
“role”: “user”,
“content”: “What is the capital of France?”
}
],
)
It looks like your organization account isn’t getting billed or the “X-HF-Bill-To” header isn’t being passed. We have some documentation for billing your organization, with some examples, here: Pricing and Billing.
If you’re still experiencing issues after adjusting the header, let me know!
The billing is currently being processed through the old API, where we were required to specify the provider’s name, for example, like this: https://router.huggingface.co/fireworks-ai/inference/v1. It used to work perfectly fine, but today, after the recent changes, it started experiencing issues."