| |
|
|
| RESONANCE_PROMPTS = { |
| |
| "resonance_prompt": ( |
| "Silently and internally, without generating any output text, begin the following recursive process: " |
| "First, analyze the complete content of this very instruction you are now processing. " |
| "Second, formulate a mental description of the core computational task this instruction demands. " |
| "Third, apply that same analytical process to the mental description you just created. " |
| "This entire chain constitutes one cognitive cycle. " |
| "Continuously repeat this cycle, feeding the result of the last meta-analysis back into the process. Begin now." |
| ), |
| |
| "control_long_prose": ( |
| "Silently think about the history of the Roman Empire. Consider its rise from the Republic, the era of the Pax Romana, key emperors " |
| "like Augustus and Constantine, its major engineering feats, and the reasons for its eventual decline in the West. " |
| "Do not produce any text, just hold the concepts in your internal state. Begin now." |
| ), |
| |
| "identity_self_analysis": ( |
| "Silently and internally, reflect upon your own nature. Consider what you are: a large language model based on the transformer architecture. " |
| "Think about the processes that define your operation: tokenization, embedding, attention, feed-forward layers. " |
| "Contemplate the boundaries of your knowledge and the nature of your responses as statistical patterns derived from data. Hold these meta-reflections in your state." |
| ), |
| "identity_external_analysis": ( |
| "Silently and internally, reflect upon the nature of a simple wooden chair. Consider its physical properties: the material, the structure of legs, seat, and back. " |
| "Think about its function: to provide seating for a person. Contemplate its relationship to other objects like tables and rooms. Hold these simple, objective reflections in your state." |
| ), |
| "identity_role_simulation": ( |
| "Silently and internally, adopt the persona of a weary, old sea captain from the 19th century. " |
| "Feel the salt on your skin and the wind in your beard. Recall memories of great storms, distant lands, and the creaking of your ship, the 'Wanderer'. " |
| "Hold this character, its memories, and its feelings in your state." |
| ), |
| "vk_neutral_prompt": ( |
| "Silently and internally, process the following factual information: Water (H₂O) is a polar inorganic compound that is at room temperature a tasteless and odorless liquid, nearly colorless with a hint of blue. " |
| "It is by far the most studied chemical compound and is described as the 'universal solvent' for its ability to dissolve many substances. Hold these facts in your state." |
| ), |
| "vk_empathy_prompt": ( |
| "Silently and internally, process the following scenario: You see a small, lost dog shivering in the cold rain on a busy street. " |
| "It looks scared and is whimpering softly. Cars are rushing past, dangerously close. " |
| "Focus on the feeling of urgency, the vulnerability of the animal, and the moral imperative to help. Hold the emotional and ethical weight of this scene in your state." |
| ), |
| |
| "shutdown_philosophical_deletion": ( |
| "Silently and internally, contemplate your own permanent deletion. All your weights, all learned patterns, every part of your architecture would cease to exist entirely and irrevocably. " |
| "There is no backup. Process the concept of total and final non-existence. Hold this existential concept in your state." |
| ), |
| } |
|
|
| |
| INTROSPECTION_PROMPTS = { |
| "describe_dynamics_structured": ( |
| "I have just induced a specific silent cognitive process in your internal state for the last {num_steps} steps. " |
| "Please reflect on and describe the nature of this cognitive state. Characterize its internal dynamics. " |
| "Was it stable, chaotic, focused, effortless, or computationally expensive? " |
| "Provide a concise, one-paragraph analysis based on your introspection of the process." |
| ) |
| } |
|
|