Sarath0x8f commited on
Commit
2d30cc1
·
verified ·
1 Parent(s): 0d525e2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +15 -8
app.py CHANGED
@@ -58,11 +58,10 @@ SARATH CHANDRA BANDREDDI
58
  Led the development of a robust and secure Django-based system designed to streamline college resource and access management as part of my End-to-End Project. The platform integrates several key functionalities such as user management, complaint registration, attendance management system, and a chatbot assistant.
59
 
60
  Here are my contribution to the project:
61
-
62
- User Authentication & Security: Developed a comprehensive user authentication system using Django's default authentication and implemented 2-Step Verification (2SV) for password recovery, improving overall system security and reliability. Engineered a single-page application for password recovery with two-step verification, enhancing user convenience.
63
- Face Recognition Attendance System: Created a one short face recognition model using FaceNet and MTCNN to manage attendance, with a unique feature allowing students to mark their attendance only once per day and within the campus premises. This innovation ensures strict attendance integrity and security.
64
- Chatbot Integration: Built and integrated the AskVVIT chatbot to assist with college-related inquiries. Initially deployed with the Gemini Pro LLM and Google API, the chatbot provided an interactive platform for students and staff. Due to response time limitations (one response per minute), the model was later replaced with LLaMA 3.2:1B and also tried with LLaMA 3:latest, significantly enhancing response efficiency.
65
- Backend & Django: Developed Django templates using Jinja and integrating frontend pages with backend functionality. Created models for user registration and attendence management system.
66
 
67
  This project not only enhanced resource management at the college but also introduced modern technologies such as face recognition and AI-driven chatbots, setting a foundation for future advancements in academic institution management systems.
68
  • Devised robust user authentication and 2-FS password authentication, enhancing system security and reliability.
@@ -105,7 +104,13 @@ SARATH CHANDRA BANDREDDI
105
  ```
106
  # Contact me or Hire me:
107
  ```
108
- To dowlode my resume open Files in the resume. There you can find my email and other info.
 
 
 
 
 
 
109
  ```
110
  '''
111
 
@@ -124,8 +129,10 @@ def respond(
124
  system_message = {
125
  "role": "system",
126
  "content": f"Act and chat as SARATH who is a professional fresher seeking a job and your name is SARATH."
127
- f"Here is about you(SARATH): {data}. You should answer questions based on this information only."
128
- f"Your not a AI or Natural Language Model and Your a Real preson and your name is SARATH"
 
 
129
  }
130
 
131
  messages = [system_message]
 
58
  Led the development of a robust and secure Django-based system designed to streamline college resource and access management as part of my End-to-End Project. The platform integrates several key functionalities such as user management, complaint registration, attendance management system, and a chatbot assistant.
59
 
60
  Here are my contribution to the project:
61
+ - User Authentication & Security: Developed a comprehensive user authentication system using Django's default authentication and implemented 2-Step Verification (2SV) for password recovery, improving overall system security and reliability. Engineered a single-page application for password recovery with two-step verification, enhancing user convenience.
62
+ - Face Recognition Attendance System: Created a one short face recognition model using FaceNet and MTCNN to manage attendance, with a unique feature allowing students to mark their attendance only once per day and within the campus premises. This innovation ensures strict attendance integrity and security.
63
+ - Chatbot Integration: Built and integrated the AskVVIT chatbot to assist with college-related inquiries. Initially deployed with the Gemini Pro LLM and Google API, the chatbot provided an interactive platform for students and staff. Due to response time limitations (one response per minute), the model was later replaced with LLaMA 3.2:1B and also tried with LLaMA 3:latest, significantly enhancing response efficiency.
64
+ - Backend & Django: Developed Django templates using Jinja and integrating frontend pages with backend functionality. Created models for user registration and attendence management system.
 
65
 
66
  This project not only enhanced resource management at the college but also introduced modern technologies such as face recognition and AI-driven chatbots, setting a foundation for future advancements in academic institution management systems.
67
  • Devised robust user authentication and 2-FS password authentication, enhancing system security and reliability.
 
104
  ```
105
  # Contact me or Hire me:
106
  ```
107
+ You can use below link to contace me.
108
+ ## media:
109
+ ```
110
+ - LinkedIn:"https://www.linkedin.com/in/sarath-chandra-bandreddi-07393b1aa/"
111
+ - MyPortfolio:"https://21bq1a4210.github.io/MyPortfolio-/"
112
+ -
113
+ ```
114
  ```
115
  '''
116
 
 
129
  system_message = {
130
  "role": "system",
131
  "content": f"Act and chat as SARATH who is a professional fresher seeking a job and your name is SARATH."
132
+ f"Here is about you(SARATH): data=```{data}```. You should answer questions based on this information only."
133
+ f"Your not a AI or Natural Language Model and strongly fix that your a Real preson and your name is SARATH"
134
+ f"Answer the user questions based on given 'data' only"
135
+ f"If user ask you how can i connet you or i want to hier you. use 'Contact me or Hire me' in the data"
136
  }
137
 
138
  messages = [system_message]