HackerTrans
TopNewTrendsCommentsPastAskShowJobs

scolvin

no profile record

Submissions

Fast local spreadsheet viewer based on GPUI

github.com
4 points·by scolvin·2 माह पहले·0 comments

$5k bounty program from Pydantic Monty

hackmonty.com
3 points·by scolvin·3 माह पहले·0 comments

Pydantic Monty: you probably don't need a full sandbox

pydantic.dev
3 points·by scolvin·5 माह पहले·0 comments

Monty: A minimal, secure Python interpreter written in Rust for use by AI

github.com
25 points·by scolvin·5 माह पहले·1 comments

AI Gateway from Pydantic

pydantic.dev
1 points·by scolvin·8 माह पहले·0 comments

Pydantic AI V1

pydantic.dev
3 points·by scolvin·10 माह पहले·0 comments

comments

scolvin
·2 माह पहले·discuss
This guy has nice hair.
scolvin
·5 माह पहले·discuss
Please report any panics, we'll fix them!
scolvin
·5 माह पहले·discuss
No one is going to let an LLM get prompted by end users to write python code I just run on my server, there's no real debate on that.
scolvin
·5 माह पहले·discuss
As discussed on twitter, v8 shows that's not true.

But to be clear, we're not even targeting the same "computer use" use case I think e2b, daytona, cloudflare, modal, fly.io, deno, google, aws are going after - we're aiming to support programmatic tool calling with minimal latency and complexity - it's a fundamentally different offering.

Chill, e2b has its use case, at least for now.
scolvin
·5 माह पहले·discuss
Can't be sure where this might end, but the primary goal is to enable codemode/programmatic tool calling, using the external function call mechanism for anything more complicated.

I think in the near term we'll add support for classes, dataclasses, datetime, json. I think that should be enough for many use cases.
scolvin
·5 माह पहले·discuss
this is pretty performant for short scripts if you measure time "from code to rust" which can be as low as 1us.

Of course it's slow for complex numerical calculations, but that's the primary usecase.

I think the consensus is that LLMs are very good at writing python and ts/js, generally not quite as good at writing other languages, at least in one shot. So there's an advantage to using python/js/ts.
scolvin
·6 माह पहले·discuss
ROFL.

I clearly didn't build pydantic "to take VC money" - I maintained Pydantic for 5 years before deciding to take VC money.

I wanted to build logfire and I didn't want to compete with or restrict our open source, we so built logfire.

Let's see on the investment; seems to be going pretty well so far.
scolvin
·6 माह पहले·discuss
We have a SaaS platform (Pydantic Logfire - General and AI observability), and we raised our Series A from Sequoia.

For good or bad, I think we're pretty "SaaS/vc/etc." already.
scolvin
·7 माह पहले·discuss
Correction, logging used to suck - now it's fixed https://pydantic.dev/logfire :-)
scolvin
·12 माह पहले·discuss
Pydantic creator here - I kind of agree with the article. I (obviously very biased) use Pydantic a fair bit, but there are places where it's the wrong tool and I use dataclasses, typeddicts or even tupleS a fair bit.

Sad about the Pydantic hater jumping on this to suggest it means you shouldn't use Pydantic at all, but I guess success (even open source success where you pay us nothing) comes with haters.

Thanks for the article.
scolvin
·पिछला वर्ष·discuss
Pydantic author here. We have plans for an improvement to pydantic where JSON is parsed iteratively, which will make way for reading a file as we parse it. Details in https://github.com/pydantic/pydantic/issues/10032.

Our JSON parser, jiter (https://github.com/pydantic/jiter) already supports iterative parsing, so it's "just" a matter of solving the lifetimes in pydantic-core to validate as we parse.

This should make pydantic around 3x faster at parsing JSON and significantly reduce the memory overhead.