Quality
The timeout section on cloud functions says " Timeout
Limit the execution time of your function. Maximum value is 900 seconds (15 minutes)." but in practice there seems to be a hard limit of 30 seconds from this error message:
"Synchronous function execution timed out. Use asynchronous execution instead, or ensure the execution duration doesn't exceed 30 seconds.\nError Code: 408"
I'm definitely using an asynch await call in this function as well, it's not synchronous.
Could someone from AW please confirm (would like an official position statement, thanks) what the timeout limit actually is, and if it will conform with the current stated description, and if so, when? ty!
Or if it is as stated do you have some example code to clarify what the error message means. Example use case here is a long await call to an LLM that needs some thinking time to return output.