> ## Documentation Index
> Fetch the complete documentation index at: https://docs.naga.ac/llms.txt
> Use this file to discover all available pages before exploring further.

# Production Checklist

> A practical checklist for shipping against NagaAI APIs reliably.

Use this checklist before you move from local testing to production traffic.

## Request and model safety

1. Pin exact production model identifiers.
2. Validate the exact request shape you send in production.
3. Re-test capability-specific behavior when switching providers or models.

## Stateful behavior

4. Decide how you will store conversation state.
5. Verify tool loops, retries, and replay behavior if your app uses tools.
6. Test streaming behavior if your UI or workers depend on it.

## Error handling

7. Handle synchronous API errors such as auth failures, validation errors, and insufficient credits.
8. Handle mid-stream failures if you use streaming.
9. Log request IDs, status codes, and failure modes in your own monitoring.

## Access and cost control

10. Separate development and production API keys.
11. Confirm paid-model access and account balance before launch.
12. Monitor costs and usage through account activity and usage data.

## Related Docs

* [Error Handling](/build/error-handling)
* [Streaming](/build/streaming)
* [Tokens and Usage](/build/tokens-and-usage)
* [Balance and Activity](/account/balance-and-activity)
