Spaces:
Runtime error
Runtime error
File size: 34,458 Bytes
df83e9f | 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 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 | import gradio as gr
import torch
from diffusers import FluxPipeline
from transformers import CLIPTextModel, T5EncoderModel, CLIPTokenizer, T5Tokenizer
from safetensors.torch import load_file
import os
import socket
from PIL import Image
import base64
import io
import requests
import json
def find_free_port(start_port=7860):
"""Find a free port"""
for port in range(start_port, start_port + 20):
with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as s:
try:
s.bind(('localhost', port))
return port
except OSError:
continue
return None
class CompleteLocalFlux:
def __init__(self):
# Set up Groq API key (you'll need to set this)
self.groq_api_key = os.getenv("GROQ_API_KEY")
if not self.groq_api_key:
print("β οΈ GROQ_API_KEY not found in environment variables")
print(" Set it with: export GROQ_API_KEY='your_api_key_here'")
else:
print("β
Groq API key found")
if torch.backends.mps.is_available():
self.device = torch.device("mps")
print("π Using Apple M2 Max with MPS")
else:
self.device = torch.device("cpu")
# Find your models
self.flux_models = {}
self.local_t5_path = None
# Check for Flux models
possible_flux_files = [
("Flux Dev", "./models/Flux/flux-dev.safetensors"),
("Flux Schnell", "./models/Flux/flux1-schnell.safetensors"),
("Flux Kontex", "./models/Flux/flux-kontex.safetensors"),
("Flux Dev Alt", "./flux-dev.safetensors"),
("Flux Schnell Alt", "./flux1-schnell.safetensors"),
("Flux Kontex Alt", "./flux-kontex.safetensors")
]
for name, path in possible_flux_files:
if os.path.exists(path):
size_gb = os.path.getsize(path) / (1024*1024*1024)
self.flux_models[name] = {"path": path, "size": size_gb}
print(f"β
Found {name}: {path} ({size_gb:.1f} GB)")
# Check for local T5 model
possible_t5_paths = [
"./models/Flux/google_t5-v1_1-xxl_encoderonly-fp8_e4m3fn.safetensors",
"./google_t5-v1_1-xxl_encoderonly-fp8_e4m3fn.safetensors",
"./models/google_t5-v1_1-xxl_encoderonly-fp8_e4m3fn.safetensors"
]
for path in possible_t5_paths:
if os.path.exists(path):
size_gb = os.path.getsize(path) / (1024*1024*1024)
self.local_t5_path = path
print(f"β
Found T5 model: {path} ({size_gb:.1f} GB)")
break
# Check for local CLIP model
self.local_clip_path = None
possible_clip_paths = [
"./models/clip",
"./models/CLIP/clip-vit-large-patch14",
"./clip-vit-large-patch14"
]
for path in possible_clip_paths:
if os.path.exists(path) and os.path.exists(os.path.join(path, "config.json")):
self.local_clip_path = path
print(f"β
Found local CLIP model: {path}")
break
if not self.local_clip_path:
print("β οΈ No local CLIP model found - will download on first use")
# Check for local VAE model (including downloaded cache)
self.local_vae_path = None
self.cached_vae_path = "./models/Flux/vae_cache" # Cache directory for downloaded VAE
possible_vae_paths = [
"./models/Flux/vae_local", # New local VAE location
"./models/Flux/ae.safetensors",
"./ae.safetensors",
"./models/ae.safetensors",
"./models/Flux/vae.safetensors",
"./vae.safetensors",
self.cached_vae_path # Check for cached downloaded VAE
]
for path in possible_vae_paths:
if os.path.exists(path):
if os.path.isdir(path): # Cached VAE directory
self.local_vae_path = path
print(f"β
Found cached VAE: {path}")
else: # Single VAE file
size_gb = os.path.getsize(path) / (1024*1024*1024)
self.local_vae_path = path
print(f"β
Found VAE model: {path} ({size_gb:.1f} GB)")
break
# Find LoRA files - simple and working approach
self.lora_files = []
# Check multiple directories for LoRA files
lora_search_paths = [
"./models/lora", # Main LoRA directory
".", # Current directory
"./models",
"./lora",
"./LoRA"
]
for search_path in lora_search_paths:
if os.path.exists(search_path):
try:
files = [f for f in os.listdir(search_path) if f.endswith(".safetensors")]
# Add full path for files not in current directory
if search_path != ".":
files = [os.path.join(search_path, f) for f in files]
self.lora_files.extend(files)
except PermissionError:
continue
# Also specifically look for your LoRA files
specific_lora_files = [
"./models/lora/act_person_trained.safetensors",
"./models/lora/oddtoperson.safetensors",
"./models/lora/oddtopersonmark2.safetensors",
]
for lora_file in specific_lora_files:
if os.path.exists(lora_file) and lora_file not in self.lora_files:
self.lora_files.append(lora_file)
# Remove duplicates while preserving order
seen = set()
unique_lora_files = []
for f in self.lora_files:
if f not in seen:
seen.add(f)
unique_lora_files.append(f)
self.lora_files = unique_lora_files
self.pipeline = None
self.current_model = None
self.lora_loaded = False
self.encoders_loaded = False
print(f"β
Found {len(self.lora_files)} LoRA files")
for f in self.lora_files:
print(f" - {f}")
def cleanup_memory(self):
"""Clean up GPU/MPS memory"""
if hasattr(self, 'pipeline') and self.pipeline is not None:
del self.pipeline
self.pipeline = None
if torch.cuda.is_available():
torch.cuda.empty_cache()
elif self.device.type == "mps":
torch.mps.empty_cache()
print("π§Ή Memory cleaned up")
def load_local_text_encoders(self):
"""Load text encoders using local and remote models"""
try:
print("π Loading text encoders...")
# Use consistent dtype for MPS compatibility
dtype = torch.float32 # Use float32 for better MPS compatibility
# Load CLIP text encoder from local folder if available
if self.local_clip_path:
print(f" Loading CLIP from local folder: {self.local_clip_path}")
try:
self.clip_text_encoder = CLIPTextModel.from_pretrained(
self.local_clip_path,
torch_dtype=dtype,
local_files_only=True # Force local only
)
self.clip_tokenizer = CLIPTokenizer.from_pretrained(
self.local_clip_path,
local_files_only=True # Force local only
)
print("β
Local CLIP model loaded successfully!")
except Exception as e:
print(f"β Error loading local CLIP folder: {e}")
print(" Falling back to download...")
# Fallback to download if local fails
self.clip_text_encoder = CLIPTextModel.from_pretrained(
"openai/clip-vit-large-patch14",
torch_dtype=dtype
)
self.clip_tokenizer = CLIPTokenizer.from_pretrained("openai/clip-vit-large-patch14")
else:
print(" Loading CLIP text encoder (downloading ~1GB)...")
self.clip_text_encoder = CLIPTextModel.from_pretrained(
"openai/clip-vit-large-patch14",
torch_dtype=dtype
)
self.clip_tokenizer = CLIPTokenizer.from_pretrained("openai/clip-vit-large-patch14")
# Load T5 encoder - fix the tokenizer warning and local loading
if self.local_t5_path:
print(f" Loading T5 from local file: {self.local_t5_path}")
# Load tokenizer with legacy=False to suppress warning
print(" Loading T5 tokenizer...")
self.t5_tokenizer = T5Tokenizer.from_pretrained(
"google/t5-v1_1-xxl",
legacy=False # This fixes the warning
)
print(" Loading local T5 weights...")
# Load the model architecture first
self.t5_text_encoder = T5EncoderModel.from_pretrained(
"google/t5-v1_1-xxl",
torch_dtype=dtype
)
# Try to load and apply your local weights
try:
print(" Attempting to load local T5 safetensors...")
local_t5_weights = load_file(self.local_t5_path)
# Filter weights to only include those that match the model structure
model_state_dict = self.t5_text_encoder.state_dict()
filtered_weights = {}
for key, value in local_t5_weights.items():
if key in model_state_dict:
if model_state_dict[key].shape == value.shape:
filtered_weights[key] = value
else:
print(f"β οΈ Skipping {key}: shape mismatch {model_state_dict[key].shape} vs {value.shape}")
else:
print(f"β οΈ Skipping {key}: not found in model")
# Load the filtered weights
missing_keys, unexpected_keys = self.t5_text_encoder.load_state_dict(filtered_weights, strict=False)
if missing_keys:
print(f"β οΈ Missing keys: {len(missing_keys)} (this is often normal)")
if unexpected_keys:
print(f"β οΈ Unexpected keys: {len(unexpected_keys)}")
print("β
Local T5 weights loaded successfully!")
except Exception as e:
print(f"β Error loading local T5 weights: {e}")
print(" Your T5 file may be corrupted or incomplete.")
print(" Falling back to downloaded weights (model architecture already loaded)...")
# Keep the downloaded model architecture - don't try to reload
else:
print(" No local T5 found, downloading...")
self.t5_tokenizer = T5Tokenizer.from_pretrained(
"google/t5-v1_1-xxl",
legacy=False # This fixes the warning
)
self.t5_text_encoder = T5EncoderModel.from_pretrained(
"google/t5-v1_1-xxl",
torch_dtype=dtype
)
# Move to device
self.clip_text_encoder = self.clip_text_encoder.to(self.device)
self.t5_text_encoder = self.t5_text_encoder.to(self.device)
self.encoders_loaded = True
print("β
All text encoders loaded successfully!")
return True
except Exception as e:
print(f"β Error loading text encoders: {e}")
import traceback
traceback.print_exc() # This will help debug the exact issue
return False
def load_flux_complete(self, model_choice, lora_choice):
"""Load complete Flux setup with better memory management"""
try:
# Clean up previous model if switching
if self.current_model and self.current_model != model_choice:
print("π§Ή Cleaning up previous model...")
self.cleanup_memory()
# Load encoders if needed
if not self.encoders_loaded:
if not self.load_local_text_encoders():
return "β Failed to load text encoders"
if model_choice not in self.flux_models:
return f"β Model {model_choice} not found"
model_path = self.flux_models[model_choice]["path"]
print(f"π Loading {model_choice} with complete setup...")
# Load VAE separately (required for Flux)
print(" Loading VAE...")
from diffusers import AutoencoderKL
# Check if we have a local VAE first
if self.local_vae_path:
print(f" Using local VAE from: {self.local_vae_path}")
try:
if os.path.isdir(self.local_vae_path):
# Local VAE folder
vae = AutoencoderKL.from_pretrained(
self.local_vae_path,
torch_dtype=torch.float32,
local_files_only=True # Force local only
)
else:
# Single VAE file - load the base model and apply weights
vae = AutoencoderKL.from_pretrained(
"black-forest-labs/FLUX.1-dev",
subfolder="vae",
torch_dtype=torch.float32
)
# Load local weights if it's a safetensors file
if self.local_vae_path.endswith('.safetensors'):
from safetensors.torch import load_file
vae_weights = load_file(self.local_vae_path)
vae.load_state_dict(vae_weights, strict=False)
# Ensure all VAE weights are float32 for MPS compatibility
vae = vae.to(torch.float32)
print("β
Local VAE loaded successfully!")
except Exception as e:
print(f"β Local VAE failed: {e}")
print(" Falling back to download...")
vae = None
else:
vae = None
# Download and cache VAE if no local version works
if vae is None:
print(" β οΈ No local VAE found - downloading from HuggingFace...")
print(" Consider running download_vae.py for 100% local operation")
try:
# Create cache directory
os.makedirs(os.path.dirname(self.cached_vae_path), exist_ok=True)
# Download and save to cache
vae = AutoencoderKL.from_pretrained(
"black-forest-labs/FLUX.1-dev",
subfolder="vae",
torch_dtype=torch.float32,
cache_dir="./models/Flux/hf_cache" # Local cache for HuggingFace downloads
)
# Ensure all VAE weights are float32 for MPS compatibility
vae = vae.to(torch.float32)
# Save the VAE locally for next time
print(f" Caching VAE to: {self.cached_vae_path}")
vae.save_pretrained(self.cached_vae_path)
self.local_vae_path = self.cached_vae_path # Update for future runs
print("β
VAE downloaded and cached locally!")
except Exception as e:
print(f"β Failed to download VAE: {e}")
return f"β Could not load VAE: {e}"
# Load Flux with all components including VAE
self.pipeline = FluxPipeline.from_single_file(
model_path,
text_encoder=self.clip_text_encoder,
text_encoder_2=self.t5_text_encoder,
tokenizer=self.clip_tokenizer,
tokenizer_2=self.t5_tokenizer,
vae=vae, # Add the VAE component
torch_dtype=torch.float32, # Use float32 for MPS compatibility
)
self.current_model = model_choice
print(f"β
{model_choice} loaded completely!")
# Load LoRA
self.lora_loaded = False
if lora_choice != "None" and lora_choice in self.lora_files:
try:
print(f"π Loading LoRA: {lora_choice}")
# Load LoRA with better error handling and warnings suppression
import warnings
with warnings.catch_warnings():
warnings.filterwarnings("ignore", message="No LoRA keys associated to CLIPTextModel found")
warnings.filterwarnings("ignore", message="You can also try specifying")
self.pipeline.load_lora_weights(".", weight_name=lora_choice)
self.lora_loaded = True
print("β
LoRA loaded successfully!")
except Exception as e:
print(f"β LoRA loading failed: {e}")
# Continue without LoRA if it fails
self.lora_loaded = False
# Move pipeline to device (MPS for Apple Silicon)
self.pipeline = self.pipeline.to(self.device)
# Ensure all pipeline components are float32 for MPS compatibility
if self.device.type == "mps":
print(" Converting all components to float32 for MPS...")
self.pipeline.vae = self.pipeline.vae.to(torch.float32)
self.pipeline.text_encoder = self.pipeline.text_encoder.to(torch.float32)
self.pipeline.text_encoder_2 = self.pipeline.text_encoder_2.to(torch.float32)
# Enable MPS-specific optimizations
self.pipeline.enable_attention_slicing()
print("β
Enabled MPS optimizations and float32 conversion")
status = f"β
{model_choice} ready"
if self.local_t5_path:
status += " (local T5)"
if self.local_clip_path:
status += " (local CLIP)"
if self.local_vae_path:
status += " (local VAE)"
if self.lora_loaded:
status += f" + LoRA ({lora_choice})"
return status
except Exception as e:
print(f"β Error in load_flux_complete: {e}")
import traceback
traceback.print_exc()
return f"β Error: {e}"
def generate_image(self, prompt, model_choice, lora_choice, steps, guidance, seed):
"""Generate with complete local setup - YOUR SETTINGS ARE RESPECTED"""
# Convert clean LoRA name back to full path if needed
actual_lora_choice = lora_choice
if hasattr(self, 'lora_path_mapping') and lora_choice in self.lora_path_mapping:
actual_lora_choice = self.lora_path_mapping[lora_choice]
# Load if needed
if self.pipeline is None or self.current_model != model_choice:
print(f"π Need to load model: {model_choice}")
load_status = self.load_flux_complete(model_choice, actual_lora_choice)
if "β" in load_status:
print(f"β Model loading failed: {load_status}")
return None, load_status
if not prompt.strip():
return None, "β Please enter a prompt"
try:
print(f"π¨ Starting generation...")
print(f" Prompt: {prompt[:60]}...")
print(f" Model: {model_choice}")
print(f" LoRA: {lora_choice}")
print(f" Steps: {steps}, Guidance: {guidance}, Seed: {seed}")
torch.manual_seed(int(seed))
# USE YOUR EXACT SETTINGS - NO OVERRIDES!
print(f" Using your exact settings: {steps} steps, guidance: {guidance}")
print("π Running pipeline...")
with torch.inference_mode():
result = self.pipeline(
prompt=prompt,
num_inference_steps=int(steps),
guidance_scale=guidance,
width=1024,
height=1024,
generator=torch.Generator(device=self.device).manual_seed(int(seed))
)
if hasattr(result, 'images') and len(result.images) > 0:
image = result.images[0]
print("β
Image generated successfully!")
else:
print("β No images in pipeline result")
return None, "β Pipeline returned no images"
if self.device.type == "mps":
torch.mps.empty_cache()
# Save with clean filename
os.makedirs("outputs/complete_local_flux", exist_ok=True)
model_name = model_choice.replace(" ", "_").lower()
# Clean LoRA name for filename
if lora_choice != "None":
lora_name = os.path.basename(lora_choice).replace(".safetensors", "")
lora_name = lora_name.replace("/", "_").replace("\\", "_").replace(" ", "_")
else:
lora_name = "no_lora"
filename = f"{model_name}_{lora_name}_{seed}.png"
filepath = os.path.join("outputs/complete_local_flux", filename)
print(f"πΎ Saving to: {filepath}")
image.save(filepath, optimize=True)
status = f"β
Generated with {model_choice}"
if self.lora_loaded:
status += f" + LoRA"
if self.local_t5_path:
status += " (local T5)"
status += f"\nπ 1024x1024 β’ {steps} steps β’ Guidance: {guidance} β’ Seed: {seed}"
status += f"\nπΎ {filepath}"
print("π Generation complete!")
return image, status
except Exception as e:
error_msg = f"β Generation failed: {str(e)}"
print(error_msg)
import traceback
traceback.print_exc()
return None, error_msg
def image_to_base64(self, image):
"""Convert PIL Image to base64 string"""
try:
# Resize image if too large (Groq has size limits)
max_size = 1024
if image.width > max_size or image.height > max_size:
image.thumbnail((max_size, max_size), Image.Resampling.LANCZOS)
# Convert to RGB if needed
if image.mode != 'RGB':
image = image.convert('RGB')
# Convert to base64
buffered = io.BytesIO()
image.save(buffered, format="JPEG", quality=85)
img_str = base64.b64encode(buffered.getvalue()).decode()
return img_str
except Exception as e:
print(f"β Error converting image to base64: {e}")
return None
def analyze_image_with_groq(self, image):
"""Analyze image using Groq Vision API and return description"""
if not self.groq_api_key:
return "β Groq API key not configured. Set GROQ_API_KEY environment variable."
try:
print("π Analyzing image with Groq Vision...")
# Convert image to base64
base64_image = self.image_to_base64(image)
if not base64_image:
return "β Failed to convert image to base64"
# Prepare the API request
headers = {
"Authorization": f"Bearer {self.groq_api_key}",
"Content-Type": "application/json"
}
payload = {
"model": "meta-llama/llama-4-scout-17b-16e-instruct",
"messages": [
{
"role": "user",
"content": [
{
"type": "text",
"text": "Describe this image in detail for an AI image generation prompt. Focus on visual elements, style, composition, lighting, colors, mood, and artistic techniques. Be descriptive but concise. Format it as a prompt that could be used to recreate a similar image."
},
{
"type": "image_url",
"image_url": {
"url": f"data:image/jpeg;base64,{base64_image}"
}
}
]
}
],
"max_tokens": 300,
"temperature": 0.3
}
# Make the API call
response = requests.post(
"https://api.groq.com/openai/v1/chat/completions",
headers=headers,
json=payload,
timeout=30
)
if response.status_code == 200:
result = response.json()
description = result['choices'][0]['message']['content'].strip()
print("β
Image analysis complete!")
return description
else:
error_msg = f"Groq API error: {response.status_code} - {response.text}"
print(f"β {error_msg}")
return f"β {error_msg}"
except Exception as e:
error_msg = f"Error analyzing image: {str(e)}"
print(f"β {error_msg}")
return f"β {error_msg}"
def create_interface(self):
"""Create complete interface"""
model_choices = list(self.flux_models.keys())
if not model_choices:
model_choices = ["No models found"]
# Clean up LoRA choices - show only the filename
clean_lora_choices = ["None"]
for lora_path in self.lora_files:
filename = os.path.basename(lora_path) # Get just the filename
clean_lora_choices.append(filename)
# Create a mapping from clean names to full paths
self.lora_path_mapping = {"None": "None"}
for lora_path in self.lora_files:
filename = os.path.basename(lora_path)
self.lora_path_mapping[filename] = lora_path
with gr.Blocks(title="Complete Local Flux Studio", theme=gr.themes.Soft()) as interface:
gr.Markdown("# π Complete Local Flux Studio")
gr.Markdown("*Using your local Flux models + T5 + LoRA - maximum efficiency!*")
# Show what's available locally
if self.flux_models:
gr.Markdown("## π Your Local Setup:")
for name, info in self.flux_models.items():
gr.Markdown(f"- **{name}**: {info['size']:.1f} GB")
if self.local_t5_path:
t5_size = os.path.getsize(self.local_t5_path) / (1024*1024*1024)
gr.Markdown(f"- **T5 Encoder**: {t5_size:.1f} GB (local)")
if self.local_clip_path:
clip_file = os.path.join(self.local_clip_path, "model.safetensors")
if os.path.exists(clip_file):
clip_size = os.path.getsize(clip_file) / (1024*1024*1024)
gr.Markdown(f"- **CLIP Encoder**: {clip_size:.1f} GB (local)")
else:
gr.Markdown(f"- **CLIP Encoder**: local folder found")
if self.local_vae_path:
if os.path.isdir(self.local_vae_path):
gr.Markdown(f"- **VAE**: cached (local)")
else:
vae_size = os.path.getsize(self.local_vae_path) / (1024*1024*1024)
gr.Markdown(f"- **VAE**: {vae_size:.1f} GB (local)")
gr.Markdown(f"- **LoRA Models**: {len(self.lora_files)} found")
# IMAGE ANALYSIS SECTION - MOVED TO TOP LEVEL
gr.Markdown("## π Image Analysis with Groq Vision")
gr.Markdown("*Upload an image to automatically generate a prompt description*")
input_image = gr.Image(
label="π€ Upload Image to Analyze",
type="pil",
height=200
)
analyze_btn = gr.Button(
"π Analyze Image with Groq Vision",
variant="primary",
size="lg"
)
with gr.Row():
with gr.Column(scale=1):
gr.Markdown("## π¨ Generate")
model_choice = gr.Dropdown(
choices=model_choices,
value=model_choices[0] if model_choices[0] != "No models found" else None,
label="Flux Model"
)
lora_choice = gr.Dropdown(
choices=clean_lora_choices,
value=clean_lora_choices[1] if len(clean_lora_choices) > 1 else "None",
label="Your LoRA"
)
prompt = gr.Textbox(
label="Prompt",
value="artistic lifestyle portrait, person wearing vibrant orange bucket hat, expressive face, golden hour lighting, street style photography, film aesthetic",
lines=6,
placeholder="Enter your prompt here, or upload an image above and click 'Analyze' to auto-generate..."
)
with gr.Row():
steps = gr.Slider(4, 50, value=20, label="Steps")
guidance = gr.Slider(0.0, 10.0, value=3.5, label="Guidance")
seed = gr.Number(value=42, label="Seed")
generate_btn = gr.Button("π Generate Locally", variant="primary", size="lg")
with gr.Column(scale=1):
output_image = gr.Image(label="Generated Image", height=600)
status = gr.Textbox(label="Status", interactive=False, lines=4)
# Quick prompts for your artistic style
gr.Markdown("## π¨ Your Artistic Style")
with gr.Row():
portrait_btn = gr.Button("π Portrait")
vibrant_btn = gr.Button("π Vibrant")
street_btn = gr.Button("πΈ Street")
# Event handlers
analyze_btn.click(
fn=self.analyze_image_with_groq,
inputs=[input_image],
outputs=[prompt]
)
portrait_btn.click(
lambda: "artistic lifestyle portrait, person with expressive face, vibrant clothing, golden hour lighting",
outputs=[prompt]
)
vibrant_btn.click(
lambda: "person in colorful streetwear, vibrant orange bucket hat, street photography, film aesthetic",
outputs=[prompt]
)
street_btn.click(
lambda: "urban street style portrait, candid expression, natural lighting, contemporary photography",
outputs=[prompt]
)
generate_btn.click(
fn=self.generate_image,
inputs=[prompt, model_choice, lora_choice, steps, guidance, seed],
outputs=[output_image, status]
)
return interface
def launch(self):
"""Launch complete interface"""
interface = self.create_interface()
port = find_free_port()
print("π Launching Complete Local Flux Studio...")
print(f"π± Interface: http://localhost:{port}")
print("π Using maximum local resources!")
try:
interface.launch(
server_port=port,
share=True,
inbrowser=True
)
except Exception as e:
print(f"β Launch failed: {e}")
if __name__ == "__main__":
# Check if sentencepiece is installed
try:
import sentencepiece
print("β
SentencePiece found")
except ImportError:
print("β SentencePiece not found")
print("π§ Install with: pip install sentencepiece protobuf")
exit(1)
interface = CompleteLocalFlux()
interface.launch() |