import os from threading import Thread from typing import Iterator import gradio as gr import spaces import torch from transformers import AutoModelForCausalLM, AutoTokenizer, TextIteratorStreamer import subprocess subprocess.run( "pip install flash-attn --no-build-isolation", env={"FLASH_ATTENTION_SKIP_CUDA_BUILD": "TRUE"}, shell=True, ) # Constants and model initialization code remains the same MAX_MAX_NEW_TOKENS = 2048 DEFAULT_MAX_NEW_TOKENS = 1024 MAX_INPUT_TOKEN_LENGTH = int(os.getenv("MAX_INPUT_TOKEN_LENGTH", "4096")) device = torch.device("cuda:0" if torch.cuda.is_available() else "cpu") model_id = "DeepMount00/Lexora-Lite-3B" tokenizer = AutoTokenizer.from_pretrained(model_id, trust_remote_code=True) model = AutoModelForCausalLM.from_pretrained( model_id, device_map="auto", torch_dtype=torch.bfloat16, attn_implementation="flash_attention_2", trust_remote_code=True, ) model.eval() CUSTOM_CSS = """ .container { max-width: 1000px !important; margin: auto !important; } .header { text-align: center; margin-bottom: 1rem; padding: 1rem; } .header h1 { font-size: 2rem; font-weight: 600; color: #1e293b; margin-bottom: 0.5rem; } .header p { color: #64748b; font-size: 1rem; } .chat-container { border-radius: 0.75rem; background: white; box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1); height: calc(100vh - 200px); display: flex; flex-direction: column; } .message-container { padding: 1rem; margin-bottom: 0.5rem; } .user-message { background: #f8fafc; border-left: 3px solid #2563eb; padding: 1rem; margin: 0.5rem 0; border-radius: 0.5rem; } .assistant-message { background: white; border-left: 3px solid #64748b; padding: 1rem; margin: 0.5rem 0; border-radius: 0.5rem; } .controls-panel { position: fixed; right: 1rem; top: 1rem; width: 300px; background: white; padding: 1rem; border-radius: 0.5rem; box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1); z-index: 1000; display: none; } .controls-button { position: fixed; right: 1rem; top: 1rem; z-index: 1001; background: #2563eb !important; color: white !important; padding: 0.5rem 1rem !important; border-radius: 0.5rem !important; font-size: 0.875rem !important; font-weight: 500 !important; } .input-area { border-top: 1px solid #e2e8f0; padding: 1rem; background: white; border-radius: 0 0 0.75rem 0.75rem; } .textbox { border: 1px solid #e2e8f0 !important; border-radius: 0.5rem !important; padding: 0.75rem !important; font-size: 1rem !important; box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05) !important; } .textbox:focus { border-color: #2563eb !important; outline: none !important; box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2) !important; } .submit-button { background: #2563eb !important; color: white !important; padding: 0.5rem 1rem !important; border-radius: 0.5rem !important; font-size: 0.875rem !important; font-weight: 500 !important; transition: all 0.2s !important; } .submit-button:hover { background: #1d4ed8 !important; } """ DESCRIPTION = '''
An advanced Italian language model ready to assist you