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!
our team (3 seats) just switched to Inference Providers and we need to centralize all costs on the credit card linked to our organization.
We’re sending the X‑HF‑Bill‑To: <org-name> header, but every call that targets a model served by Together AI (e.g. deepseek-ai/DeepSeek‑V3-0324:together) fails with
403 Only Inference Providers with accurate pricing are available for organizations
If we drop the header, the call succeeds – but then it’s billed to the individual user, which defeats our governance/compliance workflow.
Requirements
Single credit card at org level – no personal payments/expensing.
Freedom to use any provider without forcing each user to store a separate API key.
Today the docs say PAY‑G via org works “only for PRO users and for integrated providers” Hugging Face
Is there a temporary way to keep centralized billing without managing separate provider keys + credit cards?