The playbook OpenAI is following is similar to AWS. Start with the primitives (Text generation, Image generation, etc / EC2, S3, RDS, etc) and build value add services on top of it (Assistants API / all other AWS services). They're miles ahead of AWS and other competitors in this regard.
New models and developer products
301–310 of 561 posts
Re: New models and developer products
#302I just released a new version of my LLM CLI tool with support for the new GPT-4 Turbo model: https://llm.datasette.io/en/stable/changelog.html#v0-12 You can install it like this: pipx install llm Then set an API key: llm keys set openai Then run a prompt through GPT-4 Turbo like this: llm -m gpt-4-turbo "Ten great names for a pet walrus" # Or a shortcut: llm -m 4t "Ten great names for a pet walrus" Here's a one-liner…
Re: New models and developer products
#303For all the naysayers in the comments, the elephant in the room that no one quite wants to admit, is that GPT4 is still far better than everything else out there
Is there anything promising out there? Is crowd sourced training still unfeasible? I remember how fast the diffusion world moved in the first year but it seems it's stalled somewhat compared to first midjourney then Dall-e 3. Is it the same with text models?
Re: New models and developer products
#304Re: New models and developer products
#305The Assistants API and OpenAI Store are really interesting. Those are the types of things that could build a moat for OpenAI
You think it is hard to export an agent? It's a master prompt, a collection of documents and a few generic plugins like function calling and code execution. This will be implemented in open source soon. You can even fine-tune on your bot logs.
My company will be all over this.
We 'could' continue to use open-source components we're gluing together ourselves.
But risk-aversion and speed-of-iteration are key for us. We'll throw money at a reliable end-to-end solution with solid infrastructure.
Re: New models and developer products
#306In the keynote @sama claimed GPT-4-turbo was superior to the older GPT-4. Have any benchmarks or other examples been shown? I am curious to see how much better it is, if it all. I remember when 3.5 got its turbo version there was some controversy on whether it was really better or not.
Re: New models and developer products
#307Earlier quoted context omitted.
I've been thinking about this for a while now, wrt two points: 1. This will be the end of traditional SWEs and the rise of the age of debuggers, human debuggers who spend their days setting up breakpoints and figuring bugs in a sea of LLM generated code. 2. Hiring will switch from using Leetcode questions to "pull out your debugger and figure out what's wrong with this code".
What makes you think the LLM couldn’t run a debugging session from the content of a JIRA ticket and the whole code base + documentation?
Re: New models and developer products
#308The new announcement just wiped out a bunch of startups
Re: New models and developer products
#309Re: New models and developer products
#310Can I pay someone to have my ChatGPT transcripts searchable?
Probably not the answer you're looking for, but the web UI has chat history export built-in, and from there you could search it yourself with local tools (plain grep, or more ElasticSearch-like engines), or use the new 128k context to ask questions of your chat history with GPT-4 (though that seems a bit, recursive?)
1) The highlighting from command-f isn't always clear (highlighting a piece of text that is visually truncated)
2) There's pagination in place to support longer histories. So even with command-f, I'm only searching the currently windowed paginated pieces from my history.