Spaces:
Sleeping
Sleeping
File size: 16,092 Bytes
d59051f 78db114 f487bca 78db114 2a04bbe d59051f f487bca d59051f f487bca d59051f f487bca d59051f 2a04bbe d59051f 78db114 d59051f f487bca d59051f f487bca d59051f f487bca 2a04bbe d59051f f487bca 2a04bbe f487bca d59051f 2a04bbe d59051f f487bca d59051f f487bca d59051f f487bca d59051f f487bca d59051f f487bca d59051f f487bca d59051f f487bca 2a04bbe f487bca d59051f f487bca d59051f 13c6bec | 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 | import gradio as gr
import os
import asyncio
import numpy as np
import random
from openai import AsyncOpenAI
import json
import time
# Initialize OpenAI client with better error handling
def get_openai_client():
api_key = os.getenv("OPENAI_API_KEY")
if not api_key or api_key == "":
return None
try:
return AsyncOpenAI(api_key=api_key)
except Exception as e:
print(f"Failed to initialize OpenAI client: {e}")
return None
openai_client = get_openai_client()
class ImprovPartner:
def __init__(self):
self.scene_contexts = [
"a coffee shop where the coffee machine is broken",
"a spaceship that's running out of fuel",
"a doctor's office where the doctor is allergic to patients",
"a library where all the books are singing",
"a pet store that only sells invisible animals",
"a cooking show where everything is made of marshmallows",
"a gym where everyone is moving in slow motion",
"a bank that only trades in compliments",
"a haunted house where the ghosts are afraid of people",
"a classroom where the teacher is a student"
]
self.current_scene = random.choice(self.scene_contexts)
self.persona_traits = [
"overly enthusiastic",
"mysteriously quiet",
"dramatic and theatrical",
"constantly confused",
"extremely literal",
"sings everything",
"speaks only in questions",
"uses pirate slang",
"acts like a robot",
"thinks they're a superhero"
]
self.current_persona = random.choice(self.persona_traits)
self.conversation_history = []
async def generate_improv_response(self, user_input: str) -> str:
"""Generate an improv response based on user input."""
global openai_client
# Try to get client if not available
if not openai_client:
openai_client = get_openai_client()
if not openai_client:
# Fallback responses if no OpenAI client
fallback_responses = [
f"Yes, and that reminds me of something crazy that happened in {self.current_scene}!",
"That's brilliant! What if we also...",
"I love that! And what if suddenly...",
"Perfect! And at that exact moment...",
f"Absolutely! And then out of nowhere, in {self.current_scene}..."
]
return random.choice(fallback_responses)
try:
system_prompt = f"""
You are an improv partner in a scene. Be creative, supportive, and move the scene forward.
Current scene: {self.current_scene}
Your character traits: {self.current_persona}
Rules:
- Always say "Yes, and..." or equivalent to accept and build on what the partner says
- Keep responses concise (1-2 sentences max)
- Stay in character and scene
- Be playful and supportive
- End with an open-ended suggestion or question to keep the scene moving
- Never break character or mention you're an AI
Recent dialogue:
User: "{user_input}"
"""
response = await openai_client.chat.completions.create(
model="gpt-4o-mini",
messages=[
{"role": "system", "content": system_prompt},
{"role": "user", "content": user_input}
],
max_tokens=100,
temperature=0.9
)
return response.choices[0].message.content.strip()
except Exception as e:
print(f"OpenAI API error: {e}")
# Fallback responses if API fails
fallback_responses = [
f"Yes, and that reminds me of something crazy that happened in {self.current_scene}!",
"That's brilliant! What if we also...",
"I love that! And what if suddenly...",
"Perfect! And at that exact moment...",
"Absolutely! And then out of nowhere..."
]
return random.choice(fallback_responses)
# Global improv partner instance
improv_partner = ImprovPartner()
def update_scene_info():
"""Return current scene information."""
return improv_partner.current_scene, improv_partner.current_persona
def change_scene(option):
"""Change scene or persona based on user selection."""
if option == "Change Scene":
improv_partner.current_scene = random.choice(improv_partner.scene_contexts)
improv_partner.conversation_history = []
elif option == "Change Persona":
improv_partner.current_persona = random.choice(improv_partner.persona_traits)
elif option == "Reset Scene":
improv_partner.current_scene = random.choice(improv_partner.scene_contexts)
improv_partner.current_persona = random.choice(improv_partner.persona_traits)
improv_partner.conversation_history = []
return update_scene_info()
def chat_response(user_input, history):
"""Generate chat response."""
if not user_input or user_input.strip() == "":
return history, "Please say something to start the scene!"
try:
# Add user input to history
history.append([user_input, ""])
# Generate AI response (synchronously for Gradio)
import asyncio
try:
loop = asyncio.get_event_loop()
except:
loop = asyncio.new_event_loop()
asyncio.set_event_loop(loop)
response = loop.run_until_complete(improv_partner.generate_improv_response(user_input))
# Update history with AI response
history[-1][1] = response
return history, ""
except Exception as e:
print(f"Error in chat_response: {e}")
fallback = f"Yes, and that's interesting! What happens next in {improv_partner.current_scene}?"
history.append([user_input, fallback])
return history, ""
def generate_prompt_suggestions():
"""Generate prompt suggestions for the user."""
suggestions = [
"I just got here, what's going on?",
"Oh no! Did you hear that noise?",
"This is the strangest place I've ever been!",
"Can you help me with something?",
"I have something important to tell you...",
"Wait a minute, I think I know you!",
"Something incredible just happened!",
"We need to get out of here, now!",
"I have a brilliant idea!",
"You won't believe what I just found!"
]
return random.sample(suggestions, 3)
def check_api_status():
"""Check if OpenAI API is configured."""
global openai_client
if not openai_client:
openai_client = get_openai_client()
if openai_client:
return "β
OpenAI API Connected", gr.Button(visible=False), gr.Textbox(visible=False)
else:
return "β OpenAI API Not Configured", gr.Button(visible=True), gr.Textbox(visible=True)
def set_api_key(api_key):
"""Set OpenAI API key from user input."""
if api_key and api_key.strip():
# Set environment variable for this session
os.environ["OPENAI_API_KEY"] = api_key.strip()
global openai_client
try:
openai_client = AsyncOpenAI(api_key=api_key.strip())
return "β
API Key Set Successfully!", gr.Button(visible=False), gr.Textbox(visible=False)
except Exception as e:
return f"β Error setting API key: {e}", gr.Button(visible=True), gr.Textbox(visible=True)
else:
return "β Please enter a valid API key", gr.Button(visible=True), gr.Textbox(visible=True)
# Build the Gradio interface
with gr.Blocks(title="Improv Partner Chatbot", theme=gr.themes.Soft(), css="""
.scene-info {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
padding: 15px;
border-radius: 10px;
color: white;
margin: 10px 0;
}
.chat-container {
height: 400px;
overflow-y: auto;
}
.api-status {
background: #f0f0f0;
padding: 10px;
border-radius: 5px;
margin: 10px 0;
text-align: center;
}
""") as demo:
gr.Markdown("""
# π Real-Time Improv Partner
### Your AI companion for spontaneous theater!
**Built with [anycoder](https://huggingface.co/spaces/akhaliq/anycoder)**
---
""")
# API Status Section
with gr.Row():
api_status = gr.Textbox(label="API Status", value="Checking...", interactive=False)
with gr.Row(visible=False) as api_setup_row:
api_key_input = gr.Textbox(
label="Enter your OpenAI API Key:",
placeholder="sk-...",
type="password",
scale=3
)
set_api_btn = gr.Button("Set API Key", variant="primary", scale=1)
# Check API status on load
demo.load(
check_api_status,
outputs=[api_status, api_setup_row, api_key_input]
)
# Set API key handler
set_api_btn.click(
set_api_key,
inputs=[api_key_input],
outputs=[api_status, api_setup_row, api_key_input]
)
with gr.Row():
with gr.Column(scale=2):
# Scene information display
with gr.Row():
with gr.Column():
gr.Markdown('<div class="scene-info">π <strong>Current Scene:</strong></div>', elem_classes="scene-info")
scene_info = gr.Textbox(
value=improv_partner.current_scene,
interactive=False,
container=False,
show_label=False
)
with gr.Column():
gr.Markdown('<div class="scene-info">π <strong>Current Persona:</strong></div>', elem_classes="scene-info")
persona_info = gr.Textbox(
value=improv_partner.current_persona,
interactive=False,
container=False,
show_label=False
)
# Chat interface
gr.Markdown("### π¬ Scene Dialogue")
chatbot = gr.Chatbot(
height=400,
show_copy_button=True,
bubble_full_width=False,
elem_classes="chat-container"
)
# Input area
with gr.Row():
msg = gr.Textbox(
label="Your line:",
placeholder="Say your line... (Remember: 'Yes, and...')",
scale=4
)
submit_btn = gr.Button("π€ Speak", variant="primary", scale=1)
# Prompt suggestions
with gr.Row():
gr.Markdown("π‘ **Need inspiration? Try one of these:**")
with gr.Row():
suggestion1 = gr.Button(generate_prompt_suggestions()[0], size="sm")
suggestion2 = gr.Button(generate_prompt_suggestions()[1], size="sm")
suggestion3 = gr.Button(generate_prompt_suggestions()[2], size="sm")
# Clear button
clear_btn = gr.Button("ποΈ Clear Scene", variant="secondary")
with gr.Column(scale=1):
gr.Markdown("""
### ποΈ Scene Controls
""")
scene_options = gr.Dropdown(
choices=["Change Scene", "Change Persona", "Reset Scene"],
label="Scene Options",
value="Reset Scene"
)
apply_btn = gr.Button("β¨ Apply Changes", variant="primary")
gr.Markdown("""
### π― How to Play:
1. **Accept & Build**: Always say "Yes, and..." to accept your partner's ideas
2. **Stay in Character**: Keep the scene going with your persona
3. **Be Creative**: Add unexpected but relevant details
4. **Listen Carefully**: Build on what your partner says
5. **Have Fun**: There are no wrong answers in improv!
### π Tips:
- Keep responses brief
- Ask questions to keep dialogue flowing
- Use physical actions and emotions
- Don't block or negate ideas
- Embrace the unexpected!
""")
# API Setup Info
gr.Markdown("""
### π API Setup
To get AI responses, you need an OpenAI API key:
1. Go to [platform.openai.com](https://platform.openai.com/api-keys)
2. Create an API key
3. Enter it above when prompted
4. The app will save it for your session
Without an API key, you'll get generic responses.
""")
# Stats
gr.Markdown("### π Scene Stats")
scene_count = gr.Number(label="Scenes Played", value=0, interactive=False)
# Refresh suggestions button
refresh_suggestions = gr.Button("π New Suggestions", variant="secondary", size="sm")
# Event handlers
def handle_submit(user_input, history):
if not user_input.strip():
return history, ""
new_history = history.copy()
new_history, _ = chat_response(user_input, new_history)
return new_history, ""
# Main chat interaction
msg.submit(handle_submit, [msg, chatbot], [chatbot, msg])
submit_btn.click(handle_submit, [msg, chatbot], [chatbot, msg])
# Suggestion buttons
def use_suggestion(suggestion_text, current_history):
return handle_submit(suggestion_text, current_history)
suggestion1.click(use_suggestion, [suggestion1, chatbot], [chatbot, msg])
suggestion2.click(use_suggestion, [suggestion2, chatbot], [chatbot, msg])
suggestion3.click(use_suggestion, [suggestion3, chatbot], [chatbot, msg])
# Scene controls
def apply_scene_changes(option, current_count):
new_scene, new_persona = change_scene(option)
new_count = current_count + 1 if option == "Reset Scene" else current_count
return new_scene, new_persona, new_count
apply_btn.click(
apply_scene_changes,
[scene_options, scene_count],
[scene_info, persona_info, scene_count]
)
# Clear conversation
def clear_conversation():
return [], ""
clear_btn.click(clear_conversation, outputs=[chatbot, msg])
# Refresh suggestions
def refresh_suggestions_fn():
return random.sample([
"I just got here, what's going on?",
"Oh no! Did you hear that noise?",
"This is the strangest place I've ever been!",
"Can you help me with something?",
"I have something important to tell you...",
"Wait a minute, I think I know you!",
"Something incredible just happened!",
"We need to get out of here, now!",
"I have a brilliant idea!",
"You won't believe what I just found!"
], 3)
refresh_suggestions.click(
refresh_suggestions_fn,
outputs=[suggestion1, suggestion2, suggestion3]
)
# Welcome message
demo.load(
lambda: [[None, f"Welcome! I'm your improv partner. Our scene is {improv_partner.current_scene}, and I'm feeling {improv_partner.current_persona}. What's your opening line?"]],
outputs=[chatbot]
)
if __name__ == "__main__":
demo.launch() |