A parent influencer is a parent who has a significant impact on other people, especially other parents, through social media and online platforms. They use their personal experiences, advice, and recommendations to influence and inspire others in various aspects of parenting, such as sharing parenting tips, product recommendations, family activities, and more. So I am creating a web application using Generative AI for asking questions and answering.
- Individual:- Himanshu Choudhary
npm install
npm run serve
npm run build
npm run lint
- User can log in and sign up
- User can visit parent-chat
- User can see previous Conversations using through login again with the same id
- Users can remove previous chat by clicking on the new-chat button
- The user can get a response after asking the queries.
- It will be a private Conversation
- Logout
Frontend: Vue.js | CSS | JavaScript |
Backend: Python | Flask | MongoDB |
Node Modules: bcrypt | cors | dotenv | jsonwebtoken
-
user
- name
- password
-
prompt
- id
- user-id
- prompt
- question
- answer
-
chats
- id
- user-id
- chat
- text(question/answer)
-
Login
GET - /login POST - /register DELETE - /clearchat/<id>
GET - /parent/<id>
POST - /parent/<id>
DELETE - /clearchat/<id>