Earlier quoted context omitted.
The LLM _is_ the product. Everything else in the stack is window dressing. I don’t think OpenAI’s contribution should be so understated- they built a technology that was considered science fiction just a few years ago. They deserve all the credit for the “AI”.
I wasn't trying to understate OpenAI's contribution, far from it. I can hardly express my appreciation for their work. That doesn't mean that everything else in the stack is window dressing though - custom, domain specific wrangling with the different api endpoints, finding a satisfying prompt, temperature param etc. for specific tasks - the entire process of designing systems around an LLM-api has many intricacies t…
Ask HN: What's the best self hosted/local alternative to GPT-4?
141–150 of 206 posts
Re: Ask HN: What's the best self hosted/local alternative to GPT-4?
#142Earlier quoted context omitted.
Good luck building a moat when 95% of your app is just calling the API everyone else has access to.
Paul English (founder of Kayak, exited at $2 billion) said this in response to the exact comment you are making: "Kayak was just a thin layer above ITA, and ITA sold for $700m and Kayak sold for $2b. So don’t dismiss thin layers. The ultimate power is the app and UX."[0] I would also add "distribution" to the "app and UX" part, but you can certainly build a valuable business upon an API "everyone else has access to"…
Re: Ask HN: What's the best self hosted/local alternative to GPT-4?
#143Earlier quoted context omitted.
Incredible how people are underestimating ChatGPT or overestimating open-source models. A basic question: How can i join with SQL a column to a string separated with comma GPT-4: PostgreSQL: SELECT STRING_AGG(columnName, ', ') FROM tableName; Guanaco: Here is an example of how you could use the CONCAT function in MySQL to concatenate a string to a column value in a single-line query: SELECT CONCAT('The total price fo…
> GPT-4: PostgreSQL: SELECT STRING_AGG(columnName, ', ') FROM tableName; Well, you asked for sql and ansi sql function is listagg(), so technically this is not the right answer - and definitely a completely useless one for mysql or oracle users.
MySQL: SELECT GROUP_CONCAT(columnName SEPARATOR ', ') FROM tableName;
Oracle: SELECT LISTAGG(columnName, ', ') WITHIN GROUP (ORDER BY columnName) FROM tableName;
I mean, it's not a big deal.. you just give have to give it a little nudge.
Re: Ask HN: What's the best self hosted/local alternative to GPT-4?
#144Earlier quoted context omitted.
OpenAI builds an LLM and an api-interface to that model. The design of abstractions, prompt engineering, custom fine-tunes and software engineering required to ship a valuable application on top of that interface counts as "building an app" in my book.
The LLM _is_ the product. Everything else in the stack is window dressing. I don’t think OpenAI’s contribution should be so understated- they built a technology that was considered science fiction just a few years ago. They deserve all the credit for the “AI”.
Re: Ask HN: What's the best self hosted/local alternative to GPT-4?
#145Earlier quoted context omitted.
Good luck building a moat when 95% of your app is just calling the API everyone else has access to.
Paul English (founder of Kayak, exited at $2 billion) said this in response to the exact comment you are making: "Kayak was just a thin layer above ITA, and ITA sold for $700m and Kayak sold for $2b. So don’t dismiss thin layers. The ultimate power is the app and UX."[0] I would also add "distribution" to the "app and UX" part, but you can certainly build a valuable business upon an API "everyone else has access to"…
Re: Ask HN: What's the best self hosted/local alternative to GPT-4?
#146Earlier quoted context omitted.
I believe there are benchmarks, but I can informally second that opinion. I'm building a writing app (chiseleditor.com) and there is nothing as good as the ChatGPT models right now.
I would distrust the currently available benchmarks, as recent research (gah, can't remember the paper title) indicates that for many benchmarks at least some of the data splits have leaked into model training data; and there's some experience with the open source models which match an OpenAI model on the benchmark scores but subjectively feel much worse than that model on random questions.
Re: Ask HN: What's the best self hosted/local alternative to GPT-4?
#147Earlier quoted context omitted.
OpenAI builds an LLM and an api-interface to that model. The design of abstractions, prompt engineering, custom fine-tunes and software engineering required to ship a valuable application on top of that interface counts as "building an app" in my book.
The LLM _is_ the product. Everything else in the stack is window dressing. I don’t think OpenAI’s contribution should be so understated- they built a technology that was considered science fiction just a few years ago. They deserve all the credit for the “AI”.
Re: Ask HN: What's the best self hosted/local alternative to GPT-4?
#148Re: Ask HN: What's the best self hosted/local alternative to GPT-4?
#149The best self hosted/local alternative to GPT-4 is a (self hosted) GPT-X variant by OpenAI. No kidding, and I am calling it on the record right here. OpenAI will release an 'open source' model to try and recoup their moat in the self hosted / local space. https://www.theinformation.com/briefings/openai-readies-new-...
Does it benefit OpenAI if people are using an "open source" OpenAI model versus any other "open source" model?
Yes it does benefit OpenAI because Sam is pushing for and betting on regulatory capture. Meaning AI models that are compliant with AI safety principles would be allowed and considered safe by law should regulations be put in place.
Current open source models wouldn't be compliant and would require work to make them compliant, thus creating a moat for OpenAI in the self hosted space.
Because there is nothing better than a free model that you can self host that OpenAI has made that is also regulated.
Enterprises would love this, since OpenAI has the mindshare already, they can self host a licensed model in their orgs or air gapped environment that they know is regulated.
OpenAI may release different model sizes of this GPT-X variant like they did quietly for Whisper, Bigger sizes may require an enterprise license.
Re: Ask HN: What's the best self hosted/local alternative to GPT-4?
#150There is literally no alternative. You’re stuck with openai, and you’re stuck with whatever rules, limitations or changes they give you. There are other models, but specifically if you’re actively using gpt-4 and find gpt-3.5 to be below the quality you require… Too bad. You’re out of luck. Wait for better open source models or wait patiently for someone to release a meaningful competitor, or wait for openai to relea…