Spaces:
Sleeping
Sleeping
File size: 14,277 Bytes
f7d803f 0ad47cb f7d803f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 |
# Import necessary libraries
import streamlit as st
import mysql.connector
import bcrypt
import datetime
import re
import pytz
import time
# Import transformers library for GPT-2 model
from transformers import GPT2LMHeadModel, GPT2Tokenizer
import torch
# Configure Streamlit page settings
icon='https://media.istockphoto.com/id/1413286466/vector/chat-bot-icon-robot-virtual-assistant-bot-vector-illustration.jpg?s=612x612&w=0&k=20&c=ZSG3eqGPDJgIgFUIuVxID64uVUF3eqM3LrrDWtaKses='
st.set_page_config(page_title='SJS-TRANS',page_icon=icon, menu_items={"about":'This streamlit application was developed by S.S.SHARMILA'})
# Connect to TiDB Cloud database
mydb = mysql.connector.connect(
host="gateway01.ap-southeast-1.prod.aws.tidbcloud.com", # Replace with your TiDB host URL
port=4000,
user="4TZNT9dUm5s8BMa.root", # Replace with your TiDB username
password="JZcYiJAMHjEYNN6Z" # Replace with your TiDB password
)
mycursor = mydb.cursor(buffered=True)
# Create 'GUVI_DB' database and use
mycursor.execute("CREATE DATABASE IF NOT EXISTS SJS_DB")
mycursor.execute('USE SJS_DB')
# Create 'users' table if it does not exist
mycursor.execute('''CREATE TABLE IF NOT EXISTS users (
id INT AUTO_INCREMENT PRIMARY KEY,
username VARCHAR(50) UNIQUE NOT NULL,
password VARCHAR(255) NOT NULL,
email VARCHAR(255) UNIQUE NOT NULL,
registered_date TIMESTAMP,
last_login TIMESTAMP
);''')
# Check if username exists in the database
def username_exists(username):
mycursor.execute("SELECT * FROM users WHERE username = %s", (username,))
return mycursor.fetchone() is not None
# Check if email exists in the database
def email_exists(email):
mycursor.execute("SELECT * FROM users WHERE email = %s", (email,))
return mycursor.fetchone() is not None
# Validate email format using regular expressions
def is_valid_email(email):
pattern = r'^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$'
return re.match(pattern, email) is not None
# Create a new user in the database
def create_user(username, password, email):
if username_exists(username):
return 'username_exists'
if email_exists(email):
return 'email_exists'
hashed_password = bcrypt.hashpw(password.encode('utf-8'), bcrypt.gensalt())
registered_date = datetime.datetime.now(pytz.timezone('Asia/Kolkata'))
# Insert user data into 'users' table
mycursor.execute(
"INSERT INTO users (username, password, email, registered_date) VALUES (%s, %s, %s, %s)",
(username, hashed_password, email, registered_date)
)
mydb.commit()
return 'success'
# Verify user credentials
def verify_user(username, password):
mycursor.execute("SELECT password FROM users WHERE username = %s", (username,))
record = mycursor.fetchone()
if record and bcrypt.checkpw(password.encode('utf-8'), record[0].encode('utf-8')):
# Update last login timestamp
mycursor.execute("UPDATE users SET last_login = %s WHERE username = %s", (datetime.datetime.now(pytz.timezone('Asia/Kolkata')), username))
mydb.commit()
return True
return False
# Reset user password
def reset_password(username, new_password):
hashed_password = bcrypt.hashpw(new_password.encode('utf-8'), bcrypt.gensalt())
# Update password in 'users' table
mycursor.execute(
"UPDATE users SET password = %s WHERE username = %s",
(hashed_password, username)
)
mydb.commit()
# Session state management
if 'sign_up_successful' not in st.session_state:
st.session_state.sign_up_successful = False
if 'login_successful' not in st.session_state:
st.session_state.login_successful = False
if 'reset_password' not in st.session_state:
st.session_state.reset_password = False
if 'username' not in st.session_state:
st.session_state.username = ''
if 'current_page' not in st.session_state:
st.session_state.current_page = 'login'
# Login form
def login():
with st.form(key='login', clear_on_submit=True):
st.subheader(':blue[**Login**]')
st.write("Enter your username and password below.")
# Input fields for username and password
username = st.text_input(label='Username', placeholder='Enter Your Username')
password = st.text_input(label='Password', placeholder='Enter Your Password', type='password')
if st.form_submit_button('Login'):
if not username or not password:
st.error("Please fill out all fields.")
elif verify_user(username, password):
st.session_state.login_successful = True
st.session_state.username = username
st.session_state.current_page = 'home'
st.rerun()
else:
st.error("Incorrect username or password. If you don't have an account, please sign up.")
# Display sign-up and reset password button
if not st.session_state.login_successful:
c1, c2 = st.columns(2)
with c1:
st.write(":red[New user?]")
if st.button('Sign Up'):
st.session_state.current_page = 'sign_up'
st.rerun()
with c2:
st.write(":red[Forgot Password?]")
if st.button('Reset Password'):
st.session_state.current_page = 'reset_password'
st.rerun()
# Sign-up form
def signup():
with st.form(key='signup', clear_on_submit=True):
st.subheader(':blue[**Sign Up**]')
st.write("Enter the required fields to create a new account.")
# Input fields for email, username, and password
email = st.text_input(label='Email', placeholder='Enter Your Email')
username = st.text_input(label='Username', placeholder='Enter Your Username')
password = st.text_input(label='Password', placeholder='Enter Your Password', type='password')
re_password = st.text_input(label='Confirm Password', placeholder='Confirm Your Password', type='password')
if st.form_submit_button('Sign Up'):
if not email or not username or not password or not re_password:
st.error("Please fill out all fields.")
elif not is_valid_email(email):
st.error("Please enter a valid email address.")
elif len(password) <= 3:
st.error("Password too short")
elif password != re_password:
st.error("Passwords do not match. Please re-enter.")
else:
result = create_user(username, password, email)
if result == 'username_exists':
st.error("Username already registered. Please use a different username.")
elif result == 'email_exists':
st.error("Email already registered. Please use a different email.")
elif result == 'success':
st.success(f"Username {username} created successfully! Please login.")
st.session_state.sign_up_successful = True
else:
st.error("Failed to create user. Please try again later.")
if st.session_state.sign_up_successful:
if st.button('Go to Login'):
st.session_state.current_page = 'login'
st.rerun()
# Reset password form
def reset_password_page():
with st.form(key='reset_password', clear_on_submit=True):
st.subheader(':blue[Reset Password]')
st.write("Enter your username and new password below.")
# Input fields for username and new password
username = st.text_input(label='Username', value='')
new_password = st.text_input(label='New Password', type='password')
re_password = st.text_input(label='Confirm New Password', type='password')
if st.form_submit_button('Reset Password'):
if not username:
st.error("Please enter your username.")
elif not username_exists(username):
st.error("Username not found. Please enter a valid username.")
elif not new_password or not re_password:
st.error("Please fill out all fields.")
elif len(new_password) <= 3:
st.error("Password too short")
elif new_password != re_password:
st.error("Passwords do not match. Please re-enter.")
else:
reset_password(username, new_password)
st.success("Password reset successfully. Please login with your new password.")
st.session_state.current_page = 'login'
# Button to return to login page
st.write('Return to Login page')
if st.button('Login'):
st.session_state.current_page = 'login'
st.rerun()
# HTML and CSS for the animated title and Disclaimer
html_content = """
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
font-family: Arial, sans-serif;
display: flex;
align-items: center;
height: 100vh;
margin: 0;
background-color: #0E1117;
color: #ffffff;
}
.title {
font-size: 3rem;
}
.animated {
display: inline-block;
background: linear-gradient(90deg, #ff5733, #33ff57, #3357ff, #ff33a1);
background-size: 400% 400%;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
animation: gradient 8s ease infinite;
}
@keyframes gradient {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
</style>
</head>
<body>
<h2 class="title">
<span class="animated">GUVI GPT - Text Generator</span>
</h2>
</body>
</html>
"""
# CSS style for the running ticker effect
ticker_style = """
<style>
.ticker-wrap {
overflow: hidden;
position: relative;
box-sizing: border-box;
padding: 10px;
background-color: #0E1117;
color: #FAFAFA;
font-size: 18px;
white-space: nowrap;
}
.ticker-item {
display: inline-block;
padding-right: 30px;
animation: ticker-slide 15s linear infinite;
}
@keyframes ticker-slide {
0% {
transform: translateX(100%);
}
100% {
transform: translateX(-100%);
}
}
</style>
"""
img='https://media0.giphy.com/media/v1.Y2lkPTc5MGI3NjExOGttcXJnNXZ5azl5bnNrbDk1bnZ4eTJkeWNtbGJhM2I4ZDZheWplMiZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/5k5vZwRFZR5aZeniqb/giphy.webp'
disclaimer_message = "Disclaimer: Model data sourced from various web articles. Performance may vary based on data quality and relevance."
# Load the fine-tuned model and tokenizer
model_name_or_path = "./fine_tuned_model"
model = GPT2LMHeadModel.from_pretrained(model_name_or_path)
tokenizer = GPT2Tokenizer.from_pretrained(model_name_or_path)
# Set the pad_token to eos_token if it's not already set
if tokenizer.pad_token is None:
tokenizer.pad_token = tokenizer.eos_token
# Move the model to GPU if available
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
model.to(device)
# Define the text generation function
def generate_text(model, tokenizer, seed_text, max_length=100, temperature=0.01, num_return_sequences=1):
# Tokenize the input text with padding
inputs = tokenizer(seed_text, return_tensors='pt', padding=True, truncation=True)
input_ids = inputs['input_ids'].to(device)
attention_mask = inputs['attention_mask'].to(device)
# Generate text
with torch.no_grad():
output = model.generate(
input_ids,
attention_mask=attention_mask,
max_length=max_length,
temperature=temperature,
num_return_sequences=num_return_sequences,
do_sample=True,
top_k=50,
top_p=0.1,
pad_token_id=tokenizer.eos_token_id # Ensure padding token is set to eos_token_id
)
# Decode the generated text
generated_text = tokenizer.decode(output[0], skip_special_tokens=True)
for word in generated_text.split():
yield word + " "
time.sleep(0.1)
#home page
def home_page():
with st.sidebar:
st.title(f"Welcome, {st.session_state.username}!")
st.image(img,use_column_width=True)
st.markdown('<br>',unsafe_allow_html=True)
st.write("### Example Prompts")
st.markdown(''' Guvi is an <br> Founders of guvi''',unsafe_allow_html=True)
st.markdown('<br>',unsafe_allow_html=True)
max=st.slider('Select MAX words',10,250)
if st.button("Logout"):
st.session_state.clear()
st.session_state.current_page = 'login'
st.rerun()
# Display the animated title in Streamlit
st.markdown(html_content, unsafe_allow_html=True)
st.markdown(ticker_style, unsafe_allow_html=True)
st.markdown(f'<div class="ticker-wrap"><div class="ticker-item">{disclaimer_message}</div></div>', unsafe_allow_html=True)
if "messages" not in st.session_state:
st.session_state.messages = []
if prompt := st.chat_input("What up?"):
with st.chat_message("user"):
st.markdown(prompt)
st.session_state.messages.append({"role": "user", "content": prompt})
with st.chat_message("assistant"):
response = st.write_stream(generate_text(model, tokenizer, seed_text=prompt, max_length=max, temperature=0.01, num_return_sequences=1))
st.session_state.messages.append({"role": "assistant", "content": response})
# Display appropriate page based on session state
if st.session_state.current_page == 'home':
home_page()
elif st.session_state.current_page == 'login':
login()
elif st.session_state.current_page == 'sign_up':
signup()
elif st.session_state.current_page == 'reset_password':
reset_password_page()
|