Samuel Colvin
Samuel Colvin
Thanks for reporting @Jassy930, this should be fixed in https://github.com/pydantic/pydantic-core/pull/1297.
This looks like great work, but I wonder if it will add complexity to the migration/rewrite required by #437. Given the size of the change required by #437, I think...
Thanks so much, I'll discuss with the team.
@willbakst might want to use this in https://github.com/Mirascope/mirascope.
If anyone is interested in running logfire on-prem, I'd love to speak to you and understand what you're looking for - feel free to reach me at [email protected]. @TheoBabilon I...
Thanks for reporting. Any chance you could share your code with us? Do you happen to have a generator with a `break`? I've seen similar things with `GeneratorExit`.
I've seen something similar with OpenAI where I was `break`ing out of a generator response. I'm sure we can come up with a minimal reproduction and then fix. Some background:...
See https://github.com/open-telemetry/opentelemetry-python-contrib/issues/2486 - the fix is not trivial, but we'll try to submit a PR soon.
cc @ritchie46 in case you have any thoughts?
In case anyone is struggling with this, if the postgres connection port is open, you can connect to clickhouse with psycopg3: ```py conn = await psycopg.AsyncConnection.connect( dbname='default', user='default', password='...', host='localhost',...