Spaces:
Running
Running
File size: 20,291 Bytes
c1bee18 43a0ca3 c1bee18 43a0ca3 c1bee18 9a48f85 c1bee18 8243b24 c1bee18 4ddd600 8243b24 d48e4d6 c1bee18 4ddd600 c1bee18 8243b24 d48e4d6 c1bee18 4ddd600 c1bee18 d48e4d6 8243b24 d48e4d6 8243b24 d48e4d6 8243b24 9a48f85 c1bee18 d48e4d6 8243b24 c1bee18 8243b24 d48e4d6 c1bee18 d48e4d6 8243b24 d48e4d6 8243b24 d48e4d6 8243b24 c1bee18 43a0ca3 c1bee18 43a0ca3 c1bee18 43a0ca3 c1bee18 9a48f85 |
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 |
"""
UI components for HF-Inferoxy AI Hub.
Contains functions to create different sections of the Gradio interface.
"""
import gradio as gr
from utils import (
DEFAULT_CHAT_MODEL, DEFAULT_IMAGE_MODEL, DEFAULT_IMAGE_PROVIDER,
DEFAULT_IMAGE_TO_IMAGE_MODEL, DEFAULT_IMAGE_TO_IMAGE_PROVIDER,
CHAT_CONFIG, IMAGE_CONFIG, IMAGE_PROVIDERS, IMAGE_MODEL_PRESETS,
IMAGE_TO_IMAGE_MODEL_PRESETS, IMAGE_EXAMPLE_PROMPTS, IMAGE_TO_IMAGE_EXAMPLE_PROMPTS
)
def create_chat_tab(handle_chat_submit_fn, handle_chat_retry_fn=None):
"""
Create the chat tab interface.
"""
with gr.Tab("π¬ Chat Assistant", id="chat"):
# Chat interface at the top - most prominent
chatbot_display = gr.Chatbot(
label="Chat",
type="messages",
height=800,
show_copy_button=True
)
# Chat input
with gr.Row():
chat_input = gr.Textbox(
placeholder="Type your message here...",
label="Message",
scale=4,
container=False
)
chat_submit = gr.Button("Send", variant="primary", scale=1)
chat_stop = gr.Button("βΉ Stop", variant="secondary", scale=0, visible=False)
# Configuration options below the chat
with gr.Row():
with gr.Column(scale=1):
chat_model_name = gr.Textbox(
value=DEFAULT_CHAT_MODEL,
label="Model Name",
placeholder="e.g., openai/gpt-oss-20b or openai/gpt-oss-20b:fireworks-ai"
)
chat_system_message = gr.Textbox(
value=CHAT_CONFIG["system_message"],
label="System Message",
lines=2,
placeholder="Define the assistant's personality and behavior..."
)
with gr.Column(scale=1):
chat_max_tokens = gr.Slider(
minimum=1, maximum=4096, value=CHAT_CONFIG["max_tokens"], step=1,
label="Max New Tokens"
)
chat_temperature = gr.Slider(
minimum=0.1, maximum=2.0, value=CHAT_CONFIG["temperature"], step=0.1,
label="Temperature"
)
chat_top_p = gr.Slider(
minimum=0.1, maximum=1.0, value=CHAT_CONFIG["top_p"], step=0.05,
label="Top-p (nucleus sampling)"
)
# Configuration tips below the chat
create_chat_tips()
# Connect chat events (streaming auto-detected from generator function)
# Show stop immediately when sending
chat_submit.click(
fn=lambda: gr.update(visible=True),
inputs=None,
outputs=[chat_stop],
queue=False
)
chat_send_event = chat_submit.click(
fn=handle_chat_submit_fn,
inputs=[chat_input, chatbot_display, chat_system_message, chat_model_name,
chat_max_tokens, chat_temperature, chat_top_p],
outputs=[chatbot_display, chat_input]
)
# Show stop immediately when pressing Enter
chat_input.submit(
fn=lambda: gr.update(visible=True),
inputs=None,
outputs=[chat_stop],
queue=False
)
chat_enter_event = chat_input.submit(
fn=handle_chat_submit_fn,
inputs=[chat_input, chatbot_display, chat_system_message, chat_model_name,
chat_max_tokens, chat_temperature, chat_top_p],
outputs=[chatbot_display, chat_input]
)
# Stop current chat generation
chat_stop.click(
fn=lambda: gr.update(visible=False),
inputs=None,
outputs=[chat_stop],
cancels=[chat_send_event, chat_enter_event],
queue=False
)
# Hide stop after completion of chat events
chat_send_event.then(lambda: gr.update(visible=False), None, [chat_stop], queue=False)
chat_enter_event.then(lambda: gr.update(visible=False), None, [chat_stop], queue=False)
# Enable retry icon and bind handler if provided
if handle_chat_retry_fn is not None:
chatbot_display.retry(
fn=handle_chat_retry_fn,
inputs=[chatbot_display, chat_system_message, chat_model_name,
chat_max_tokens, chat_temperature, chat_top_p],
outputs=chatbot_display
)
def create_chat_tips():
"""Create the tips section for the chat tab."""
with gr.Row():
with gr.Column():
gr.Markdown("""
### π‘ Chat Tips
**Model Format:**
- Single model: `openai/gpt-oss-20b` (uses auto provider)
- With provider: `openai/gpt-oss-20b:fireworks-ai`
**Popular Models:**
- `openai/gpt-oss-20b` - Fast general purpose
- `meta-llama/Llama-2-7b-chat-hf` - Chat optimized
- `microsoft/DialoGPT-medium` - Conversation
- `google/flan-t5-base` - Instruction following
""")
with gr.Column():
gr.Markdown("""
### π Popular Providers
- **auto** - Let HF choose best provider (default)
- **fireworks-ai** - Fast and reliable
- **cerebras** - High performance
- **groq** - Ultra-fast inference
- **together** - Wide model support
- **cohere** - Advanced language models
**Examples:**
- `openai/gpt-oss-20b` (auto provider)
- `openai/gpt-oss-20b:fireworks-ai` (specific provider)
""")
def create_image_tab(handle_image_generation_fn):
"""
Create the image generation tab interface.
"""
with gr.Tab("π¨ Image Generator", id="image"):
with gr.Row():
with gr.Column(scale=2):
# Image output
output_image = gr.Image(
label="Generated Image",
type="pil",
height=600,
show_download_button=True
)
status_text = gr.Textbox(
label="Generation Status",
interactive=False,
lines=2
)
with gr.Column(scale=1):
# Model and provider inputs
with gr.Group():
gr.Markdown("**π€ Model & Provider**")
img_model_name = gr.Textbox(
value=DEFAULT_IMAGE_MODEL,
label="Model Name",
placeholder="e.g., Qwen/Qwen-Image or stabilityai/stable-diffusion-xl-base-1.0"
)
img_provider = gr.Dropdown(
choices=IMAGE_PROVIDERS,
value=DEFAULT_IMAGE_PROVIDER,
label="Provider",
interactive=True
)
# Generation parameters
with gr.Group():
gr.Markdown("**π Prompts**")
img_prompt = gr.Textbox(
value=IMAGE_EXAMPLE_PROMPTS[0], # Use first example as default
label="Prompt",
lines=3,
placeholder="Describe the image you want to generate..."
)
img_negative_prompt = gr.Textbox(
value=IMAGE_CONFIG["negative_prompt"],
label="Negative Prompt",
lines=2,
placeholder="Describe what you DON'T want in the image..."
)
with gr.Group():
gr.Markdown("**βοΈ Generation Settings**")
with gr.Row():
img_width = gr.Slider(
minimum=256, maximum=2048, value=IMAGE_CONFIG["width"], step=64,
label="Width", info="Must be divisible by 8"
)
img_height = gr.Slider(
minimum=256, maximum=2048, value=IMAGE_CONFIG["height"], step=64,
label="Height", info="Must be divisible by 8"
)
with gr.Row():
img_steps = gr.Slider(
minimum=10, maximum=100, value=IMAGE_CONFIG["num_inference_steps"], step=1,
label="Inference Steps", info="More steps = better quality"
)
img_guidance = gr.Slider(
minimum=1.0, maximum=20.0, value=IMAGE_CONFIG["guidance_scale"], step=0.5,
label="Guidance Scale", info="How closely to follow prompt"
)
img_seed = gr.Slider(
minimum=-1, maximum=999999, value=IMAGE_CONFIG["seed"], step=1,
label="Seed", info="-1 for random"
)
# Generate and Stop buttons
with gr.Row():
generate_btn = gr.Button(
"π¨ Generate Image",
variant="primary",
size="lg",
scale=2
)
stop_generate_btn = gr.Button("βΉ Stop", variant="secondary", visible=False)
# Quick model presets
create_image_presets(img_model_name, img_provider)
# Examples for image generation
create_image_examples(img_prompt)
# Connect image generation events
# Show stop immediately when starting generation
generate_btn.click(
fn=lambda: gr.update(visible=True),
inputs=None,
outputs=[stop_generate_btn],
queue=False
)
gen_event = generate_btn.click(
fn=handle_image_generation_fn,
inputs=[
img_prompt, img_model_name, img_provider, img_negative_prompt,
img_width, img_height, img_steps, img_guidance, img_seed
],
outputs=[output_image, status_text]
)
# Stop current image generation
stop_generate_btn.click(
fn=lambda: gr.update(visible=False),
inputs=None,
outputs=[stop_generate_btn],
cancels=[gen_event],
queue=False
)
# Hide stop after generation completes
gen_event.then(lambda: gr.update(visible=False), None, [stop_generate_btn], queue=False)
def create_image_to_image_tab(handle_image_to_image_generation_fn):
"""
Create the image-to-image tab interface.
"""
with gr.Tab("πΌοΈ Image-to-Image", id="image-to-image"):
with gr.Row():
with gr.Column(scale=1):
# Input image
input_image = gr.Image(
label="Input Image",
type="pil",
height=400,
show_download_button=True
)
# Model and provider inputs
with gr.Group():
gr.Markdown("**π€ Model & Provider**")
img2img_model_name = gr.Textbox(
value=DEFAULT_IMAGE_TO_IMAGE_MODEL,
label="Model Name",
placeholder="e.g., Qwen/Qwen-Image-Edit or black-forest-labs/FLUX.1-Kontext-dev"
)
img2img_provider = gr.Dropdown(
choices=IMAGE_PROVIDERS,
value=DEFAULT_IMAGE_TO_IMAGE_PROVIDER,
label="Provider",
interactive=True
)
with gr.Column(scale=1):
# Output image
output_image = gr.Image(
label="Generated Image",
type="pil",
height=400,
show_download_button=True
)
status_text = gr.Textbox(
label="Generation Status",
interactive=False,
lines=2
)
with gr.Column(scale=1):
# Generation parameters
with gr.Group():
gr.Markdown("**π Prompts**")
img2img_prompt = gr.Textbox(
value=IMAGE_TO_IMAGE_EXAMPLE_PROMPTS[0], # Use first example as default
label="Prompt",
lines=3,
placeholder="Describe how you want to modify the image..."
)
img2img_negative_prompt = gr.Textbox(
value=IMAGE_CONFIG["negative_prompt"],
label="Negative Prompt",
lines=2,
placeholder="Describe what you DON'T want in the modified image..."
)
with gr.Group():
gr.Markdown("**βοΈ Generation Settings**")
with gr.Row():
img2img_steps = gr.Slider(
minimum=10, maximum=100, value=IMAGE_CONFIG["num_inference_steps"], step=1,
label="Inference Steps", info="More steps = better quality"
)
img2img_guidance = gr.Slider(
minimum=1.0, maximum=20.0, value=IMAGE_CONFIG["guidance_scale"], step=0.5,
label="Guidance Scale", info="How closely to follow prompt"
)
img2img_seed = gr.Slider(
minimum=-1, maximum=999999, value=IMAGE_CONFIG["seed"], step=1,
label="Seed", info="-1 for random"
)
# Generate and Stop buttons
with gr.Row():
generate_btn = gr.Button(
"πΌοΈ Generate Image-to-Image",
variant="primary",
size="lg",
scale=2
)
stop_generate_btn = gr.Button("βΉ Stop", variant="secondary", visible=False)
# Quick model presets
create_image_to_image_presets(img2img_model_name, img2img_provider)
# Examples for image-to-image generation
create_image_to_image_examples(img2img_prompt)
# Connect image-to-image generation events
# Show stop immediately when starting generation
generate_btn.click(
fn=lambda: gr.update(visible=True),
inputs=None,
outputs=[stop_generate_btn],
queue=False
)
gen_event = generate_btn.click(
fn=handle_image_to_image_generation_fn,
inputs=[
input_image, img2img_prompt, img2img_model_name, img2img_provider, img2img_negative_prompt,
img2img_steps, img2img_guidance, img2img_seed
],
outputs=[output_image, status_text]
)
# Stop current image-to-image generation
stop_generate_btn.click(
fn=lambda: gr.update(visible=False),
inputs=None,
outputs=[stop_generate_btn],
cancels=[gen_event],
queue=False
)
# Hide stop after generation completes
gen_event.then(lambda: gr.update(visible=False), None, [stop_generate_btn], queue=False)
def create_image_to_image_presets(img2img_model_name, img2img_provider):
"""Create quick model presets for image-to-image generation."""
with gr.Group():
gr.Markdown("**π― Popular Presets**")
for name, model, provider in IMAGE_TO_IMAGE_MODEL_PRESETS:
btn = gr.Button(name, size="sm")
btn.click(
lambda m=model, p=provider: (m, p),
outputs=[img2img_model_name, img2img_provider]
)
def create_image_to_image_examples(img2img_prompt):
"""Create example prompts for image-to-image generation."""
with gr.Group():
gr.Markdown("**π Example Prompts**")
img2img_examples = gr.Examples(
examples=[[prompt] for prompt in IMAGE_TO_IMAGE_EXAMPLE_PROMPTS],
inputs=img2img_prompt
)
def create_image_presets(img_model_name, img_provider):
"""Create quick model presets for image generation."""
with gr.Group():
gr.Markdown("**π― Popular Presets**")
for name, model, provider in IMAGE_MODEL_PRESETS:
btn = gr.Button(name, size="sm")
btn.click(
lambda m=model, p=provider: (m, p),
outputs=[img_model_name, img_provider]
)
def create_image_examples(img_prompt):
"""Create example prompts for image generation."""
with gr.Group():
gr.Markdown("**π Example Prompts**")
img_examples = gr.Examples(
examples=[[prompt] for prompt in IMAGE_EXAMPLE_PROMPTS],
inputs=img_prompt
)
def create_main_header():
"""Create the main header for the application."""
gr.Markdown("""
# π HF-Inferoxy AI Hub
A comprehensive AI platform combining chat and image generation capabilities with intelligent token management through HF-Inferoxy.
**Features:**
- π¬ **Smart Chat**: Conversational AI with streaming responses
- π¨ **Image Generation**: Text-to-image creation with multiple providers
- πΌοΈ **Image-to-Image**: Transform and modify existing images with AI
- π **Intelligent Token Management**: Automatic token rotation and error handling
- π **Multi-Provider Support**: Works with HF Inference, Cerebras, Cohere, Groq, Together, Fal.ai, and more
""")
def create_footer():
"""Create the footer with helpful information."""
gr.Markdown("""
---
### π How to Use
**Chat Tab:**
- Enter your message and customize the AI's behavior with system messages
- Choose models and providers using the format `model:provider`
- Adjust temperature for creativity and top-p for response diversity
**Image Tab:**
- Write detailed prompts describing your desired image
- Use negative prompts to avoid unwanted elements
- Experiment with different models and providers for varied styles
- Higher inference steps = better quality but slower generation
**Image-to-Image Tab:**
- Upload an input image you want to modify
- Describe the changes you want to make to the image
- Use negative prompts to avoid unwanted modifications
- Perfect for style transfers, object additions, and image transformations
- Works great with models like Qwen Image Edit and FLUX.1 Kontext
**Supported Providers:**
- **fal-ai**: High-quality image generation (default for images)
- **hf-inference**: Core API with comprehensive model support
- **cerebras**: High-performance inference
- **cohere**: Advanced language models with multilingual support
- **groq**: Ultra-fast inference, optimized for speed
- **together**: Collaborative AI hosting, wide model support
- **nebius**: Cloud-native services with enterprise features
- **nscale**: Optimized inference performance
- **replicate**: Collaborative AI hosting
**Built with β€οΈ using [HF-Inferoxy](https://nazdridoy.github.io/hf-inferoxy/) for intelligent token management**
""")
|