glitchlings 0.10.2__cp312-cp312-macosx_11_0_universal2.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of glitchlings might be problematic. Click here for more details.
- glitchlings/__init__.py +99 -0
- glitchlings/__main__.py +8 -0
- glitchlings/_zoo_rust/__init__.py +12 -0
- glitchlings/_zoo_rust.cpython-312-darwin.so +0 -0
- glitchlings/assets/__init__.py +180 -0
- glitchlings/assets/apostrofae_pairs.json +32 -0
- glitchlings/assets/ekkokin_homophones.json +2014 -0
- glitchlings/assets/hokey_assets.json +193 -0
- glitchlings/assets/lexemes/academic.json +1049 -0
- glitchlings/assets/lexemes/colors.json +1333 -0
- glitchlings/assets/lexemes/corporate.json +716 -0
- glitchlings/assets/lexemes/cyberpunk.json +22 -0
- glitchlings/assets/lexemes/lovecraftian.json +23 -0
- glitchlings/assets/lexemes/synonyms.json +3354 -0
- glitchlings/assets/mim1c_homoglyphs.json.gz.b64 +1064 -0
- glitchlings/assets/ocr_confusions.tsv +30 -0
- glitchlings/assets/pipeline_assets.json +29 -0
- glitchlings/attack/__init__.py +147 -0
- glitchlings/attack/analysis.py +1321 -0
- glitchlings/attack/core.py +493 -0
- glitchlings/attack/core_execution.py +367 -0
- glitchlings/attack/core_planning.py +612 -0
- glitchlings/attack/encode.py +114 -0
- glitchlings/attack/metrics.py +218 -0
- glitchlings/attack/metrics_dispatch.py +70 -0
- glitchlings/attack/tokenization.py +227 -0
- glitchlings/auggie.py +284 -0
- glitchlings/compat/__init__.py +9 -0
- glitchlings/compat/loaders.py +355 -0
- glitchlings/compat/types.py +41 -0
- glitchlings/conf/__init__.py +41 -0
- glitchlings/conf/loaders.py +331 -0
- glitchlings/conf/schema.py +156 -0
- glitchlings/conf/types.py +72 -0
- glitchlings/config.toml +2 -0
- glitchlings/constants.py +59 -0
- glitchlings/dev/__init__.py +3 -0
- glitchlings/dev/docs.py +45 -0
- glitchlings/dlc/__init__.py +19 -0
- glitchlings/dlc/_shared.py +296 -0
- glitchlings/dlc/gutenberg.py +400 -0
- glitchlings/dlc/huggingface.py +68 -0
- glitchlings/dlc/prime.py +215 -0
- glitchlings/dlc/pytorch.py +98 -0
- glitchlings/dlc/pytorch_lightning.py +173 -0
- glitchlings/internal/__init__.py +16 -0
- glitchlings/internal/rust.py +159 -0
- glitchlings/internal/rust_ffi.py +490 -0
- glitchlings/main.py +426 -0
- glitchlings/protocols.py +91 -0
- glitchlings/runtime_config.py +24 -0
- glitchlings/util/__init__.py +27 -0
- glitchlings/util/adapters.py +65 -0
- glitchlings/util/keyboards.py +356 -0
- glitchlings/util/transcripts.py +108 -0
- glitchlings/zoo/__init__.py +161 -0
- glitchlings/zoo/assets/__init__.py +29 -0
- glitchlings/zoo/core.py +678 -0
- glitchlings/zoo/core_execution.py +154 -0
- glitchlings/zoo/core_planning.py +451 -0
- glitchlings/zoo/corrupt_dispatch.py +295 -0
- glitchlings/zoo/hokey.py +139 -0
- glitchlings/zoo/jargoyle.py +243 -0
- glitchlings/zoo/mim1c.py +148 -0
- glitchlings/zoo/pedant/__init__.py +109 -0
- glitchlings/zoo/pedant/core.py +105 -0
- glitchlings/zoo/pedant/forms.py +74 -0
- glitchlings/zoo/pedant/stones.py +74 -0
- glitchlings/zoo/redactyl.py +97 -0
- glitchlings/zoo/rng.py +259 -0
- glitchlings/zoo/rushmore.py +416 -0
- glitchlings/zoo/scannequin.py +66 -0
- glitchlings/zoo/transforms.py +346 -0
- glitchlings/zoo/typogre.py +128 -0
- glitchlings/zoo/validation.py +477 -0
- glitchlings/zoo/wherewolf.py +120 -0
- glitchlings/zoo/zeedub.py +93 -0
- glitchlings-0.10.2.dist-info/METADATA +337 -0
- glitchlings-0.10.2.dist-info/RECORD +83 -0
- glitchlings-0.10.2.dist-info/WHEEL +5 -0
- glitchlings-0.10.2.dist-info/entry_points.txt +3 -0
- glitchlings-0.10.2.dist-info/licenses/LICENSE +201 -0
- glitchlings-0.10.2.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_meta": {
|
|
3
|
+
"description": "Neon-drenched cyberpunk slang and techno-jargon substitutions"
|
|
4
|
+
},
|
|
5
|
+
"ally": ["runner", "chum", "crew", "partner", "associate"],
|
|
6
|
+
"augmentation": ["chrome", "implant", "mod", "upgrade", "cyberware"],
|
|
7
|
+
"car": ["hovercar", "rig", "bike", "crawler", "maglev"],
|
|
8
|
+
"city": ["sprawl", "megalopolis", "arcology", "neon grid", "stack"],
|
|
9
|
+
"computer": ["deck", "rig", "terminal", "console", "dataslate"],
|
|
10
|
+
"corporation": ["megacorp", "zaibatsu", "conglomerate", "the board", "macrocorp"],
|
|
11
|
+
"enemy": ["rival", "hunter", "corp hound", "black ice", "pursuer"],
|
|
12
|
+
"glasses": ["augvisors", "hud shades", "holo lenses", "ar specs", "smart optics"],
|
|
13
|
+
"hack": ["breach", "jack in", "backdoor", "splice", "ghost"],
|
|
14
|
+
"hacker": ["netrunner", "decker", "console cowboy", "intruder", "codebreaker"],
|
|
15
|
+
"implants": ["cyberware", "mods", "wetware", "hardware", "upgrades"],
|
|
16
|
+
"money": ["cred", "chits", "scrip", "crypto", "tokens"],
|
|
17
|
+
"network": ["grid", "matrix", "datastream", "mesh", "neuronet"],
|
|
18
|
+
"police": ["corpsec", "enforcers", "security detail", "peacekeepers", "drones"],
|
|
19
|
+
"street": ["alley", "backline", "underrun", "walkway", "sidestreets"],
|
|
20
|
+
"television": ["holovid", "feed", "streamwall", "broadcast", "vidline"],
|
|
21
|
+
"weapon": ["smartgun", "rail pistol", "hand cannon", "flechette gun", "shock baton"]
|
|
22
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_meta": {
|
|
3
|
+
"description": "Cosmic horror vocabulary drawn from Lovecraftian themes"
|
|
4
|
+
},
|
|
5
|
+
"ancient": ["eldritch", "primordial", "cyclopean", "antediluvian", "primeval"],
|
|
6
|
+
"book": ["tome", "grimoire", "codex", "forbidden text", "black book"],
|
|
7
|
+
"city": ["sunken city", "cyclopean ruin", "drowned metropolis", "forgotten port", "impossible city"],
|
|
8
|
+
"cult": ["esoteric order", "coven", "sect", "brotherhood", "obscure faith"],
|
|
9
|
+
"dream": ["nightmare", "vision", "reverie", "somnolent haze", "dreamscape"],
|
|
10
|
+
"fear": ["dread", "terror", "horror", "nameless fright", "cold panic"],
|
|
11
|
+
"fish": ["deep one", "scaled thing", "gilled horror", "abyssal spawn", "reef lurker"],
|
|
12
|
+
"monster": ["abomination", "eldritch thing", "nameless mass", "horror", "spawn"],
|
|
13
|
+
"night": ["moonless night", "voided dusk", "starless dark", "midnight", "black sky"],
|
|
14
|
+
"ocean": ["abyss", "black tide", "depths", "churning sea", "cyclopean surf"],
|
|
15
|
+
"portal": ["gateway", "rending", "breach", "threshold", "shimmering tear"],
|
|
16
|
+
"ritual": ["invocation", "rite", "ceremony", "calling", "summoning"],
|
|
17
|
+
"shadow": ["shade", "gloom", "murk", "umbra", "stalking dark"],
|
|
18
|
+
"sound": ["whisper", "chant", "ululation", "distant piping", "maddening call"],
|
|
19
|
+
"strange": ["alien", "unearthly", "uncanny", "eldritch", "inexplicable"],
|
|
20
|
+
"tentacle": ["tendrils", "appendage", "writhing limb", "coiling arm", "sucker-lined coil"],
|
|
21
|
+
"void": ["vastness", "nothingness", "outer dark", "cosmic gulf", "endless black"],
|
|
22
|
+
"whisper": ["hiss", "sibilance", "breathless murmur", "echoing susurrus", "distant call"]
|
|
23
|
+
}
|