Hacker Newsnew | past | comments | ask | show | jobs | submit | intrasight's commentslogin

I don't think "you own your own hardware" will be true for long.

Spirits don't get much legal protection.


If LLMs are as good at RE as everyone says, we will own our hardware again.

You'd have to build your own fab from ground up - meaning no ASML. Is not going to happen.

You don't have to own the entire pipeline to own enough of it. People run Linux and say they own their OS.

They used to. We used to call those spirits "rights".

Patents are still a very strong protection

> sell it back to us at a mark-up

sell it back to us as markdown


> them out of business any time soon

No. It'll be like software. Entry level employment will be affected. You wont want or need associate attorneys when you can hire a brilliant AI associate for 1/10th the price.


> You wont want or need associate attorneys

In commercial law, the business model is to rent the associates out to clients at rates higher than you pay (d/t your supervision). No client will pay $350/hour for your AI.

And for direct billing, it's not your interest to do things faster for the client (at risk of making a mistake).

So the real question is whether these pay-by-the-hour models will die as a result of competition from fixed-price transactions made viable via automation. I think not because the entire difficulty of legal work is that it's a complex bundle of issues until you sort them out; once sorted, there's really little to do other than execute (read: paralegals).


Corporate lawyer at big law firm here. I believe the model will be like this: we will review your 1000 agreements but with AI. AI is generally accurate but has some risks, if you agree we will charge you less. The client will agree. Instead of spending 300-400 hours to review the ageeements AI will do instantly. A lawyer will spend the time on reviewing the red flags identified and draft a report. We already do the same with translation. Before computer translation became good (i.e pre-Deepl era), we used to translate documents (cease and desist letters, court petitions etc.) ourselves. Now we offer AI translation free of charge. If client wants reliance on the translation we charge a small bit. Lawfirms are also under pressure for meeting internal budgets. Most clients ask for capped fees. If you charge 10k for a job to a client and the hourly costs ramp up to 20k, the management criticises the partner, the associates become unwilling to work for the partner (as their hours get written off). So with AI law firms can bet more competitively as the cost (human attorney hours) are reduced.

> No client will pay $350/hour for your AI.

But they may be willing to pay $200/hour for your AI (plus, of course, your final expertise in the matter as the lawyer), and the firm can ditch the paralegals and pocket the difference.

The point is, if you need fewer grunts doing the busywork, you can charge less and be competitive.


There's a middle area too between your options - a law firm that utilizes AI offers cheaper pricing than the current firms for the same work. Ideally competition will drive prices down but of course law doesn't have the benefit of do-overs on cases, so reputation still plays a big factor.

That's the big question, how prices evolve if LLMs increase supply. Standard economic theory says that prices must collapse. There is probably still a short time of 2-5 years where AI native firms can pocket in quite some arbitrage but I guess markets will eventually figure it out and prices will collapse. This is not only for law. The same applies to all the other industries where LLMs can be used to automate work tasks.

I agree that prices will go down dramatically in occupations that primarily involve code, words, and numbers - and in general knowing the "rules". But there are so many occupations that will have to wait for AI to enter the physical realm. I also predict that the backlash will largely prevent that from occurring.

> No client will pay $350/hour for your AI.

But they already do! There are cases of professional service firms creating their reports using LLMs, there have even been a few prominent scandals re the fake data generated in them


It is in litigation as well. The issue is that corporate clients are demanding AI. They don’t want to pay associates to do a first draft, they want senior partner to just push the ChatGPT button and then check it.

> No. It'll be like software. Entry level employment will be affected.

Whether everyone at the labs knows it or not, this it what they are doing to entire industries, starting with software: Embrace, extend, and extinguish

https://en.wikipedia.org/wiki/Embrace,_extend,_and_extinguis...

What a time to be alive!!?


They came for software first. It was the industry that was “eating the world”. Mathematicians were also affected. Because math was also “code” thanks to Lean. It was collateral damage.

Now they’re coming for lawyers. Law also has “code”. It’s text-based. It’s arms extend to every industry.

Who knows who’s next.


What's next is capturing all of our audio and visual inputs from cradle to grave, so that we can be truly replaced.

Honestly, if that happened in a 100% trusted environment, it might be cool. But, there is no money in that. Well, maybe Apple would do that? Private Cloud Compute is cool af.

Still, we are far more likely fully cooked than fully trustworthy personal AI agents happening at scale.


It'll be like software. The demand for both software and legal services is effectively infinite. If it becomes cheaper to file lawsuits then we'll get more lawsuits, not the same number of lawsuits at a lower price.

There will still be jobs for competent associate attorneys to prompt LLMs and review output. But frankly a lot of attorneys — especially many of those who attended "Third Tier Toilet" (TTT) law schools — were always a waste of money and should have never entered the profession in the first place.


There is a huge problem in at least family law where a tactic is to simply ddos your opponent with motions and frivolous complaints until someone runs out of money and settles. I'm watching someone finally successfully defend themselves using a Harvey like tool they built themselves. An appellate attorney they consulted with recently, told them they had never seen anyone going pro se get as far as they had in appellate court. So I'm hoping that this serves as a return to making the legal system more accessible, and not just something used to railroad people.

You can’t 10x the number of lawsuits, as the courts are already at capacity. If frivolous lawsuits become common they’ll just change the laws to require a greater damages for it to be heard.

Lawsuits are just one type of legal services. There will also be more contract reviews, more cease-and-desist letters, more patent applications, more regulatory comments, more license applications, etc. Although I do expect legislatures will eventually budget for expanding civil court systems in response to lobbying from business groups to speed up trials.

How is it brilliant? One mistake can end a lawyer's career. And with the true costs of these LLMs they might not even be economical.

>special Unity editor component

I'd be interested in hearing more.



Including the internal Microsoft community

I use EF now - but only for the string interpolation in Database.SqlQuery and Database.ExecuteSql. We don't use POCOs but instead use XML and JSON with Linq.

It's really the navigations that make EF a problem. I've built a typed object graph database on top of Sqlite that works really well specifically because it's in Sqlite, so the overhead of the 1+N query problem with recursively descending navigations isn't a big problem. But it requires lazy loading and that requires all the navigation to happen inside a single service scope and that makes sequencing some things get difficult (can't just pass the results around willy nilly).

The navigation system in EF is where all of the pain points originate. All of my troubles with getting the migration generator to work are because I'm trying to express rather complex relationships. For example, to store a record representing a property on an object, I need to have two foreign keys from the Properties table to the Types table: one for the type of the property and one for the type in which the property lives. Types themselves have many relationships to other types: their base type, interface types they implement, generic type parameters, constraints on generic type parameters (actually, haven't even implemented that one as is too much).

I'm generally happy with the performance and expressivity of the system I've developed so far, but damn, it came with a lot of pain.


To be fair, in EFcore (other than EF) lazy-loading and auto-navigation is not on by default - you opted in at some point (with all its trade-offs). EFcore differs from traditional EF that they removed a lot of the magic or made it opt-in, and you can use EFcore as a very basic/thin query engine similar to Dapper.

But we own the cameras

No we don't, even if our taxes paid for them. You don't own public buildings either, that's not how it works.

But sir, we liberated them

It's ma'am, and no you stole them.

> a topic with an unusual level of specification

Solving cancer also has an unusual level of specification. Many real world problems have that characteristic.


Maybe a specific cancer but in general “solving cancer” is about as scattershot and unspecific as you could be.

> Solving cancer also has an unusual level of specification.

Where did you read that?

"Cancer" is not just a single disease, even though we layman use the term that way. Cancer is a family of diseases, each probably having their own specific solution, but even in each of these individual diseases, there is no specification at the level of any open maths problem.


I know what cancer is. Many scientists believe that all human adults above the age of about 30 have "cancer".

I really meant solving a specific cancer disease for a specific individual, which will require individualized medicine, which will require us to leverage AI to make it possible to do for the general population as opposed to doing it just for Lance Armstrong and the like.

I know I'm an optimist, but I really think AI is gonna result in drastically improved healthcare for a much lower price.


This is so untrue its actually insane to me that anyone could believe this.

The real world is so messy, and specifically cancer/biology is insanely messy and certainly not well specified.

You should close chatgpt and read a book sometime.


> This entire system relies on trusting apple

It does indeed, and that is a fundamental flaw. but as has been discussed here, it is better than the alternative, which is no verification.

During the pandemic, I outlined a scheme for using blockchain technology for image provenance and authenticity tracking. The idea was that instead of any one entity assigning authenticity that it would be done in a crowdsourced manner and that the device would overlay a score whenever an image or video is shown to a user.

My assumption was that the desire of users to see such scores would force all manufacturers to implement this open protocol. But my approach suffered from chicken and egg problem, which Apple's does not.


That blockchain approach doesn't really solve the problem. The point is to have a chain of trust.

Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: