"A key issue with AI-powered search is that it is just too slow compared to classic Google. Even if it generates a better answer, the added latency is discouraging." Is this true? I feel like most complaints I have and hear about is how inaccurate some of the AI results are. I.e. the mistakes it confidently makes when helping you code.
Phind-405B and faster, high quality AI answers for everyone
71–80 of 163 posts
Re: Phind-405B and faster, high quality AI answers for everyone
#72I get a blank page with the text "Service is unavailable in this region." Any reason why Phind is region-locked? Is there a list of what countries Phind is available in?
Interesting. I'm not working for phind, but can you share which region are you trying to access it from?
Re: Phind-405B and faster, high quality AI answers for everyone
#73"A key issue with AI-powered search is that it is just too slow compared to classic Google. Even if it generates a better answer, the added latency is discouraging." Is this true? I feel like most complaints I have and hear about is how inaccurate some of the AI results are. I.e. the mistakes it confidently makes when helping you code.
From hitting enter to a set of relevant answers loaded into your brain, though? Isn't that the goal that should be measured? Against that goal, the two decade old approach seems to have peaked over a decade ago, or phind wouldn't find traction.
For the 20 year old page rankers, time from search to a set of correct answers in your brain is approaching “DNF” -- did not finish.
---
PS. Hallucinations or irrelevant results, both require exercising a brain cell. On a percentage basis, there are fewer hallucinations than irrelevant results, it's just that we gave up on SERP confidence ages ago.
Re: Phind-405B and faster, high quality AI answers for everyone
#74Re: Phind-405B and faster, high quality AI answers for everyone
#75Title says "for everyone", but post says "Phind-405B is available now for all Phind Pro users". I guess everyone on earth has paid for Phind :)
Re: Phind-405B and faster, high quality AI answers for everyone
#76Re: Phind-405B and faster, high quality AI answers for everyone
#77The AI generated page that attributes Steve Jobs' success to Paul Graham is killing me.
Re: Phind-405B and faster, high quality AI answers for everyone
#78Earlier quoted context omitted.
I use it, with the phind models, instead of chatGPT. I had to change my user agent to Chrome since too many sites would refuse to work with FF otherwise, and now chatGPT is stuck in an endless captcha loop whenever I go there. I am just a casual user, to help write a quick script or to get some bit of relevant info. It works just as well or better for my use case, and of course having actual citations with links is w…
My friend has the endless captcha loop on ChatGPT too. Does anyone know how to fix it?
Re: Phind-405B and faster, high quality AI answers for everyone
#79I'd suggest offering at least one free query to allow users to evaluate the service.
Our fast model, Phind Instant, is completely free
as far as i know you are running your own GPUs - what do you do in overload? have a queue system? what do you do in underload? just eat the costs? is there a "serverless" system here that makes sense/is anyone working on one?
Re: Phind-405B and faster, high quality AI answers for everyone
#80I just tried. Asked a question on a research topic I'm digging into. It gave me some answers but no references. Then I copy the answers it gave me and specifically ask for references. Then I got: I sincerely apologize for my earlier response. Upon reviewing the search results provided, I realize I made an error in referencing those specific studies. The search results don't contain any relevant information for the cl…
Just to follow up on this: I asked it to give me a brief explanation on how to use laravel 11 blade fragments, which it did reasonably well. I then offered 3 lines of code of a route I'm using in Laravel and I asked to tell me how to implement fragment usage where the parameter in the url determines the fragment returned. Route::get('/vge-frags/{fragment}', function ($fragment) { return view('vge-fragments'); }); It…
I mean, this is an unsolvable problem with chat interfaces, right?
If you use a plugin that is integrated with tooling that check generated code compiles / passes tests / whatever a lot of this kind of problem goes away.
Generally speaking these models are great at tiny self contained code fragments like what you posted.
It’s longer, more complex, logically difficult things with interconnected parts that they struggle with; mostly because the harder the task, the more constraints have to be simultaneously satisfied; and models don’t have the attention to fix things simultaneously, so it’s just endless fix one thing / break something else.
So… at least in my experience, yes, but honestly, for a trivial fragment like that most of the time is fine, especially for anything you can easily write a test for.