Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -305,21 +305,21 @@ with col2:
|
|
305 |
"""
|
306 |
st.code(data_display, language="")
|
307 |
# First, create a template string with placeholders
|
308 |
-
|
309 |
-
Location: ({}, {})
|
310 |
-
Duration: {}s, Intensity: {}
|
311 |
-
Pressure: {}
|
312 |
-
Temperature: {}\N{DEGREE SIGN}C
|
313 |
-
Texture: {}
|
314 |
-
EM Field: {} μT
|
315 |
-
Quantum State: {}
|
316 |
-
Resulting in
|
317 |
-
Pain: {}, Pleasure: {}
|
318 |
-
Tickle: {}, Itch: {}
|
319 |
-
Proprioception: {}
|
320 |
-
Synesthesia: {}
|
321 |
-
Neural Response: {}
|
322 |
-
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}"
|
|
|
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}"
|