Replies: 1 comment 7 replies
-
|
You can't adjust the maximum retry attempts or retry interval for LLM nodes using To set higher values (like 20 retries and 10,000 ms interval), you need to bypass the UI. You can do this by manually editing the workflow JSON or using the API to set the "retry_config": {
"retry_enabled": true,
"max_retries": 20,
"retry_interval": 10000
}Once set, the backend will honor these values even though the UI won't let you input them directly. There is no system-wide or global retry config—it's always per-node in the workflow. To reply, just mention @dosu. How did I do? Good | Irrelevant | Incorrect | Verbose | Hallucination | Report 🐛 | Other |
Beta Was this translation helpful? Give feedback.


Uh oh!
There was an error while loading. Please reload this page.
-
Self Checks
Content
dify version:1.9.1 ,Deployed with Docker
Due to rate limiting issues with the LLM I am currently using, I need to modify the maximum number of retry attempts and the maximum retry interval. However, I have checked the .env and docker-compose.yaml files and did not find any related configurations. Could you please advise how I can adjust the following values? I would like to set them as follows:
Beta Was this translation helpful? Give feedback.
All reactions