ASSISTANTS
Error Handling
1. Try obtaining the HTTP error code to initially locate the issue
a. In your code, try to print the error code and error message (message). Using this information, most issues can be located.
- Common error codes and their causes:
- 400: Incorrect parameters. Refer to the error message (message) to correct invalid request parameters.
- 401: API Key is not properly set.
- 403: Insufficient permissions. The most common reason is that the model requires real-name authentication. For other cases, refer to the error message (message).
- 429: Rate limits triggered. Refer to the error message (message) to determine whether the issue is related to
RPM / RPD / TPM / TPD / IPM / IPD
. You can consult Rate Limits to understand the specific rate-limiting policies. - 504 / 503:
- Generally caused by high system load. You can try again later.
- For chat and text-to-speech requests, you can try using streaming output (
"stream": true
). Refer to Streaming Output for more details.
- 500: An unknown server error occurred. You can send an email to help@siliconflow.com for troubleshooting.
b. If the client does not output corresponding information, you can try running the curl command in the command line (taking an LLM model as an example):
2. Try switching to another model to see if the issue persists
3. If you are using a proxy, consider disabling the proxy and trying again
For any other issues, please send an email to help@siliconflow.com.