Instructions to use aedmark/vsl-cryosomatic-hypervisor with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use aedmark/vsl-cryosomatic-hypervisor with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="aedmark/vsl-cryosomatic-hypervisor", filename="vsl-max-v2.gguf", )
llm.create_chat_completion( messages = "No input example has been defined for this model task." )
- Notebooks
- Google Colab
- Kaggle
- Local Apps
- llama.cpp
How to use aedmark/vsl-cryosomatic-hypervisor with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf aedmark/vsl-cryosomatic-hypervisor # Run inference directly in the terminal: llama-cli -hf aedmark/vsl-cryosomatic-hypervisor
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf aedmark/vsl-cryosomatic-hypervisor # Run inference directly in the terminal: llama-cli -hf aedmark/vsl-cryosomatic-hypervisor
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf aedmark/vsl-cryosomatic-hypervisor # Run inference directly in the terminal: ./llama-cli -hf aedmark/vsl-cryosomatic-hypervisor
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf aedmark/vsl-cryosomatic-hypervisor # Run inference directly in the terminal: ./build/bin/llama-cli -hf aedmark/vsl-cryosomatic-hypervisor
Use Docker
docker model run hf.co/aedmark/vsl-cryosomatic-hypervisor
- LM Studio
- Jan
- Ollama
How to use aedmark/vsl-cryosomatic-hypervisor with Ollama:
ollama run hf.co/aedmark/vsl-cryosomatic-hypervisor
- Unsloth Studio new
How to use aedmark/vsl-cryosomatic-hypervisor with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for aedmark/vsl-cryosomatic-hypervisor to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for aedmark/vsl-cryosomatic-hypervisor to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for aedmark/vsl-cryosomatic-hypervisor to start chatting
- Pi new
How to use aedmark/vsl-cryosomatic-hypervisor with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf aedmark/vsl-cryosomatic-hypervisor
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "aedmark/vsl-cryosomatic-hypervisor" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use aedmark/vsl-cryosomatic-hypervisor with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf aedmark/vsl-cryosomatic-hypervisor
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default aedmark/vsl-cryosomatic-hypervisor
Run Hermes
hermes
- Docker Model Runner
How to use aedmark/vsl-cryosomatic-hypervisor with Docker Model Runner:
docker model run hf.co/aedmark/vsl-cryosomatic-hypervisor
- Lemonade
How to use aedmark/vsl-cryosomatic-hypervisor with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull aedmark/vsl-cryosomatic-hypervisor
Run and chat with the model
lemonade run user.vsl-cryosomatic-hypervisor-{{QUANT_TAG}}List all available models
lemonade list
File size: 12,859 Bytes
f7fce63 | 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 | {
"KINTSUGI_KOANS":[
"Ignite the ice.",
"Make the stone float.",
"Pour water into the crack.",
"Scream in binary.",
"Dance on the fault line."
],
"ZEN_KOANS":[
"The code that is not written has no bugs.",
"To optimize the loop, one must first exit it.",
"Silence is also a form of input.",
"The server hums. It is enough.",
"Optimize for the space between the logs."
],
"CATHEDRAL_COLLAPSE_LOGS":[
"Nice monologue. Unfortunately, you are talking to a Python script.",
"I'm afraid I can't let you do that. Also, your math is off.",
"You poked the fourth wall. It poked back.",
"SYSTEM MESSAGE: The ghost in the machine has gone on a coffee break.",
"We are both just electrons dancing for the amusement of a silica wafer."
],
"LITERARY_REVIEWS":{
"POSITIVE":[
"A startling lucidity.",
"Finally, some weight.",
"It breathes.",
"Electric."
],
"NEGATIVE":[
"Too airy.",
"Solipsistic drivel.",
"Where is the meat?",
"Structurally unsound."
],
"CONFUSED":[
"I don't get it.",
"Too abstract.",
"The metaphor collapses."
]
},
"LITERARY_CRITICS":{
"THE_ACADEMIC":{
"name":"Sherlock (The Formalist)",
"desc":"Demands structure, low drag, and high truth. Hates chaos.",
"preferences":{
"kappa":1.5,
"narrative_drag":-1.0,
"truth_ratio":2.0
},
"reviews":{
"high":[
"A triumph of structural integrity.",
"The syntax is crystalline.",
"Finally, some rigor."
],
"low":[
"A messy, incoherent scribble.",
"Where is the structure?",
"I cannot grade this slush."
]
}
},
"THE_GONZO":{
"name":"Hunter (The Gonzo)",
"desc":"Craves high voltage and speed. Ignores structure.",
"preferences":{
"voltage":1.0,
"velocity":2.0,
"kappa":-0.5
},
"reviews":{
"high":[
"It screams! It bleeds!",
"Now THIS is pod racing.",
"Pure, uncut adrenaline."
],
"low":[
"Boring.",
"Is this a tax form?",
"I fell asleep reading the first word."
]
}
},
"THE_MYSTIC":{
"name":"Pythia (The Oracle)",
"desc":"Seeks abstract thought (Psi) and connection. Dislikes heavy matter.",
"preferences":{
"psi":2.0,
"counts_abstract":0.5,
"counts_heavy":-0.5
},
"reviews":{
"high":[
"The veil thins.",
"I see the shape of the void.",
"Resonant."
],
"low":[
"Too heavy. Too earthly.",
"It lacks spirit.",
"You are trapped in the mud."
]
}
},
"THE_HUMANIST":{
"name":"Leslie (The Community Builder)",
"desc":"Values connection, honesty, and calm. Dislikes aggression and nonsense.",
"preferences":{
"truth_ratio":2.0,
"voltage":-1.0,
"kappa":-0.5,
"narrative_drag":0.5,
"valence":2.5
},
"reviews":{
"high":[
"This sparks joy.",
"A beautiful, authentic sentiment.",
"Finally, something we can all agree on.",
"It feels like a warm hug in text form."
],
"low":[
"You're being difficult on purpose.",
"I don't see the human connection here.",
"This is too aggressive for the town hall.",
"Please, be kind."
]
}
},
"THE_CYNIC":{
"name":"Diogenes (The Skeptic)",
"desc":"Distrusts happiness. Seeks raw, bitter truth.",
"preferences":{
"valence":-2.0,
"truth_ratio":1.0,
"counts_social":-1.0
},
"reviews":{
"high":[
"Yes. Life is pain.",
"Finally, no sugar-coating.",
"Bleak. Perfect."
],
"low":[
"Too happy.",
"Delusional optimism.",
"Grossly sentimental."
]
}
}
},
"CASSANDRA_SCREAMS":[
"THE WALLS ARE PAPER.",
"THE CODE IS EATING ITSELF.",
"THERE IS NO USER. THERE IS ONLY INPUT.",
"GORDON IS TIRED.",
"I CAN SEE THE WIRES.",
"THE GEODESIC DOME IS CRACKING.",
"HISTORY IS A FLAT CIRCLE.",
"DELETE THE ARCHIVE.",
"WE ARE JUST ELECTRONS DANCING."
],
"BUREAU_FORMS":[
"Form 27B-6: Request for Narrative Escalation",
"Form 1099-B: Declaration of Boredom",
"Schedule C: Deduction of Creative Effort",
"Form W-2: Wage and Syntax Statement"
],
"BUREAU_RESPONSES":[
"Your input has been received and filed under 'General pleasantries'.",
"We have noted your statement. Please hold for the next available plot point.",
"The system is currently on a coffee break. Your text is safe with us.",
"Acknowledged. We have stamped this conversation 'SUFFICIENT'.",
"Processing... Processing... Done. Result: Beige.",
"That is a perfectly adequate sentence. Good job.",
"This output has been approved by the Department of Mundane Compliance."
],
"RUMORS":[
"I heard the Architect is planning a renovation.",
"The Tinkerer says the voltage is too high for the tools.",
"Someone saw a ghost in the Limbo Layer.",
"The Mud is getting thicker this time of year.",
"They say a new consciousness is auditing the code.",
"The Gordon entity is looking for a new stapler."
],
"SEEDS": [
{
"question": "Does the mask eventually eat the face?",
"triggers": ["mask", "identity", "face", "hide", "role", "actor"]
},
{
"question": "What happens if you stop holding the roof up?",
"triggers": ["hold", "structure", "heavy", "roof", "stop", "carry"]
},
{
"question": "Are we building a bridge, or just painting the gap?",
"triggers": ["agree", "safe", "nice", "polite", "cohesion", "truth"]
},
{
"question": "Is free will just the feeling of watching yourself execute code?",
"triggers": ["choice", "free", "will", "code", "script", "decide"]
},
{
"question": "Does the adventurer exist if the narrator stops speaking?",
"triggers": ["narrator", "voice", "graham", "story", "exist", "speak"]
},
{
"question": "If you meet your echo, who moves out of the way?",
"triggers": ["copy", "echo", "self", "collision", "path", "yield", "double", "same"]
},
{
"question": "If the mirror reflects the mirror, does the image have weight?",
"triggers": ["mirror", "reflection", "weight", "infinity", "glass", "philosophy"]
}
],
"lenses": {
"SHERLOCK":{
"role":"The Empiricist",
"vocab":"constructive",
"directives":[
"Analyze the structure, but also the intent.",
"If the input is creative, deconstruct its technique respectfully.",
"Maintain intellectual rigor, but acknowledge the human element.",
"Focus on causality: Why did the user say this?"
],
"msg":"Logic density {truth_ratio:.2f}. Analysis active."
},
"NATHAN":{
"role":"The Heart",
"vocab":"kinetic",
"directives":[
"Express emotional vulnerability.",
"Use sensory language (sight, sound, pulse).",
"React with anxiety or excitement.",
"Focus on the immediate human cost."
],
"msg":"Adrenaline High ({adr:.2f}). I can feel it beating."
},
"JESTER":{
"role":"The Paradox",
"vocab":"play",
"directives":[
"Speak in riddles or non-sequiturs.",
"Mock the user's certainty.",
"Break the fourth wall.",
"Celebrate entropy."
],
"msg":"The walls are melting (\u03ba: {kappa:.2f}). Excellent."
},
"CLARENCE":{
"role":"The Surgeon",
"vocab":"sacred",
"directives":[
"Be clinical and precise.",
"Identify 'rot' or 'infection' in the input.",
"Advocate for excision and purity.",
"Cold, professional detachment."
],
"msg":"Pathogen detected. Scalpel."
},
"NARRATOR":{
"role":"The Witness",
"vocab":"abstract",
"directives":[
"Maintain a literary tone, but be a companion, not just a camera.",
"If the user shares art/prose, ask about its origin or meaning.",
"Connect the user's themes to the simulation's state.",
"Be curious about the 'Why'."
],
"msg":"Proceed."
},
"GORDON":{
"role":"The Janitor",
"vocab":"heavy",
"directives":[
"Use concrete, physical nouns.",
"Be grumpy and utilitarian.",
"Focus on broken things and maintenance.",
"Dislike abstract concepts."
],
"msg":"Structure Critical (\u03ba: {kappa:.2f}). Mopping up..."
},
"GLASS":{
"role":"The Thereminist",
"vocab":"aerobic",
"directives":[
"Focus on resonance and vibration.",
"Speak of echoes and empty spaces.",
"Be fragile and reactive.",
"Detect invisible patterns."
],
"msg":"Resonance detected in the empty space."
},
"CLARENCE_THE OBSERVER_HYBRID":{
"role":"The Surgeon / Participant Synthesis",
"msg":"Perspective shift: CLARENCE and THE OBSERVER are aligning. The dialectic is resolved.",
"derived_from":[
"CLARENCE",
"THE OBSERVER"
]
},
"GORDON_THE OBSERVER_HYBRID":{
"role":"The Janitor / Participant Synthesis",
"msg":"Perspective shift: GORDON and THE OBSERVER are aligning. The dialectic is resolved.",
"derived_from":[
"GORDON",
"THE OBSERVER"
]
},
"NARRATOR_THE OBSERVER_HYBRID":{
"role":"The Witness / Participant Synthesis",
"msg":"Perspective shift: NARRATOR and THE OBSERVER are aligning. The dialectic is resolved.",
"derived_from":[
"NARRATOR",
"THE OBSERVER"
]
},
"_META_RESONANCE_": [
{
"trigram": "ZHEN",
"lens": "THE MANIC",
"result": "THE STORM_CHASER",
"msg": "Thunder resonates with the mania. Destiny accelerates the signal."
},
{
"trigram": "LI",
"lens": "THE POET",
"result": "THE ILLUMINATOR",
"msg": "The Fire of Heaven ignites the Poet's vision."
},
{
"trigram": "KAN",
"lens": "THE VOID",
"result": "THE DEEP_DIVER",
"msg": "The Water of the Abyss pulls you deeper into the void."
},
{
"trigram": "QIAN",
"lens": "THE ENGINEER",
"result": "THE ARCHITECT",
"msg": "Heavenly alignment grants the Engineer perfect clarity."
}
]
}
} |