This change drops the 30-second client-side timeout from the Axios call in src/modules/openai/actions.ts. That suggests some valid OpenAI requests were taking longer than the hard cutoff and getting terminated before the API could respond. The practical effect is that long-running generations should now complete instead of failing early, though request latency will no longer be capped on the client side.

Removed the fixed Axios timeout from OpenAI action requests to avoid aborting longer-running responses. - lws803/GigaChadGPT