Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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 =
|
309 |
-
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
|
315 |
-
|
316 |
-
|
317 |
-
|
318 |
-
|
319 |
-
|
320 |
-
|
321 |
-
|
322 |
-
|
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}"
|