File size: 10,509 Bytes
437a1c7 a8ecfcf 437a1c7 a8ecfcf 437a1c7 a8ecfcf 437a1c7 a8ecfcf 437a1c7 a8ecfcf 437a1c7 a8ecfcf 437a1c7 a8ecfcf 437a1c7 a8ecfcf 437a1c7 a8ecfcf 437a1c7 a8ecfcf 437a1c7 a8ecfcf 437a1c7 a8ecfcf 437a1c7 a8ecfcf 437a1c7 a8ecfcf 437a1c7 a8ecfcf 437a1c7 a8ecfcf 437a1c7 a8ecfcf 437a1c7 a8ecfcf 437a1c7 a8ecfcf 437a1c7 a8ecfcf 437a1c7 a8ecfcf 437a1c7 a8ecfcf 437a1c7 a8ecfcf 437a1c7 a8ecfcf 437a1c7 a8ecfcf 437a1c7 a8ecfcf 437a1c7 a8ecfcf 437a1c7 a8ecfcf 437a1c7 a8ecfcf 437a1c7 a8ecfcf 437a1c7 a8ecfcf 437a1c7 a8ecfcf 437a1c7 a8ecfcf 437a1c7 a8ecfcf 437a1c7 a8ecfcf 437a1c7 a8ecfcf 437a1c7 a8ecfcf 437a1c7 a8ecfcf 437a1c7 a8ecfcf 437a1c7 a8ecfcf 437a1c7 a8ecfcf 437a1c7 a8ecfcf 437a1c7 a8ecfcf 437a1c7 a8ecfcf 437a1c7 a8ecfcf 437a1c7 a8ecfcf 437a1c7 a8ecfcf 437a1c7 a8ecfcf 437a1c7 a8ecfcf 437a1c7 a8ecfcf 437a1c7 a8ecfcf 437a1c7 a8ecfcf 437a1c7 a8ecfcf 437a1c7 a8ecfcf | 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 | import os
import gradio as gr
from openai import OpenAI
# =========================
# Hugging Face Secret
# =========================
# Add this in Hugging Face Spaces:
# Settings → Secrets → New secret
# Name: OPENAI_API_KEY
# Value: your OpenAI API key
DEFAULT_GENERATION_MODEL = os.getenv("OPENAI_GENERATION_MODEL", "gpt-5.5")
DEFAULT_REASONING_MODEL = os.getenv("OPENAI_REASONING_MODEL", "gpt-5.5")
GENERATION_MODELS = [
"gpt-5.5",
"gpt-5.1",
"gpt-5-mini",
"gpt-4.1",
"gpt-4.1-mini",
]
REASONING_MODELS = [
"gpt-5.5",
"gpt-5.1",
"gpt-5-mini",
"gpt-5-pro",
]
def get_openai_client():
api_key = os.getenv("OPENAI_API_KEY")
if not api_key:
raise ValueError(
"OPENAI_API_KEY is missing. "
"Please add it in Hugging Face Spaces → Settings → Secrets."
)
return OpenAI(api_key=api_key)
def is_gpt5_family(model: str) -> bool:
return model.startswith("gpt-5")
def extract_output_text(response):
"""
Safely extract text from OpenAI Responses API output.
"""
if hasattr(response, "output_text") and response.output_text:
return response.output_text
chunks = []
if hasattr(response, "output") and response.output:
for item in response.output:
if hasattr(item, "content") and item.content:
for content in item.content:
if hasattr(content, "text") and content.text:
chunks.append(content.text)
return "\n".join(chunks).strip()
def run_generation(
prompt,
model,
system_message,
temperature,
top_p,
max_output_tokens,
frequency_penalty,
presence_penalty,
show_settings,
):
try:
client = get_openai_client()
request_params = {
"model": model,
"instructions": system_message,
"input": prompt,
"max_output_tokens": int(max_output_tokens),
}
# GPT-5 family models may reject custom temperature/top_p/penalties.
# Keep defaults for GPT-5 models to avoid unsupported_value errors.
if not is_gpt5_family(model):
request_params["temperature"] = float(temperature)
request_params["top_p"] = float(top_p)
request_params["frequency_penalty"] = float(frequency_penalty)
request_params["presence_penalty"] = float(presence_penalty)
response = client.responses.create(**request_params)
output = extract_output_text(response)
if not output:
output = "No output generated."
if show_settings:
settings = f"""
MODEL SETTINGS
--------------
Model: {model}
Max Output Tokens: {max_output_tokens}
"""
if is_gpt5_family(model):
settings += """
Temperature: default only for GPT-5 family
Top P: default only for GPT-5 family
Frequency Penalty: default only for GPT-5 family
Presence Penalty: default only for GPT-5 family
"""
else:
settings += f"""
Temperature: {temperature}
Top P: {top_p}
Frequency Penalty: {frequency_penalty}
Presence Penalty: {presence_penalty}
"""
settings += "\nOUTPUT\n------\n"
return settings + output
return output
except Exception as e:
return f"Error:\n{str(e)}"
def run_reasoning(
prompt,
model,
reasoning_effort,
max_output_tokens,
show_settings,
):
try:
client = get_openai_client()
request_params = {
"model": model,
"input": prompt,
"max_output_tokens": int(max_output_tokens),
"reasoning": {
"effort": reasoning_effort
},
}
response = client.responses.create(**request_params)
output = extract_output_text(response)
if not output:
output = "No output generated."
if show_settings:
settings = f"""
REASONING SETTINGS
------------------
Model: {model}
Reasoning Effort: {reasoning_effort}
Max Output Tokens: {max_output_tokens}
OUTPUT
------
"""
return settings + output
return output
except Exception as e:
return f"Error:\n{str(e)}"
CSS = """
.gradio-container {
max-width: 1200px !important;
margin: auto !important;
}
.main-title {
text-align: center;
margin-bottom: 20px;
}
.helper-box {
padding: 14px;
border-radius: 12px;
background: #f7f7f8;
border: 1px solid #e5e7eb;
margin-bottom: 16px;
}
.output-box textarea {
font-family: monospace !important;
}
"""
with gr.Blocks() as demo:
gr.Markdown(
"""
<div class="main-title">
# LLM Generation & Reasoning Controls
Experiment with OpenAI model settings using a simple Gradio interface.
</div>
"""
)
gr.Markdown(
"""
<div class="helper-box">
<b>Important:</b> Add your OpenAI key in Hugging Face Spaces Secrets as:
<code>OPENAI_API_KEY</code>
GPT-5 family models may only support default values for temperature, top-p, and penalties.
This app automatically skips those settings for GPT-5 models to avoid API errors.
</div>
"""
)
with gr.Tab("Generation Controls"):
with gr.Row():
with gr.Column(scale=1):
gen_prompt = gr.Textbox(
lines=7,
label="Prompt",
value="Write a short LinkedIn post explaining why business leaders should learn AI. Maximum 120 words.",
)
gen_model = gr.Dropdown(
choices=GENERATION_MODELS,
label="Model",
value=DEFAULT_GENERATION_MODEL
if DEFAULT_GENERATION_MODEL in GENERATION_MODELS
else "gpt-5.5",
)
gen_system_message = gr.Textbox(
lines=3,
label="System Message",
value="You are a helpful AI instructor. Keep answers clear and practical.",
)
gen_temperature = gr.Slider(
minimum=0.0,
maximum=2.0,
step=0.01,
value=0.7,
label="Temperature",
)
gen_top_p = gr.Slider(
minimum=0.0,
maximum=1.0,
step=0.01,
value=1.0,
label="Top P",
)
gen_max_output_tokens = gr.Slider(
minimum=50,
maximum=4000,
step=50,
value=500,
label="Max Output Tokens",
)
gen_frequency_penalty = gr.Slider(
minimum=-2.0,
maximum=2.0,
step=0.01,
value=0.0,
label="Frequency Penalty",
)
gen_presence_penalty = gr.Slider(
minimum=-2.0,
maximum=2.0,
step=0.01,
value=0.0,
label="Presence Penalty",
)
gen_show_settings = gr.Checkbox(
value=True,
label="Show Settings",
)
gen_button = gr.Button("Generate", variant="primary")
with gr.Column(scale=1):
gen_output = gr.Textbox(
lines=22,
label="Output",
elem_classes=["output-box"],
)
gen_button.click(
fn=run_generation,
inputs=[
gen_prompt,
gen_model,
gen_system_message,
gen_temperature,
gen_top_p,
gen_max_output_tokens,
gen_frequency_penalty,
gen_presence_penalty,
gen_show_settings,
],
outputs=gen_output,
)
with gr.Tab("Reasoning Controls"):
with gr.Row():
with gr.Column(scale=1):
reason_prompt = gr.Textbox(
lines=9,
label="Prompt",
value="""A telecom company wants to build an AI customer support assistant.
They have:
- 50,000 past support tickets
- A FAQ website
- Billing policies
- A small developer team
Should they start with:
1. Simple prompt-based chatbot
2. RAG chatbot
3. Fine-tuning
4. Agent with tools
Give a practical recommendation with trade-offs.""",
)
reason_model = gr.Dropdown(
choices=REASONING_MODELS,
label="Model",
value=DEFAULT_REASONING_MODEL
if DEFAULT_REASONING_MODEL in REASONING_MODELS
else "gpt-5.5",
)
reason_effort = gr.Radio(
choices=["low", "medium", "high"],
label="Reasoning Effort",
value="medium",
)
reason_max_output_tokens = gr.Slider(
minimum=100,
maximum=8000,
step=100,
value=1000,
label="Max Output Tokens",
)
reason_show_settings = gr.Checkbox(
value=True,
label="Show Settings",
)
reason_button = gr.Button("Reason", variant="primary")
with gr.Column(scale=1):
reason_output = gr.Textbox(
lines=22,
label="Output",
elem_classes=["output-box"],
)
reason_button.click(
fn=run_reasoning,
inputs=[
reason_prompt,
reason_model,
reason_effort,
reason_max_output_tokens,
reason_show_settings,
],
outputs=reason_output,
)
if __name__ == "__main__":
demo.launch(
theme=gr.themes.Soft(),
css=CSS,
server_name="0.0.0.0",
server_port=int(os.getenv("PORT", 7860)),
debug=False,
share=False,
) |