Set seed to 1

This commit is contained in:
Anthony Wang 2024-02-05 21:04:17 -05:00
parent 91c315319a
commit 1ca92f001a
Signed by: a
SSH key fingerprint: SHA256:B5ADfMCqd2M7d/jtXDoihAV/yfXOAbWWri9+GdCN4hQ

View file

@ -4,12 +4,12 @@ import sys
import requests
options = [
("genre", ["comedy", "romance", "mystery", "action", "horror", "dystopia", "isekai", "twitter thread", "post-postmodernism", "limericks"]),
("genre", ["comedy", "romance", "mystery", "action", "horror", "dystopia", "isekai", "ultra-long twitter thread with each paragraph as its own tweet", "post-postmodernism", "a poem composed of 20 limericks"]),
("protagonist", ["pirate ninja Daoist monk movie star", "\"the chosen one\"", "triple agent", "nobody", "talking, walking llama", "ultra kawaii anime catgirl", "benevolent dictator for life", "CPU", "Harry Potter's middle finger", "the fourth wall"]),
("name", ["Sora (female name)", "Trump", "Robert Tarjan", "Mao Zedong", "Kevin", "Pema", "Elon Musk's mommy", "Linux kernel v4.2.0 codenamed Paranoid Penguin", "Benq", "actually they don't have a name"]),
("protagonist personality", ["narcissistic and obsessed with selfies", "super annoying and about to make everyone tear their ears off", "bubbly and overuses anime slang", "yandere", "severely overcaffeinated", "reclusive and plays Conway's Game of Life all day", "really, really, really weird, like seriously really weird", "nihilistic but also a ramen enthusiast", "JSON-centric and machine-parseable", "too busy with configuring X11 to bother having a personality"]),
("name", ["Sora (female name)", "Trump", "Ennui", "Mao Zedong", "Kevin Chen (#2, not Kevin Chen #1)", "Pema", "Elon Musk's mommy", "Linux kernel v4.2.0 codenamed Paranoid Penguin", "Benq", "actually they don't have a name"]),
("protagonist personality", ["narcissistic and obsessed with selfies", "super annoying and about to make everyone tear their ears off", "bubbly and overuses anime slang", "cringy yandere", "severely overcaffeinated", "reclusive and plays Conway's Game of Life all day", "really, really, really weird, like seriously really weird", "nihilistic but also a ramen enthusiast", "JSON-centric and machine-parseable", "too busy with configuring X11 to bother having a personality"]),
("companion", ["Kelvin the memelord", "the rapper formerly known as Kanye", "a really obese marmot who can also do brain surgery", "Randall Munroe", "Paimon from Genshin Impact after plastic surgery", "Hatsune Miku and the Boston Bombers", "your crazy insane spirit animal", "Pikachu with a buzz cut", "the entire teenage population of Taiwan", "that voice in your head that you can't get away from"]),
("location", ["St. Louis, Missouri", "Okinawa", "Tiananmen Square", "MIT", "Madagascar", "the Mariana Trench", "the Mongol Empire", "the day after the fair", "the internet", "all over the entire freaking Earth"]),
("location", ["St. Louis, Missouri", "Okinawa", "Tiananmen Square in 1989", "on top of the MIT Great Dome", "Madagascar, where all the penguins live", "the Mariana Trench on a blue moon", "the Mongol Empire", "the day after the fair", "the internet", "all over the entire freaking Earth"]),
("tool", ["a portable nuke that you bought on eBay", "a deflated soccer ball", "Microsoft Excel", "the power of friendship", "a DVD of Spirited Away", "Fermat's Last Theorem", "a katana made out of bread", "a qubit that doesn't even work because it's not 2040 yet", "Mark Zuckerberg's skull", "your brain and only your brain"]),
("mission", ["achieving inner peace", "downloading Genshin Impact on a 10kbps internet connection", "decreasing your IQ", "brainwashing kids with the Zen of Python", "posting your Social Security number on Facebook", "winning the International Olympiad in Informatics", "microwaving styrofoam", "experiencing Xinjiang like a genocide victim", "getting impeached twice", "learning to walk"]),
("arch-nemesis", ["Joe Biden", "the Higgs Boson", "cupcake wrappers", "the sun", "procrastinating", "the website Stack Overflow", "your BMI", "the Taiwanese Communist Party", "Canada's most loved author but there's a running joke that none of the characters can ever remember her name", "yourself"]),
@ -30,7 +30,7 @@ for i in options:
c = inp
prompt += i[0] + ": " + c + "\n"
prompt += "\nSure! Here's the extremely long and detailed 2468-word book you requested:\n\n"
r = requests.post("http://boss-baby:8080/completion", json={"prompt": prompt, "temperature": 1.0, "repeat_last_n": 1024, "stream": True}, headers={"Authorization": "Bearer 12345"}, stream=True)
r = requests.post("http://boss-baby:8080/completion", json={"prompt": prompt, "temperature": 1.0, "repeat_last_n": 1024, "seed": 1, "stream": True}, headers={"Authorization": "Bearer 12345"}, stream=True)
r.encoding = 'utf-8'
for chunk in r.iter_lines(decode_unicode=True):
if chunk != "":