KNIME Hub AI Gateway Timeout after 30s

Hi,

We have activated KNIME Hub AI Gateway.

When using KNIME Hub AI Gateway, and asking an LLM to create a Dataplan based on 20 rows of data from Excel, then this “middle-complex” questions times out on the KNIME Hub AI Gateway.
Example model: gpt-5.2-codex

Error message:
ERROR LLM Prompter 4:1219 Execute failed: Request timed out after 30s.

When loading the model directly via OpenAI LLM, then there is no problem.

I was looking for KOTS setting for timeout, but cannot find anything.
HUB: 1.17.3, KNIME AP: 5.8.2 LTS

Thanks to KNIME Service.

Reference Docs:
api.[Hub URL]/api-doc/?service=ai-gateway

Fixed with:

PATCH to: api.[Hub URL]/ai-gateway/v1/models/{model ID}

With request body
``
{
"params": {
"timeout": "PT180S"
}
}
```

1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.