Hey, I'm running into a peculiar issue when creating Assistant Threads(https://platform.openai.com/docs/api-reference/threads/createThread). Seems like there's an API limit for only 32 "initial" messages; anything above that, I get:
"400 Invalid 'messages': array too long. Expected an array with maximum length 32, but got an array with length 36 instead."
```
This seems unexpected as there's no documentation whatsoever about this limit. The only workaround I could think of was to manually create messages using the message/createMessage API, but that would increase the latency by quite a bit since this would have to be a sequential operation. I would appreciate any help