I've never seen a company publishing consistently groundbreaking features at such a speed like this one. I really wonder how their teams work. It's unprecedented at what i've seen in 15 years software
OpenAI DevDay 2024 live blog
31–40 of 99 posts
Re: OpenAI DevDay 2024 live blog
#32I've never seen a company publishing consistently groundbreaking features at such a speed like this one. I really wonder how their teams work. It's unprecedented at what i've seen in 15 years software
I wonder how much they use their own products internally to speed up development and decisions.
Re: OpenAI DevDay 2024 live blog
#33> 11:43 Fields are generated in the same order that you defined them in the schema, even though JSON is supposed to ignore key order. This ensures you can implement things like chain-of-thought by adding those keys in the correct order in your schema design. Why not use an array of key value pairs if you want to maintain ordering without breaking traditional JSON rules? [ {key1:value1}, {key2:value2} ]
[1]: https://platform.openai.com/docs/guides/structured-outputs/s...
Re: OpenAI DevDay 2024 live blog
#34I've never seen a company publishing consistently groundbreaking features at such a speed like this one. I really wonder how their teams work. It's unprecedented at what i've seen in 15 years software
I wonder how much they use their own products internally to speed up development and decisions.
Re: OpenAI DevDay 2024 live blog
#35I understand the Realtime API voice novelty, and the techonological achievement it is, but I don't see it from the product point of view. It looks like one of those startups finding a solution before knowing the problem. The two examples shown in the DevDay are the things I don't really want to do in the future. I don't want to talk to anybody, and I don't want to wait for their answer in a human form. That's why I o…
Re: OpenAI DevDay 2024 live blog
#36Re: OpenAI DevDay 2024 live blog
#37Holy crud, I figured they would guard this for a long time and I was really salivating to make some stuff with it. The doors are wide open for all sorts of stuff now, Advanced Voice is the first feature since ChatGPT initially came out that really has my jaw on the floor.
Try notebook LM, it's the chatgpt moment for Google's deepmind
Re: OpenAI DevDay 2024 live blog
#38I've never seen a company publishing consistently groundbreaking features at such a speed like this one. I really wonder how their teams work. It's unprecedented at what i've seen in 15 years software
AFAIK a lot of these ideas are not new (the JSON thing was done with OS models before) and OpenAI is possibly the hottest startup with the most funding this decade (maybe even past two decades?), so I think this is actually all within expectations.
Re: OpenAI DevDay 2024 live blog
#39Earlier quoted context omitted.
> and $0.24 per minute of audio output That is substantially more expensive than TTS (text-to-speech) which already is quite expensive.
I agree. I'm wondering if it is possible to disable output streaming of audio and just get the text response event.
The configuration of the session accepts a parameter (modalities) that could restrict the response only to text. See it in https://platform.openai.com/docs/api-reference/realtime-clie....
Re: OpenAI DevDay 2024 live blog
#40> 11:43 Fields are generated in the same order that you defined them in the schema, even though JSON is supposed to ignore key order. This ensures you can implement things like chain-of-thought by adding those keys in the correct order in your schema design. Why not use an array of key value pairs if you want to maintain ordering without breaking traditional JSON rules? [ {key1:value1}, {key2:value2} ]
Most tools preserve the order. I consider it to be an unofficial feature of JSON at this point. A lot of people think of it as a soft guarantee, but it’s a hard guarantee in all the recent JavaScript and python versions. There are some common places where it’s lost, like JSONB in Postgres, but it’s good to be aware that this unofficial feature is commonly being used.