Would be great to see you build something from scratch with this. I've been working on, but found quite challenging to get the behaviours I want. A sample build would help a lot.
So, as I understood, you still need to code the component that will be given in return by yourself. Now it just displays data in that component . No more, no less. Right?
@@kale_bhai oh I thought It was creating components on demand as v0 is capable of doing so, but yeah that'd be really slow. so it's just function calling for a RSC with the data props as whatever the LLM came up with as info ?
Any chance it will support libraries like Chakra-UI anytime soon? I feel the components can look a lot tidier compared to having tons of tailwind classes attached to them. It would be incredible!
Sorry, I don't underatand - does it just return an interactive UI component that you've coded based off the prompt? I ask it a question, and it returns the component suited to the request?
That's right! You provide it with a bunch of functions and components, and it will call the appropriate function and render a component when the conversation calls for it.
But what about generating UI components for new project in development stage ? Building initial components is repetitive task where IA impact will important for developper and minimize cost ofbuilding reactjs based project.
This kind of makes web unpredictable - it would generate different components each time with random styling to interact with APIs. Or am I missing something ?
Not necessarily, you build the components upfront. But the LLM decides when to render them and what data to pass as props. So the components are not necessarily generated by AI. They can be though, if you give the LLM access to an eval() function and let it spit out JavaScript strings.
Thanks for simplifying AI development. Can you make a video showing how to make a ChatGPT clone with a feature where you can interact with the retrieved documents? I think it would help people understand how natural language UI patterns are built
This is really awesome, this ai will change how we build apps and the tutorials from now on will adopt this approach to generate ui and focus on functionality, database and the maintain of infrastructure, it is really something, Vercel rocks and rules 👍👏💪🥰😍
I use auth js version 5 in when user loginned and visit a page that not access into it how we can logout the user by using the function signOut for clearing session in middleware in auth js
We're giving frontend developers more tools to be productive. v0 doesn't replace building UI for example, but it helps my get a decent first version I can build for. I still need to hook up all the business logic and polish things. It's an accelerant for building great products :)
This is quite LITERALLY replacing a front-end engineer. What the demos shows is UI being generated almost instantaneously, for free. By the end of this year, no one should learn front-end.
Why are you this negative? I feel very excited because from now on I am able to deliver decent UI even though I am not a UI/UX designer, this is sweet ❤
No. This is basically building different type of user interfaces. Instead of coding the UI to use navigation button, we basically code the UI to interact with the AI. We make premade components (duty of frontend engineer) and link it with AI, code it so that the AI detects the persons need from the message they send to the AI ("Please show me the weather in Dubai"), it will detect and tell your code that weather function is called, your code handles the logic based on the parameters AI sent you (detects country=dubai), then your code will send back the data to AI and then AI will decide to stream the premade component you programmed with the params it detected from user's message. Thats all, so AI just decides when to render component, it doesn't actually generate the UI automatically, thats what you have to do aka the front-end engineer. (This answer is just the jist of it so it might not have perfect details but overall the flow is correct)
@@AbdulHaseeb-m3bThe same thing that happened when tractors were introduced into farming, and all the farm workers thought they would lose their jobs… there was an agricultural productivity boom and more farm workers were needed. The same thing that happened when desktop computers were introduced and all the admin staff thought they would lose their jobs… there was a productivity boom and more staff were needed to build, implement, train, use and repair the computers. There’s an expression that I’ve heard a few times over the past months, “You won’t be replaced by AI; you’ll be replaced by someone who knows how to use AI”!
Things like this your boss sees and emails you next day to build a startup idea. Lol
Vercel is really at the edge of web dev and AI. So exited to try it.
I hope vercel remains vercel and doesn’t get acquired by people like MSFT. What an amazing developer-focused company. I love it! 👏
Would be great to see you build something from scratch with this. I've been working on, but found quite challenging to get the behaviours I want. A sample build would help a lot.
Vercel just delivers amazing innovations continuously. It's like as soon they come out with something amazing, they go "alright, next!"
i left full stack development a year ago for data science. now
you are pulling me back with this
Cheers for the shoutout on the F1 Dashboard! Love the generative AI stuff!
This is truly the UI's future! Great job Vercel!
So, as I understood, you still need to code the component that will be given in return by yourself. Now it just displays data in that component . No more, no less. Right?
Yes, you need to code your UI component yourself. And Prompt Enginner yourself to have your custom fn to be called.
@@kale_bhai oh I thought It was creating components on demand as v0 is capable of doing so, but yeah that'd be really slow.
so it's just function calling for a RSC with the data props as whatever the LLM came up with as info ?
Any chance it will support libraries like Chakra-UI anytime soon?
I feel the components can look a lot tidier compared to having tons of tailwind classes attached to them.
It would be incredible!
Which pieces of the code will I need to remove in order to customize the app for something other than stocks? Any prompts I should try with Cursor?
Sorry, I don't underatand - does it just return an interactive UI component that you've coded based off the prompt? I ask it a question, and it returns the component suited to the request?
That's right! You provide it with a bunch of functions and components, and it will call the appropriate function and render a component when the conversation calls for it.
But what about generating UI components for new project in development stage ? Building initial components is repetitive task where IA impact will important for developper and minimize cost ofbuilding reactjs based project.
Mind blowing!!! This could be the next face of the entire internet!
Is it the V0 app or something different that you describe here in the video?
Why do this server side tho with RSC? Why not do it client side?
Can this be used to render entire websites?
Pretty exciting stuff! Thanks for sharing!
good video - who did the exercice logging chatbot?
why it just responding only to trading things and not what you have mentioned in the video ???
This is dope! Love you vercel
This kind of makes web unpredictable - it would generate different components each time with random styling to interact with APIs. Or am I missing something ?
Not necessarily, you build the components upfront. But the LLM decides when to render them and what data to pass as props.
So the components are not necessarily generated by AI. They can be though, if you give the LLM access to an eval() function and let it spit out JavaScript strings.
Is Vercel still pushing for the jamstack architecture?
Thanks for simplifying AI development.
Can you make a video showing how to make a ChatGPT clone with a feature where you can interact with the retrieved documents?
I think it would help people understand how natural language UI patterns are built
Does this mean I can now show information as interactive widgets?
Is it out to be used??
This is really awesome, this ai will change how we build apps and the tutorials from now on will adopt this approach to generate ui and focus on functionality, database and the maintain of infrastructure, it is really something, Vercel rocks and rules 👍👏💪🥰😍
Can it help me generate D3 charts for my Next application?
This is usijg gpt4 so it will be costly. Is there something free?
I asked it to generate a map and it couldn't
The amount of tabs 3:52 💀
rookie numbers
How many X tabs 🤔
This is awesome!
I use auth js version 5 in when user loginned and visit a page that not access into it how we can logout the user by using the function signOut for clearing session in middleware in auth js
Seens I got related with vercel I love everything they do
bang bang ❤🔥
Vercel has done it again!
Please use Dark themes man, you're finishing our eyes 😅
Morty!, is that you?
can't wait to give my credit card information to an AI!
When I play with the demo, the first thing I get it deploy it yourself..
cool. feels like something very normal... almost not surprised... you know what i mean
It felt out of the world in initial days. Later it felt shitty. This again blew my mind
Wow!
Damn Lee! I'm ahead than you 😊
its look amazing
lol, its easily can be done in warpcaster
Just Open UA-cam or google, here comes a new generative AI😂😂
It's so amazing but vercel is killing front-end developers 🤣🤣
We're giving frontend developers more tools to be productive. v0 doesn't replace building UI for example, but it helps my get a decent first version I can build for. I still need to hook up all the business logic and polish things. It's an accelerant for building great products :)
Why are you so negative 🤔
@@leerobVercel is awesome, I like this AI, making building decent UI way much easier ❤
Front end dev is the horse staring at the car.
Damn, some devs will definitely lose their jobs
Does it mean Web development is so complicated that thinking about components they implement ai to solve the problem 😂
Interesting
There goes a Frontend Developer
:jk
😂😂😂😅
Nooooooooo
wth
This is quite LITERALLY replacing a front-end engineer. What the demos shows is UI being generated almost instantaneously, for free. By the end of this year, no one should learn front-end.
Why are you this negative? I feel very excited because from now on I am able to deliver decent UI even though I am not a UI/UX designer, this is sweet ❤
No. This is basically building different type of user interfaces. Instead of coding the UI to use navigation button, we basically code the UI to interact with the AI.
We make premade components (duty of frontend engineer) and link it with AI, code it so that the AI detects the persons need from the message they send to the AI ("Please show me the weather in Dubai"), it will detect and tell your code that weather function is called, your code handles the logic based on the parameters AI sent you (detects country=dubai), then your code will send back the data to AI and then AI will decide to stream the premade component you programmed with the params it detected from user's message.
Thats all, so AI just decides when to render component, it doesn't actually generate the UI automatically, thats what you have to do aka the front-end engineer. (This answer is just the jist of it so it might not have perfect details but overall the flow is correct)
What about no? Stop making everything AI
Yes it is useful but dangerous.
What in the world are you talking about? 😅😮😢
@@maskman4821 If they keep on making and improving these AI stuff what in the world will happen with us
But I really appreciate the harkwork of these people 🙂
@@AbdulHaseeb-m3bThe same thing that happened when tractors were introduced into farming, and all the farm workers thought they would lose their jobs… there was an agricultural productivity boom and more farm workers were needed. The same thing that happened when desktop computers were introduced and all the admin staff thought they would lose their jobs… there was a productivity boom and more staff were needed to build, implement, train, use and repair the computers. There’s an expression that I’ve heard a few times over the past months, “You won’t be replaced by AI; you’ll be replaced by someone who knows how to use AI”!