Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Run Serverless inference exclusively in the US
model
accounts/fireworks/routers/kimi-k3-us
curl https://api.fireworks.ai/inference/v1/chat/completions \ -H "Content-Type: application/json" \ -H "Authorization: Bearer $FIREWORKS_API_KEY" \ -d '{ "model": "accounts/fireworks/routers/kimi-k3-us", "messages": [{"role": "user", "content": "Hello"}] }'
from fireworks import Fireworks client = Fireworks() response = client.chat.completions.create( model="accounts/fireworks/routers/kimi-k3-us", messages=[{"role": "user", "content": "Hello"}], ) print(response.choices[0].message.content)
Was this page helpful?