Sephfox commited on
Commit
ef2813b
·
verified ·
1 Parent(s): 244f776

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +17 -16
app.py CHANGED
@@ -305,22 +305,23 @@ with col2:
305
  """
306
  st.code(data_display, language="")
307
  # First, create a template string with placeholders
308
- prompt_template = "Human: Analyze the sensory input for a hyper-advanced AI humanoid:\n"
309
- prompt_template += " Location: ({}, {})\n"
310
- prompt_template += " Duration: {}s, Intensity: {}\n"
311
- prompt_template += " Pressure: {}\n"
312
- prompt_template += " Temperature: {}\N{DEGREE SIGN}C\n"
313
- prompt_template += " Texture: {}\n"
314
- prompt_template += " EM Field: {} μT\n"
315
- prompt_template += " Quantum State: {}\n"
316
- prompt_template += " Resulting in:\n"
317
- prompt_template += " Pain: {}, Pleasure: {}\n"
318
- prompt_template += " Tickle: {}, Itch: {}\n"
319
- prompt_template += " Proprioception: {}\n"
320
- prompt_template += " Synesthesia: {}\n"
321
- prompt_template += " Neural Response: {}\n"
322
- prompt_template += " Provide a detailed, scientific, and creative description of the AI humanoid's experience and response to this sensory input."
323
-
 
324
  # First, format each value individually
325
  touch_x_str = f"{touch_x:.1f}"
326
  touch_y_str = f"{touch_y:.1f}"
 
305
  """
306
  st.code(data_display, language="")
307
  # First, create a template string with placeholders
308
+ prompt_template = (
309
+ "Human: Analyze the sensory input for a hyper-advanced AI humanoid:\n"
310
+ " Location: ({}, {})\n"
311
+ " Duration: {}s, Intensity: {}\n"
312
+ " Pressure: {}\n"
313
+ " Temperature: {}\N{DEGREE SIGN}C\n"
314
+ " Texture: {}\n"
315
+ " EM Field: {} μT\n"
316
+ " Quantum State: {}\n"
317
+ " Resulting in:\n"
318
+ " Pain: {}, Pleasure: {}\n"
319
+ " Tickle: {}, Itch: {}\n"
320
+ " Proprioception: {}\n"
321
+ " Synesthesia: {}\n"
322
+ " Neural Response: {}\n"
323
+ " Provide a detailed, scientific, and creative description of the AI humanoid's experience and response to this sensory input."
324
+ )
325
  # First, format each value individually
326
  touch_x_str = f"{touch_x:.1f}"
327
  touch_y_str = f"{touch_y:.1f}"