Chris Burgess
Chris Burgess
> I already suspected that it could be because I didn't register any payment methods. Is there no free limit? Unless you have some special deal then no I don’t...
> > There is the remaining issue of OpenAI not responding sometimes and needing to repeat your audio to send the request again. However if you are getting it every...
Here is a complete example recreating the error. Here I am using polars to make the table which results in the same schema that I am producing with pyarrow. ```python...
Ah, confusingly there appears to be writer differences that cause the issue. My Rust pyarrow implementation matches when polars has `pyarrow=True`. ```python import polars as pl import pyarrow.parquet as pq...
Here is the code in Polars where the "item" name crops up. https://github.com/pola-rs/polars/blob/main/crates/polars-core/src/datatypes/dtype.rs#L575 I believe this is because they are not converting to parquet, but to arrow, then parquet. A...