Spaces:
Running
Running
File size: 16,002 Bytes
29a4795 38c463d 29a4795 3b98352 38c463d 29a4795 d00bdd7 38c463d 29a4795 38c463d 29a4795 38c463d d459b9e 38c463d 5f2dccf 29a4795 38c463d d459b9e 3cb284f 38c463d 5f2dccf 38c463d d459b9e 29a4795 38c463d 29a4795 38c463d 29a4795 38c463d 5f2dccf d459b9e 29a4795 38c463d d459b9e 38c463d d459b9e d00bdd7 d459b9e 02c9197 d459b9e d00bdd7 d459b9e d00bdd7 d459b9e d00bdd7 d459b9e d00bdd7 d459b9e d00bdd7 d459b9e d00bdd7 d459b9e d00bdd7 d459b9e d00bdd7 d459b9e d00bdd7 d459b9e 02c9197 d00bdd7 d459b9e d00bdd7 d459b9e 02c9197 d00bdd7 02c9197 d00bdd7 02c9197 d459b9e d00bdd7 d459b9e 5f2dccf 692b3f2 3f810e4 d459b9e 02c9197 d459b9e 02c9197 d459b9e 02c9197 d459b9e 5f2dccf d459b9e 02c9197 29a4795 38c463d 5f2dccf 38c463d 29a4795 38c463d 5f2dccf 38c463d d459b9e 38c463d 5f2dccf 38c463d d459b9e 5f2dccf d459b9e 5f2dccf d459b9e 5f2dccf 29a4795 5f2dccf |
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 |
import os
import gradio as gr
from azure.ai.inference import ChatCompletionsClient
from azure.core.credentials import AzureKeyCredential
# Azure Inference setup
url = os.getenv("Azure_Endpoint")
api_key = AzureKeyCredential(os.getenv("Azure_API_KEY"))
# Initialize the ChatCompletionsClient
client = ChatCompletionsClient(
endpoint=url,
credential=api_key,
stream=True
)
# Get and print model information (optional)
try:
model_info = client.get_model_info()
print("Model name:", model_info.model_name)
print("Model type:", model_info.model_type)
print("Model provider name:", model_info.model_provider_name)
except Exception as e:
print("Could not get model info:", str(e))
# Configuration parameters
default_temperature = 0.7
default_max_tokens = 4096
default_top_p = 0.1
default_presence_penalty = 0.0
default_frequency_penalty = 0.0
# Example prompts that users can try
example_prompts = [
"Explain internet to a medieval knight.",
"Share some ideas about the best vegetables to start growing in February and March. I'd love to know which ones thrive when planted early in the season!",
"I'd like to buy a new car. Start by asking me about my budget and which features I care most about, then provide a recommendation.",
"I'm thinking about moving to a new city. Can you help me plan the move?",
"I have $20,000 in my savings account, where I receive a 4% profit per year and payments twice a year. Can you please tell me how long it will take for me to become a millionaire?",
]
def get_azure_response(message, chat_history, temperature, max_tokens, top_p, presence_penalty, frequency_penalty):
"""
Function to get a response from the Azure Phi-4 model
"""
# Prepare conversation history in the format expected by Azure
messages = [{"role": "system", "content": "You are a helpful AI assistant specialized in financial advice and planning."}]
# Add conversation history
for human, assistant in chat_history:
messages.append({"role": "user", "content": human})
if assistant: # Only add non-empty assistant messages
messages.append({"role": "assistant", "content": assistant})
# Add the current message
messages.append({"role": "user", "content": message})
# Prepare the payload
payload = {
"messages": messages,
"max_tokens": max_tokens,
"temperature": temperature,
"top_p": top_p,
"presence_penalty": presence_penalty,
"frequency_penalty": frequency_penalty,
"stream": True
}
# Get response
try:
print("Sending request to Azure...")
response = client.complete(payload)
return response
except Exception as e:
print(f"Error getting response: {str(e)}")
return f"Error: {str(e)}"
# CSS for custom styling
custom_css = """
/* Light theme variables */
:root {
--text-primary: #1a5276;
--text-secondary: #34495e;
--text-tertiary: #7f8c8d;
--background-primary: #ffffff;
--background-secondary: #f8f9fa;
--background-accent: #e8f4f8;
--border-color: #e0e0e0;
}
/* Base styles that work in both light and dark themes */
.container {
max-width: 1200px !important;
margin-left: auto !important;
margin-right: auto !important;
padding-top: 0rem !important;
}
.header {
text-align: center;
margin-bottom: 0rem;
}
.header h1 {
font-size: 2.5rem !important;
font-weight: 700 !important;
margin-bottom: 0.5rem !important;
}
.header p {
font-size: 1.2rem !important;
}
.chatbot-container {
border-radius: 10px !important;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
overflow: hidden !important;
}
.emoji-button {
background: none !important;
border: none !important;
padding: 0.2rem 0.5rem !important;
font-size: 1.5rem !important;
cursor: pointer !important;
transition: transform 0.2s !important;
}
.emoji-button:hover {
transform: scale(1.2) !important;
}
.message-input {
margin-top: 1rem !important;
display: flex !important;
align-items: center !important;
}
.footer {
margin-top: 2rem;
text-align: center;
font-size: 0.9rem;
}
.parameters-section {
padding: 1rem !important;
border-radius: 8px !important;
margin-bottom: 1rem !important;
border: 1px solid var(--border-color) !important;
}
.examples-section {
padding: 1rem !important;
border-radius: 8px !important;
margin-bottom: 1rem !important;
border: 1px solid var(--border-color) !important;
}
.right-panel {
padding-left: 1rem !important;
}
/* Light theme specific styles */
body:not(.dark) .header h1 {
color: var(--text-primary) !important;
}
body:not(.dark) .header p {
color: var(--text-secondary) !important;
}
body:not(.dark) .footer {
color: var(--text-tertiary) !important;
}
body:not(.dark) .parameters-section {
background-color: var(--background-secondary) !important;
}
body:not(.dark) .examples-section {
background-color: var(--background-accent) !important;
}
body:not(.dark) .chatbot-container {
background-color: var(--background-primary) !important;
}
/* Dark theme specific styles */
body.dark {
--text-primary: #eaeaea !important;
--text-secondary: #b0b0b0 !important;
--text-tertiary: #909090 !important;
--background-primary: #2a2a2a !important;
--background-secondary: #333333 !important;
--background-accent: #1e3a5f !important;
--border-color: #555555 !important;
}
body.dark .header h1 {
color: var(--text-primary) !important;
}
body.dark .header p {
color: var(--text-secondary) !important;
}
body.dark .footer {
color: var(--text-tertiary) !important;
}
body.dark .parameters-section {
background-color: var(--background-secondary) !important;
}
body.dark .examples-section {
background-color: var(--background-accent) !important;
}
body.dark .chatbot-container {
background-color: var(--background-primary) !important;
}
/* Chat bubbles styling for both themes */
[data-testid="chatbot"] .message.user {
border: 1px solid rgba(0, 0, 0, 0.1) !important;
}
[data-testid="chatbot"] .message.bot {
border: 1px solid rgba(0, 0, 0, 0.1) !important;
}
/* Chat bubbles in dark mode */
body.dark [data-testid="chatbot"] .message.user {
background-color: #3a3a3a !important;
color: #ffffff !important;
border: 1px solid #4a4a4a !important;
}
body.dark [data-testid="chatbot"] .message.bot {
background-color: #1e3a5f !important;
color: #ffffff !important;
border: 1px solid #2c5999 !important;
}
/* Ensure text inputs are visible in dark mode */
body.dark input[type="text"],
body.dark textarea {
background-color: #333333 !important;
color: #ffffff !important;
border-color: #555555 !important;
}
/* Fix for slider tracks and thumbs in dark mode */
body.dark input[type="range"]::-webkit-slider-runnable-track {
background-color: #555555 !important;
}
body.dark input[type="range"]::-webkit-slider-thumb {
background-color: #1e88e5 !important;
}
/* Buttons in dark mode */
body.dark button {
border-color: #555555 !important;
}
/* Labels and descriptions in dark mode */
body.dark label,
body.dark .gr-form > div > p {
color: var(--text-secondary) !important;
}
"""
# Create the Gradio interface with a modern, professional design
with gr.Blocks(css=custom_css, title="Phi-4-mini Playground") as demo:
with gr.Column(elem_classes="container"):
# Header section
with gr.Column(elem_classes="header"):
gr.Markdown("# Phi-4-mini Playground")
gr.Markdown("""This demo allows you to interact with the [Phi-4-Mini](https://aka.ms/phi-4-multimodal/techreport).
Other demos include [Phi-4-multimodal](https://huggingface.co/spaces/microsoft/phi-4-multimodal) playground, [Thoughts Organizer](https://huggingface.co/spaces/microsoft/ThoughtsOrganizer),
[Stories Come Alive](https://huggingface.co/spaces/microsoft/StoriesComeAlive),
[Phine Speech Translator](https://huggingface.co/spaces/microsoft/PhineSpeechTranslator)""")
# Main content with side-by-side layout
with gr.Row():
# Left column for chat
with gr.Column(scale=7):
# Main chat interface
with gr.Column(elem_classes="chatbot-container"):
chatbot = gr.Chatbot(
height=600, # Increased height to match right panel
bubble_full_width=False,
show_label=False,
avatar_images=(None, "https://upload.wikimedia.org/wikipedia/commons/d/d3/Phi-integrated-information-symbol.png")
)
with gr.Row(elem_classes="message-input"):
msg = gr.Textbox(
label="Your message",
placeholder="Start type here ...",
lines=2,
show_label=False,
container=False,
scale=8
)
send_btn = gr.Button("📤Send", variant="primary", scale=1)
with gr.Row():
clear = gr.Button("🗑️ Clear", variant="secondary", scale=1)
regenerate = gr.Button("🔄 Regenerate", variant="secondary", scale=1)
# Right column for examples and settings
with gr.Column(scale=3, elem_classes="right-panel"):
# Examples section
with gr.Column(elem_classes="examples-section"):
examples = gr.Examples(
examples=example_prompts,
inputs=msg,
examples_per_page=4
)
# Model parameters section
with gr.Column(elem_classes="parameters-section"):
gr.Markdown("### Advanced Settings")
temp_slider = gr.Slider(
minimum=0.0,
maximum=1.0,
value=default_temperature,
step=0.1,
label="Temperature",
info="Higher = more creative, lower = more focused"
)
top_p_slider = gr.Slider(
minimum=0.1,
maximum=1.0,
value=default_top_p,
step=0.1,
label="Top P",
info="Controls diversity of responses"
)
max_tokens_slider = gr.Slider(
minimum=100,
maximum=32000,
value=default_max_tokens,
step=100,
label="Max Tokens",
info="Maximum length of response"
)
# New sliders for presence and frequency penalty
presence_penalty_slider = gr.Slider(
minimum=-2.0,
maximum=2.0,
value=default_presence_penalty,
step=0.1,
label="Presence Penalty",
info="Positive values increase likelihood to talk about new topics"
)
frequency_penalty_slider = gr.Slider(
minimum=-2.0,
maximum=2.0,
value=default_frequency_penalty,
step=0.1,
label="Frequency Penalty",
info="Positive values decrease likelihood to repeat the same text"
)
# Footer
with gr.Column(elem_classes="footer"):
gr.Markdown("Powered by Microsoft [Phi-4 mini model](https://aka.ms/phi-4-mini/azure) on Azure AI. © 2025")
# Simplified chat function that handles both sending and receiving messages
def chat(message, history, temperature, max_tokens, top_p, presence_penalty, frequency_penalty):
if not message.strip():
return "", history
# Get response from Azure
response = get_azure_response(message, history, temperature, max_tokens, top_p, presence_penalty, frequency_penalty)
# Add the exchange to history
history.append((message, ""))
response_index = len(history) - 1 # Create a blank index for the newest response
full_response = "" # Stream the response
try:
print("Streaming response from Azure...")
for chunk in response:
if chunk.choices:
content = chunk.choices[0].delta.content
if content:
full_response += content
# Update the response in place
history[response_index] = (message, full_response)
# Yield the updated history
yield "", history
# Print usage statistics at the end
print("Streaming completed")
# Return the final state
return "", history
except Exception as e:
error_message = f"Error: {str(e)}"
print(error_message)
# Update history with error message
history[response_index] = (message, error_message)
return "", history
# Function to clear the conversation
def clear_conversation():
return [], default_temperature, default_max_tokens, default_top_p, default_presence_penalty, default_frequency_penalty
# Function to regenerate the last response
def regenerate_response(history, temperature, max_tokens, top_p, presence_penalty, frequency_penalty):
if not history:
return history
last_user_message = history[-1][0]
# Remove the last exchange
history = history[:-1]
# Get new response
response = get_azure_response(last_user_message, history, temperature, max_tokens, top_p, presence_penalty, frequency_penalty)
# Add the exchange to history
history.append((last_user_message, ""))
response_index = len(history) - 1
full_response = ""
try:
for chunk in response:
if chunk.choices:
content = chunk.choices[0].delta.content
if content:
full_response += content
history[response_index] = (last_user_message, full_response)
yield history
return history
except Exception as e:
error_message = f"Error: {str(e)}"
history[response_index] = (last_user_message, error_message)
return history
# Set up event handlers
msg.submit(chat, [msg, chatbot, temp_slider, max_tokens_slider, top_p_slider, presence_penalty_slider, frequency_penalty_slider], [msg, chatbot])
send_btn.click(chat, [msg, chatbot, temp_slider, max_tokens_slider, top_p_slider, presence_penalty_slider, frequency_penalty_slider], [msg, chatbot])
clear.click(clear_conversation, None, [chatbot, temp_slider, max_tokens_slider, top_p_slider, presence_penalty_slider, frequency_penalty_slider])
regenerate.click(regenerate_response, [chatbot, temp_slider, max_tokens_slider, top_p_slider, presence_penalty_slider, frequency_penalty_slider], [chatbot])
# Launch the app
demo.launch(share=True) # Set share=True to generate a public URL for testing |