Now this is a project you can show in your portfolio.
@rajkumarpatel973510 ай бұрын
After completing this 5:30 hr tutorial, I can say that I learnt a new and better ways of handling authentication. Better way of using context APIs. It's very rare to see MUI being used the way it should, however inline-styles should be avoided. I would request to go along with Nikhil in this tutorial so that one will get good understanding of writing MERN stack code.
@pradeeprajkumarpradeeprajk87119 ай бұрын
Hey bro i want this project npm
@earnstein7607 Жыл бұрын
Wow, one hour into this and this is the best course I've seen so far on mern... Everything I've learnt from watching previous videos just made sense.
@skykazi15 Жыл бұрын
After watching this tutorial My NodeJS knowledge: "Everything seems to be working perfectly fine!!!" 🤭 Thank you so much for step by step explanations 🙌
@Mrnerd-sv3kw Жыл бұрын
did you completed this project ? if so, then please help me im app everything is working fine except when i am sending chat , gpt is not responding back and a post error is coming
@IndianCoders Жыл бұрын
Haha. Great
@karishmaupreti623411 ай бұрын
@@Mrnerd-sv3kw im facing the same issue,is your problem solved,if yes please help me too
@J.SivasankariАй бұрын
same issue
@TransmentalMe Жыл бұрын
This is incredible and very thorough, thank you for sharing this with the community.
@nikhilmugganawar Жыл бұрын
Everything seems to be working perrrfectly finne! Over theree!
@IndianCoders Жыл бұрын
Hmm Great!
@its_adit8 ай бұрын
CAN U SHARE ME UR CODE??
@evansitkoff Жыл бұрын
7:24 Course Begins , thanks!
@maskman4821 Жыл бұрын
This is gonna be a wonderful and exciting course, thank you 🙏🙏
@iitians7209 ай бұрын
Hey I complete this on 3/10/2024 Thanks a lot and my project working perfectly fine . So I stucked with one part api response (500 internal server error) on around 4 hour and 32 min i think. Here is how I resolved either you can take subscription on Open AI api by credit card but I don't have so I created a new gmail and then now I got 5 dollars as trial basis for 3 months and then I generated new API key form that account now everything is fine. Thanks buddy Form Haryana
@faisaliqbal66819 ай бұрын
I am stuck on the same error! So what I do as i pay for the api in openai platform.
@iitians7209 ай бұрын
You can do that but be careful, as in this project we are using gpt turbo 3.5 model so purchase that api, or may be openai provide all apis in subscriptions, so check that or other way, like I did create a fresh openai account and from there you will get 5 dollars as trial basis and you can your project if that is working
@relexationmusic67059 ай бұрын
What if we use Gemini API instead of chat gpt
@iitians7209 ай бұрын
I think apis are just for response make sure the data you will get is similar to openai api in form of props and json format
@david_83_9 ай бұрын
Yes the error that the API returns has a status code of 429, so either too many requests or you exceeded you current quota
@lumilo78 ай бұрын
7:24 Course Begins 2:57:00 create front 5:33:00 summary
@themcc187910 ай бұрын
What I learned: and so that’s how it’s gonna work.
@ami-inn Жыл бұрын
i watched and learned so many things.and its perfectly fine :)
@vipuldhomane Жыл бұрын
Amazing tutorial. its the first mern project i built after learning full stack web dev. can someone please help me with the deployment of this project. by following the tutorial I've written every piece of code by myself. thank you for this amazing work. keep it up!!!!!!!!!
@zeusor11 ай бұрын
learn DevOps
@karishmaupreti623411 ай бұрын
can you please help me, im not getting response from the chatgpt, i am getting internal server error,please can you tell why it's happening
@vipuldhomane11 ай бұрын
@@karishmaupreti6234 are you able to call the open ai api
@yunuenmeza9833 Жыл бұрын
Thanks, I'm becoming a big fan of your channel.✨✨
@maxfrischdev Жыл бұрын
50% of Comments are engagement pods - style "thank you very important!" (Didn't watch it..) And 50% are "Sir can you please make a tutorial on 😅🤪
@TransmentalMe Жыл бұрын
Which one are you?
@consolelog219 ай бұрын
Completed this project with OpenAI V4 Migration. Thank you for Teaching.
@deepakdaharwal93828 ай бұрын
I am Unable to find src code.. can it be possible for you to share the src code
@HemantBatra56785 ай бұрын
@@deepakdaharwal9382its in github branch 3
@sakshijaiph29464 ай бұрын
can u share your source code
@bokthair4605Ай бұрын
00:05 Build a state-of-the-art AI chatbot using MERN Stack 02:11 This tutorial explains how to create an AI chat bot using MERN stack. 06:24 The video discusses building an AI chatbot using the MERN stack. 08:21 MERN Stack is a collection of JavaScript technologies for full stack web development. 12:23 This tutorial is about building an AI chatbot using the MERN stack 14:18 Set up the back end folder and install dependencies 17:43 Create a basic Node and Express application with TypeScript using routing. 19:20 Creating routes and middlewares in the application using MERN Stack 22:40 Middleware functions handle the request 24:23 The video discusses sending data using the body in a MERN Stack application. 27:41 Dynamic routing in Express allows us to handle dynamic parameters in the URL 29:17 Create folders for models, routes, controllers, and utilities 32:31 Mongodb Cloud provides scalable database storage and virtual CPUs. 34:11 Connect to the MongoDB database from any network using the connection URL. 37:28 Export a function to connect to MongoDB database. 39:09 Creating functions for connecting and disconnecting from the database 42:17 Application connected to database with error handling 43:53 Get API keys for OpenAI 47:08 Create middleware and route handler for the application. 48:44 The app router handles requests made on /API/slv1 endpoint. 52:15 Defining the user model and its fields 53:55 Create user schema using Mongoose in the application 57:04 Creating a chat bot using MERN stack and implementing required properties for role and content. 58:39 Using Mongoose models in Node.js to create, find, and retrieve records from a database 1:01:53 Logging errors in the API request 1:03:53 Creating API endpoints for getting all users and user signup 1:07:12 Create a user with name, email, and password in the backend 1:08:52 Encrypt passwords before storing them in the database using bcrypt 1:12:19 Implementing validation checks for name, email, and password in the user creation process. 1:13:57 Introduction to Middleware in Node.js and Express 1:17:42 Using middleware for data validation checks 1:19:27 Creating validators for sign up data 1:22:59 Using express-validator for validations in an AI SaaS Chat Bot using MERN Stack 1:24:39 The video discusses validation in the AI SaaS Chat Bot using MERN Stack tutorial. 1:28:12 Validating user input and creating new users 1:29:58 Remove name from login and remove email and password from signup 1:33:35 Verify user password for authentication purposes 1:35:23 User authentication process and error handling 1:39:00 Authentication is the first step of user authentication, followed by authorization using a token. 1:40:52 Using JWT to send token with HTTP only cookies for user authentication 1:44:32 Implementing token creation function in the utils folder. 1:46:15 Using JWT (Json web token) in the AI SaaS chat bot 1:49:41 Using cookie-passer package to send cookies from backend to frontend 1:51:17 Create a cookie with specified options. 1:54:35 Setting up cookies in MERN Stack 1:56:16 Creating the front end and login system 1:59:33 Overview of the front end structure and files in the MERN stack app. 2:01:12 Publish application to GitHub and exclude unnecessary files 2:04:32 The video discusses importing and using the normal 400 when working with a web application. 2:06:13 Material UI is a popular React library used by major companies. 2:09:36 Wrap the app component with the theme 2:11:19 The video explains how to create a chat bot using MERN Stack. 2:14:43 Import toolbar from MUI package and customize styles 2:16:23 Add styles and logo to chat bot 2:19:48 Customize the image inversion and typography using Material UI 2:21:34 Customize typography styles and logo in the application 2:24:57 The context provides functionalities for user authentication and stores user details 2:26:33 Defining user types and functions 2:29:55 Implement login functionality and authentication logic 2:31:43 Implementing login, logout, and signup functionality 2:35:08 Using context or Redux can help solve the issue of managing props and data in child components 2:36:50 Create a navigation link component 2:40:19 Customized navigation links for logged in and logged out users. 2:42:14 Implementing navigation links for log out and home page. 2:45:40 Designing the login screen 2:47:25 Using the material UI box component for layout design 2:50:47 Add customized styling to the form 2:52:24 Add login text using typography and customize input tag 2:55:52 Creating a customized input using MERN stack 2:57:28 Changing the style and outline of elements 3:01:04 Render a button with specific styling and hover effect 3:02:49 Creating a login button with an End Icon using React Icons. 3:06:09 Setting the base URL and configurations for the back end 3:07:46 Using XOS package for making a POST request with data 3:11:15 Using the react-toast package to create and customize toast notifications in MERN stack 3:12:58 Implementing toast notifications for login, success, and error messages. 3:16:36 Configuring the middleware to set security attributes 3:18:11 The video discusses cookies and HTTP-only flag in the context of authentication 3:21:37 Sending cookies along with the request and retrieving the token 3:23:23 Checking the response status and authenticating the data 3:26:49 The video discusses how to verify a JWT token using the verify function. 3:28:35 Using Express, local variables can be set in one middleware and used in the next middleware. 3:32:17 Check if the ID is valid and send appropriate response 3:34:19 The authentication seems to be working fine and now we want to build the chat functionality for this application. 3:37:45 Create a new route for chat functionality and ensure it is a protected API. 3:39:36 Define and configure the open AI API keys and organization ID 3:42:56 The main steps are: verify user existence, create appropriate response messages if user does not exist, grab all user chats, and send chats to API. 3:44:55 Storing user chats in an array for memory purposes 3:48:21 Using GPT models like GPT 3.5 SL to generate chat responses 3:50:08 Save user chat array 3:53:37 Creating box containers with different properties 3:55:20 Displaying user avatar with MUI material 3:59:03 Creating a chat bot using MERN stack 4:00:49 Set the bottle radius to 3 and import the red color from Material UI 4:04:27 Adjusting column width and rendering chats in MERN Stack Chat Bot 4:06:20 Fixing the display by removing width and using flex 4:09:38 The chat bot will have two roles - user and assistant 4:11:21 Customize chat item appearance with display, padding, background color, margin, and typography. 4:14:59 Creating a chat application using the MERN stack 4:16:44 Add input box with styling 4:20:20 Importing icons and testing responsiveness 4:21:59 Integrating the data input 4:25:16 Removing chat messages and creating new messages 4:26:54 Create a chat bot using MERN stack to store previous chats and new messages 4:30:13 Creating a new message and sending chat data 4:31:55 Tracking network response and sending messages in AI SaaS Chat Bot 4:35:19 Implementing react syntax highlighter with prism code highlighter 4:37:03 Installing dependencies and importing styles for Prism syntax highlighter 4:40:22 Defining functions in the chat item 4:42:06 Syntax validation check for code blocks in a string 4:45:38 Implementing conditional rendering based on the presence of code blocks. 4:47:17 The assignment is to find the language of the code and the answer can be found in the GitHub repository. 4:50:51 Fixing issues and implementing chat functionality 4:52:30 The backend work is completed and now we can move on to the frontend implementation. 4:55:54 Successfully loaded chats and successfully logged error in console. 4:57:32 Fix error in loading chats and implement clear conversation button 5:00:44 The user can delete chats and set chat messages as an empty array. 5:02:29 Enable protected routes in the front end and create front end for user 5:05:43 Implementing user logout functionality 5:07:24 Debugging log out functionality 5:10:27 Implementing protected routes for login and chat 5:12:09 The video discusses implementing the sign-up functionality using the MERN stack. 5:15:31 Using react type animation library for animated text 5:17:13 Creating a customized chatbot using AI SaaS 5:20:33 The video demonstrates building an AI SaaS chatbot using a MERN (MongoDB, Express, React, Node.js) stack. 5:22:13 Adding robot and open AI images with styles 5:25:24 Implementing AI SaaS chat bot using MERN stack 5:27:06 Increase image size in mobile devices using MUI 5:30:18 Fix layout spacing issue in chat page 5:31:46 Adding margins and improving layout 5:34:57 Created a project with authentication and authorization using MERN stack
@utkarshsinha9830 Жыл бұрын
Hi Nikhil , amazing tutorial . I just wanted to ask what things do we need to do differently if we were to fine tune an LLM for one company and deploy it ,say like LLAMA 1.5 ?
@TransmentalMe Жыл бұрын
Just finished working through the whole video and I love how well structured everything is. However, I would have liked to see an explanation or demo of hosting the app on Heroku or AWS. Not necessarily a how to on cloud hosting, but just a quick walkthrough of the steps to deploy the app outside of your local environment since there is a front and backend and cors needs to be handled properly.
@arifmulani7130 Жыл бұрын
Is the OpenAI API charged for the use of 3.5 turbo model or it is free?
@Setchuko Жыл бұрын
hey i complete the full code but while signup i got a axios error can u help me please
@Setchuko Жыл бұрын
at the same time withouot authendication gpt wont response i follw the steps properly but i didnt get
@TransmentalMe11 ай бұрын
@@arifmulani7130 the API is charged based on the model you use and the number of tokens in your request and the APIs response. ChatGPT is their web platform, the API is separate. OpenAI has pricing for the models per 1000 tokens listed in their API documentation I believe.
@karishmaupreti623411 ай бұрын
chat-gpt isn't responding,im getting an internal server error,can you please help me
@josygeorge3115Ай бұрын
'WE CAN HAVE' a nice project....😉
@shrutigupta7012Ай бұрын
How did yu found the source code as it is not available in the github link
@pailo322110 ай бұрын
I built this project. Its pretty cool, thank you. I would like to add a few cool features for a cohort I am in and try to make it one of the top projects in the next 4 weeks,. Any help and advice will be much Appreciated.
@faisaliqbal66819 ай бұрын
hello
@MD_SAMEER___3 ай бұрын
Thank you so much. So glad for your project tutorial and how beatifully you explained
@jazielwayne2178 Жыл бұрын
Amazing, can you do one for Python Flask
@ankushkuchankar55 Жыл бұрын
Yes please can you do one for the same mentioned above
@Muhammed-nani964 Жыл бұрын
I would say do this then just change the backend , like the idea is the same !
@shivamkumar-qp1jm Жыл бұрын
We are a python developer we want using flask or django
@Muhammed-nani964 Жыл бұрын
@@shivamkumar-qp1jm bro backend is backend just look at how he is using open ai with node then search to see if there is a package or away to connect ur backend to open ai (the rest is easy just read the documentations and ur all set )
@recon7 Жыл бұрын
😂. Ew.
@danielgrana74876 ай бұрын
Hello, unfortunately I can't finde all files, which you added under your folder "backend" in your github account. Where the files are?
@sasirekhakumaran141 Жыл бұрын
Doesn't the mongoose schema already does the validations? Why would we need to have another validator to check the request body?
@earnstein7607 Жыл бұрын
I assume your question is around the "email": "unique" attributes where the tutor had to add some checks to see if the email exists in the database before saving the user... In that scenario, we are only saying the email in the database should be unique for every user, although this works, if we don't add the validation to check if that email exists before saving the user, then if the user tries to register with the same email twice, they would be stuck as the database would not allow their information be saved and frontend won't know why that is happening so it's necessary to add checks like that to prevent any issues. If you remove the line of code that does this check and send a request using postman, you'll see you won't get any response and would be stuck on the loading screen.
@iganic7574 Жыл бұрын
To throw custom error message, mongoose error message is weird
@zeusor11 ай бұрын
Because you do not want to send requests to MongoDB that you already know are going to fail. That's just adding useless load on the database.
@Ai7en_souke9 ай бұрын
just what i wanted and thank u for giving me such valuable knowledge for free i thank u so much
@satishsssh4754 Жыл бұрын
the code source in github is different from the video, how to work pls reply sir..
@srishtisrishti3780 Жыл бұрын
same problem
@Ayushkumar-ft4rb10 ай бұрын
Okay so You can go in commit section and can change the option from main to starting project . There you can find the source template
@storminnorman74456 ай бұрын
Great video! It would have been nice for the host to provide detailed instructions on hosting this project.
@Abhi-md4zf5 ай бұрын
Dude for integrating Ai we need to pay right??
@Deb1an3 ай бұрын
Fantastic course for beginners but one small suggestion, please work on your over there...I was hearing you say "there" perfectly fine then what is up with the over there.
@yend128 ай бұрын
Thank you. I've just finished this.
@pranjulmehrotra11428 ай бұрын
bro can you please help me in getting reply from chatbot it an humble request to you please help me to remove this problem
@swaraj01027 ай бұрын
i am going to complete this project in 7 days
@CHINNIVAMSHIKRUSHNA6 ай бұрын
did you complete?
@sartipablo Жыл бұрын
doing this in python starting today
@DeepikaDecodes Жыл бұрын
Amazing 👏
@siddharthvaibhav251510 ай бұрын
Great work👍🏻
@KayodeOladipo-b9h Жыл бұрын
Nice video very helpful as usual, can u pls so a video of creating a full stack e-commerce website with nodes.js as back end and MySql as DB
@razaali266 ай бұрын
4:32:31. i did the same thing but its giving internal error 500. i have valid api key and everything but still it isnt working any ideas?
@marcosd59_6 ай бұрын
Hola, como solucionaste el error?
@Param-e8q3 ай бұрын
Those who aren’t getting the source code ,just change the branch from main 💁🏽
@naynabaghel4793 ай бұрын
Can you elaborate? I am not getting it!!
@naynabaghel4793 ай бұрын
Oh got it now! Thanks!
@SubZeroLondon Жыл бұрын
Jesus Chris I can't deal with this accent, it's impossible. He speaks 1000 miles per second.
@lowLevelCoder9910 ай бұрын
why we are using a typescript rather than JavaScript. because most of here don't understand the ts lang.
@learning-sn4wg11 ай бұрын
@IndianCoders, i'd love a tutorial for incorporating DALLE with this! or even for including audio with it.
@sukrutbilaskar60256 ай бұрын
Khatarnak 🔥
@lalsaurav6 ай бұрын
did u complete this?
@PrathamGupta-d9s10 ай бұрын
Amazing video tutorial I have a successfully deployed the application as well , if any body is stuck with that i am happy to help you out !!
@IndianCodersHindi10 ай бұрын
Great can you share the URL for deployed app?
@chinmayraichur89849 ай бұрын
How did you deploy the application?
@pranjulmehrotra11428 ай бұрын
bro can you please help me in getting reply from chatbot it an humble request to you please help me to remove this problem
@shambhavi49157 ай бұрын
Hey can you help me in API response part(I'm getting error 500)? I don't have any credit card, how do I solve this issue?
@dhruvagrawal8286Ай бұрын
@@shambhavi4915 did you solve the error
@pathmapriyam7 ай бұрын
could you please tell why you are used ts instead of js in backend?
@Actor_Giovanni Жыл бұрын
It seems to be a great tutorial for learning several factors. In real life I don't think you have to spend all this time to build an AI Chatbot. You have many options and I don't feel you need to know all this. It's like "How to build a wheel" , when the wheel is already out there and you just need to understand its needs. Does anyone feel the same way?
@david_83_9 ай бұрын
Bro doesn't BREATHE 😂 but yeah great content as usual
@its_adit8 ай бұрын
if u finsih can u send me ur code??
@manipurihunabopa Жыл бұрын
It's really interesting and important.
@srav-i4r Жыл бұрын
why do we need another chatgpt into a web app since chatgpt is already available ? pls clarify.
@earnstein7607 Жыл бұрын
Don't you like the feeling that comes from building your own chat AI like chatgpt
@iganic7574 Жыл бұрын
@@earnstein7607making chartgpt from chartgpt 💀
@symbol76710 ай бұрын
Take a shot everytime he says "Now what we can do?"
@AbhijitSingh-oy3rb5 ай бұрын
github code has ben removed??
@huqim3 ай бұрын
did you make it so we can type anything into the chatbot like aichatgpt or did you do it just for the javascript answer.
@Fhareed99 Жыл бұрын
Hello @IndianCoders , At 4:33:00 , the openAI API is not responding to my chat and i keep getting 500 internal server error. please can you help with that?
@prateekgoyal7009 Жыл бұрын
same error
@Fhareed99 Жыл бұрын
@@prateekgoyal7009 it’s actually a 429 error ….its duplicating the message….and it’s making too many requests for the openAI API …that’s why it throws up the error
@Fhareed99 Жыл бұрын
@@yousufbhatti_1 no I haven’t still trying to fix it ….you got the same issue also ?
@moeezabdul2000 Жыл бұрын
@@Fhareed99 That errors are occurring due to Rate Limit Restrictions on the Requests that their API imposes on the number of times a user or client can access their services within a specified period I belive.
@Fhareed99 Жыл бұрын
@@moeezabdul2000 yeah it could be but the API should at least generate the response once ….then we know that’s the case ….but in my case it never responded to my messages
@pavanMudavath822 Жыл бұрын
If anyone has finished following the video, please reply once you're done so I can begin.
@satyamsrinath54319 ай бұрын
have anyone got error related to rate limit increased
@adventurelife11499 ай бұрын
Open Ai api key are paid right?
@kap1398 ай бұрын
Go to rapid api , there u'll find the openai freemium api's
@helpinghand5248 ай бұрын
@@kap139 how to use them?
@ajahajah10 ай бұрын
i encountered "Error: Request failed with status code 429" when i send any text in the chatbox. How to resolve this?
@Smartmoufdeity Жыл бұрын
could I use a different ai-api and still get the same result or would I have to do work arounds? anyhow I am going to try that now
@muthomi__70975 ай бұрын
did anyone else experience a problem with the chat after logging in??my chat page is completely empty after signup and logging in...please help
@_SIDDHISONAWANE5 ай бұрын
Hey did you get the first github repo's code ?
@sanjuktadutta5934 Жыл бұрын
why i am unable to copy from the github link
@BiswarajDey-n3x6 ай бұрын
Sir, Where are the files in github in 14:45
@purvikagore80896 ай бұрын
It is in another branch "starting-project"
@Kiruthika048 ай бұрын
I didn't get github file. What can I do?
@gg.cip0t Жыл бұрын
1:57:17 frontend startsss
@thetoicxdude2203 Жыл бұрын
I couldn't find the files at the beginning of the film
@norrisr139411 сағат бұрын
Change the main branch to starting project branch.the files are over there
@thetoicxdude220310 сағат бұрын
@norrisr1394 oh, i see thx
@ayeezaa_me Жыл бұрын
Hi on your github i can't find the code...
@KartikSaroha-me2pf Жыл бұрын
see other branches like final and starting
@nandiniagrawal364 ай бұрын
@@KartikSaroha-me2pf its not even there... can u share plz
@dravij13337 ай бұрын
I am facing so many errors while writing the same code in the validator.ts he himself mentioned that there were errors but did not guide how to correct them . somebody please guide me
@SanmeshNimbalkar Жыл бұрын
can u build this for react native?
@ronitsanvariya3650 Жыл бұрын
which tool is he using for arranging the code in vs code can please someone tell me
@KrishnakushalUppala2 ай бұрын
the code in github is showing that the code is licensed now how can i get the code for the project if it is licensed
@damilareoladele130911 ай бұрын
How can we deploy this!? The backend especially
@RohitRaj-ru1wj9 ай бұрын
try render
@HappyMind000110 ай бұрын
Your source code is not available on the git link you have provided.
@shiponweb99809 ай бұрын
Can anyone tell which NLP is used here?
@anandsanthosh62774 ай бұрын
Great Tutorial
@anothermillennial9457 Жыл бұрын
Is this tutorial covering deployment off the application?
@storminnorman74456 ай бұрын
no it does not
@stutisaxena36485 ай бұрын
The src files are missing from git...how do I start
@ayushuniyal25867 ай бұрын
code?
@its_adit8 ай бұрын
I am getting error in connecting database
@utkarshdubey5741 Жыл бұрын
Please please please make some projects with the Java spring stack 🙏🙏
@AnishThakur-wf2dd6 ай бұрын
Please add in image inputs and generation by the Bot as well
@LIFE_SAVVY_TONIC Жыл бұрын
When i try to send new message i get 429 response in the server log can anyone help me with this?
@tiwnOoO6 ай бұрын
looks like the gpt-3.5-turbo API model is not free after all, when sending chat message always getring error, despite change the API key few time. quite disappointing after reaching this much can't integrate with OpenAI and they don't accept debit card :(
@Abhi-md4zf5 ай бұрын
So for integrating Ai we need to pay right??
@iankush1811 ай бұрын
what is the uniqueness of this project from chatgpt ?
@pradyotsoni9 ай бұрын
Signup / login always fails ! what to do
@PrMestizo7 ай бұрын
did you manage to solve the problem?
@jakesmith-bs4jd5 ай бұрын
Same, why did he teach us to login before we've signed up??
@arkapravamukherjee378411 ай бұрын
Do we need to have Chatgpt plus for completing this project?
@PrMestizo7 ай бұрын
no
@JingJing-eq6up4 ай бұрын
Anyone struggled with the API key even after making payment? it still shows 500
@hamzazahid68868 сағат бұрын
Hey! did you find any solution?
@magiccatlll9 ай бұрын
the src files are in the github branche
@isha61739 ай бұрын
thanks man
@MihirAmanRaj Жыл бұрын
Do we get free credit for every new open ai api key we use, or do we have to buy them. :/
@Android-17 Жыл бұрын
You will be charged $5 in credit card. It's not free anymore unfortunately. But the $5 credit will go for a long time if you're using it for your projects/ non-commercial use.
@IndianCoders Жыл бұрын
Try attaching a debit card, you will be charged less and it will work for much longer time until you pass the limit.
@shambhavi49157 ай бұрын
@@IndianCoders hello sir, how do I attach the debit card?
@emmaneatsecrettv4393 Жыл бұрын
I was here. Thanks
@harshitsinghal14287 ай бұрын
does openai have debit card option?
@reactDevelopment Жыл бұрын
is ther apen ai api key avaliable in free
@lokeshnegi505110 ай бұрын
Is anyone able to successfully host this project, I am facing a lot of errors while logging in and signup on hosted version of this project. can someone help
@pranshubasak879610 ай бұрын
Hi , i want to build this app too but didn't have access to a paid api key for this project , can someone share their gpt api with me please , thanks in advance .
@monicacharan533 Жыл бұрын
hey can someone please help ... when i do npm i command i get this erro rnpm : The term 'npm' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. At line:1 char:1 + npm i + ~~~ + CategoryInfo : ObjectNotFound: (npm:String) [], CommandNotFoundException + FullyQualifiedErrorId : CommandNotFoundException. can anyone tell me what do i do in detail please...
@devanshraghav5718 Жыл бұрын
do you have node installed in your system?
@monicacharan533 Жыл бұрын
@@devanshraghav5718 yes it is installed
@mgddforever10 ай бұрын
same here what to do?
@alpserin122610 ай бұрын
you have to install node.
@mgddforever10 ай бұрын
@@alpserin1226 hey i tried everything but i can't connect mongodb to my code..
@shivamvatsa32359 ай бұрын
From where i can get package.json and other files
@AnishThakur-wf2dd6 ай бұрын
Can we integrate pdf and image documents into this?
@prabakaranarunkumar8588 Жыл бұрын
Can you do one more project for django
@zulfiqarali-s9l Жыл бұрын
Hi this was amazing End to End, watched and practice completely, but I have a query after successfully login I have blank page not opening my chat page, although there showing no bugs in both frontend and back-end.Lots of Thanks and love
@AntonioB.Arroyo Жыл бұрын
Thank you very much !
@soumyadeepdey53823 ай бұрын
Can I implement this in today's date, September 2024 without any subscription
@TanDoori_GamEr4 ай бұрын
If it requires you to have an api key of an llm, you can go with gemini or groq free of cost. But if you have a bank balance that donating some several dollars doesn't affect it you can go and buy it..
@batmanlovesjokerr4 ай бұрын
can you tell me how can i run this project on my local machine just from the source code i mean what changes i need to do in the source code that i have downloaded from his github also about this gemini api thing.. thanks in advance