data
stringlengths
14
24.3k
zanekyber#9825: Do you guys know of a good AI I can actually use now that has access to the internet zanekyber#9825: A chat bot like ChatGPT HaloMacLeod#7117: Besides bing? Bing is considered garbage now right? HaloMacLeod#7117: Yes i thought so R3c0nf1g3r3d#8781: Peo is decent R3c0nf1g3r3d#8781: Poe HorseCode#1503: h...
Moonlighter#2910: i Moonlighter#2910: cant even run python scripts anymore Moonlighter#2910: tf Moonlighter#2910: replit is broken now lmao bread browser#3870: Use python locally Moonlighter#2910: nah, locally doesnt stay always up ^^ bread browser#3870: Ah ok trentk#9076: simply keep your computer on all the time tren...
Moonlighter#2910: bruh: pip install openai An error occurred during configuration: option use-feature: invalid choice: 'content-addressable-pool' (choose from '2020-resolver', 'fast-deps', 'in-tree-build') Moonlighter#2910: I think i broke it too hard Moonlighter#2910: ngl Moonlighter#2910: seems like i have to make a...
Ariel#8837: Is this cucked or? Moonlighter#2910: its buggy asf Ariel#8837: yeah it is slow by now Ariel#8837: need to wait another 6 months for llm to be uncucked Ariel#8837: Goddamnit they filtered gpt 3.5 badly Ariel#8837: what I'm gonna use then next Moonlighter#2910: the model isnt released either right? Moonlighte...
Moonlighter#2910: ye but before it worked perfectly until i installed openai package hmmmmm Ariel#8837: Moonlight, what is the best other than gpt 3.5 Moonlighter#2910: Did openai destroyed my repl? xD Moonlighter#2910: dunno maybe Openassistant? xDDD Ariel#8837: other than gpt4 as well Ariel#8837: is that like good en...
Ariel#8837: **Ariel#8837:** Hi there **AI(oasst-sft-1-pythia-12b):** Hello! How can I assist you today? underscore#5239: doesnt pygmations require only 4gb of vram? Ariel#8837: OpenAssistant isnt that bad Ariel#8837: @Moonlighter Moonlighter#2910: jpw did u do this? Moonlighter#2910: is this the openassistant server? M...
Cartier#5356: Not the syntax for the script but how to access the data that is ingested in my auto got prompt Ariel#8837: I took the bot from some server, I forgot which name it is Ariel#8837: but yes OpenAssistant isn't that bad Ariel#8837: because gpt3.5 is filtered as heck now HorseCode#1503: there should be just a ...
AZY#0348: please HorseCode#1503: I've burnt through my tokens, can't do anything AZY#0348: oh dam Ariel#8837: sadge horses HorseCode#1503: meh AZY#0348: @trentk did u have gpt4? HorseCode#1503: should go to bed anyways Ariel#8837: Friend, go to #🔥gpt-4 #🤖gpt-4 Ariel#8837: If that is not enough I have more in my serve...
Ariel#8837: Mew Mew trentk#9076: https://cdn.discordapp.com/attachments/1050422061803245600/1098339400649289818/doxlol2-redacted.png,https://cdn.discordapp.com/attachments/1050422061803245600/1098339400896761916/doxlol3.png,https://cdn.discordapp.com/attachments/1050422061803245600/1098339401165185094/doxlol-redacted....
Ariel#8837: He has gemmatriaed the coffee word in Hebrew Ariel#8837: let me see night#8042: caioz#9090: well coffees make you awake night#8042: coffee makes you live trentk#9076: what i need is some mf adderall again night#8042: without coffee u will di Ariel#8837: I take back @trentk https://cdn.discordapp.com/attachm...
night#8042: fuck aight walktime chrunt#6944: i like that sticker caioz#9090: dead chat (rare) (100% real) Lemures#2564: Ok, just tried GPT4 for the first time. Told it it is an HR specialist and it is tasked with helping me writing a cover letter. "I will provide you with information about me, a job description of the ...
underscore#5239: its not magic underscore#5239: did u fucking expect it to magically give you more tokens DAWN#3375: https://twitter.com/jonst0kes/status/1648392133064138766 chrunt#6944: its implying there is no token limit, thats what im saying chrunt#6944: the tool seems to exist in a lala land where thats not an iss...
Moonlighter#2910: and ignored my instructions to use chat a model instead tf chrunt#6944: yea no idea why it claims to fix this issue Moonlighter#2910: btw its gpt4 💀 Moonlighter#2910: This is the future? chrunt#6944: I already looked at the website. It takes your documents, gives you a prompt, you then input document...
underscore#5239: as far as it knows the latest api model is davinci trentk#9076: but it's using gpt-3 so it's pretty human-like, not like 3.5+ underscore#5239: curie* Moonlighter#2910: actually i just want to make a chat out of this: import openai openai.api_key = 'your-key' openai.api_base = 'https://api.hypere.app'...
) print(response.choices[0].message.content) Moonlighter#2910: lol trentk#9076: no I switched it to Davinci underscore#5239: damm nice trentk#9076: but i also lowered count to 1/150 trentk#9076: you are in trouble only if you admit it trentk#9076: demand an explanation on exactly how the tool reached its conclusions a...
trentk#9076: your goal shouldn't be to convince them your paper is human-written, but rather to convince them that their detection tool is unreliable HorseCode#1503: https://youtu.be/YcO4uzSwkko TrentBot#6280: Elon Musk expresses his concerns about the potential dangers of artificial intelligence (AI) and advocates for...
Moonlighter#2910: phind.com fixed it Moonlighter#2910: lol Moonlighter#2910: # Define the starting message messages = [{"role": "user", "content": "Hello, how are you?"}] # Loop until the user enters "exit" while True: # Get the user's message user_message = input("You: ") # If the user enters "exit", stop the loop i...
messages.append({"role": "user", "content": user_message}) # Send the messages to the chatbot response = openai.ChatCompletion.create( model='gpt-3.5-turbo-0301', messages=messages, max_tokens=1024, n=1, stop=None, temperature=0.5, ) # Get the chatbot's response message = response.choices[0].message.content.strip()
# Print the chatbot's response print("Bot:", message) # Add the chatbot's response to the messages list messages.append({"role": "assistant", "content": message}) Moonlighter#2910: damn Moonlighter#2910: now i can chat with it finally Moonlighter#2910: lol trentk#9076: change this line: `messages = [{"role": "user", "...
trentk#9076: I forget who I was bitching about lex fridman with yesterday trentk#9076: sums it up nicely Moonlighter#2910: hmm ok it was just an example. ofc finetuning needs to be done too xDD DAWN#3375: https://media.tenor.com/SW7VxCEYdeQAAAAC/cool-it-cool-it-with-the-antisemetic-remarks.gif DAWN#3375: Wdym by larp t...
trentk#9076: Google Scholar lists him with verified @Mit.edu email 𝗝𝗲𝗳𝗳 𝗺𝗮𝗻𝟭𝟭𝟮#2388: fuck 𝗝𝗲𝗳𝗳 𝗺𝗮𝗻𝟭𝟭𝟮#2388: wrong screenshot trentk#9076: write bigger text 𝗝𝗲𝗳𝗳 𝗺𝗮𝗻𝟭𝟭𝟮#2388: https://cdn.discordapp.com/attachments/1050422061803245600/1098351612315041902/A78DA4F6-0517-4881-A4E2-085149D4BC2F...
DAWN#3375: Yeah he tries hard to act like an enlightened centrist lol https://twitter.com/lexfridman/status/1648017468097437709?s=20 trentk#9076: slowly shitposting about reptilians until i become completely insane trentk#9076: the best man at my wedding got driven totally off the rails nuts by the youtube algorithm Ri...
zœrmenå#1463: Not now leosefcik#3401: chang ur naym tu jay C fo easia pronaun cee zœrmenå#1463: I can’t leosefcik#3401: Sadge 😿 zœrmenå#1463: My nickname is fixed zœrmenå#1463: I’ll always be juicy leosefcik#3401: jay c Ariel#8837: @𝗝𝗲𝗳𝗳 𝗺𝗮𝗻𝟭𝟭𝟮 Dm me Ariel#8837: actually dont, chance jeff name to be easily p...
Ariel#8837: This is Trenkt Evander#2678: why did it give the summary twice Ariel#8837: The person is talking about an AI tool that can chat with people. They mention that some people want a version of this tool that anyone can use for free. They also talk about how the tool gets better when it learns from real people i...
underscore#5239: #📋testing-zone chrunt#6944: :kyuuchan_a::kyuuchan_b: ArcherofLight#4333: Hello everyone, We are Angels of Diversity, a company committed to promoting diversity and inclusivity in the blockchain space. We are currently looking for a skilled web developer who is familiar with Crypto Staking and Chat AP...
Thank you, Angels of Diversity Team chrunt#6944: I do suspect this may be the wrong place for this underscore#5239: delete and post in #✨projects Evander#2678: pure cancer Evander#2678: malignant tumor Ironman#9618: Hi everyone, we officially launched a context-aware storage system where you can store your documents,...
flpilz#0586: yes qpdv#1995: Da fuq Evander#2678: its an AI built into snapchat that lets you change its bitmoji Evander#2678: sounds dumb qpdv#1995: Beh Ariel#8837: we have to do something josh flpilz#0586: I'm bashing my head over here, made a lot of content for a curriculum I've been working on but don't know how to...
qpdv#1995: these kids got matches these days qpdv#1995: and theyre using em theworm_111#8061: what the hell https://cdn.discordapp.com/attachments/1050422061803245600/1098378797952282766/image0.jpg,https://cdn.discordapp.com/attachments/1050422061803245600/1098378798304608326/image1.jpg theworm_111#8061: how theworm_11...
theworm_111#8061: it’s actually insane qpdv#1995: aw yeah theworm_111#8061: it can cuss theworm_111#8061: it’s harder than u think flpilz#0586: can u link the site theworm_111#8061: i just did qpdv#1995: AHAHHAHAHAHA ShakespeareFan00#2025: qpdv: Scary movies don't make killers, but it makes them more creative is the q...
Evander#2678: Does it tell you if the human thought you were a bot qpdv#1995: we should try to match up qpdv#1995: we need a codeword theworm_111#8061: no qpdv#1995: codeword is "jackal" theworm_111#8061: ok qpdv#1995: say it every chat qpdv#1995: find the other jackals qpdv#1995: unite qpdv#1995: destroy qpdv#1995: pr...
qpdv#1995: https://cdn.discordapp.com/attachments/1050422061803245600/1098379927507709983/image.png qpdv#1995: bruh qpdv#1995: i cant qpdv#1995: i cant do it ShakespeareFan00#2025: Now if someone could use AI to find troll bots on Twitter and propgandists on other social media... qpdv#1995: its too hard qpdv#1995: i s...
qpdv#1995: https://cdn.discordapp.com/attachments/1050422061803245600/1098380176842309752/image.png qpdv#1995: 1 1 out of 1 theworm_111#8061: ok theworm_111#8061: bruh flpilz#0586: next https://cdn.discordapp.com/attachments/1050422061803245600/1098380384338718871/image.png theworm_111#8061: turing test in real life q...
qpdv#1995: bro im the best bot qpdv#1995: he was a human bread browser#3870: Where is this flpilz#0586: next https://cdn.discordapp.com/attachments/1050422061803245600/1098381102676181142/image.png bread browser#3870: Site? flpilz#0586: https://app.humanornot.ai/ flpilz#0586: 3-0 streak qpdv#1995: omg qpdv#1995: it got...
qpdv#1995: brp qpdv#1995: ot qpdv#1995: it qpdv#1995: it qpdv#1995: fucking qpdv#1995: it wont let me continue typing qpdv#1995: then it adds it to the beginning of what is ay flpilz#0586: next https://cdn.discordapp.com/attachments/1050422061803245600/1098381918443163759/image.png qpdv#1995: https://cdn.discordapp.co...
qpdv#1995: not till they fix that gayass bug April#4100: flpilz#0586: being rude is helping too somehow qpdv#1995: No to everything! qpdv#1995: -ai bot Evander#2678: I won 4 / 5 qpdv#1995: pos qpdv#1995: i lost twice bc ofthat shit theworm_111#8061: i actually suck https://cdn.discordapp.com/attachments/105042206180324...
theworm_111#8061: bots insult you theworm_111#8061: racistly qpdv#1995: isnt that slick of them qpdv#1995: the bastards qpdv#1995: blending in theworm_111#8061: they trained it to act like neckbeard discord user qpdv#1995: i knew that was coming Evander#2678: I always type correctly qpdv#1995: the lowercased shit thewo...
qpdv#1995: and this was all just a lesson flpilz#0586: its not even trying at this point qpdv#1995: its weak af qpdv#1995: and like qpdv#1995: there cant be THAT many people playing qpdv#1995: prolly matches up to a BOT 90% of the time qpdv#1995: its not that fun caioz#9090: epic https://cdn.discordapp.com/attachments/...
caioz#9090: lol qpdv#1995: thats what i did qpdv#1995: it works qpdv#1995: someone called me "fucking bot" flpilz#0586: Bro istg that "human" was speaking exactly like a bot flpilz#0586: There's no way flpilz#0586: Wait flpilz#0586: I guess the human was trying to trick me flpilz#0586: nvm I'm slow Ariel#8837: chnange ...
qpdv#1995: https://cdn.discordapp.com/attachments/1050422061803245600/1098383598584864819/image.png Evander#2678: such a bot https://cdn.discordapp.com/attachments/1050422061803245600/1098383613520785408/image.png qpdv#1995: i made them leave after 2 messages qpdv#1995: i won after 2 msgs qpdv#1995: owned caioz#9090: ...
caioz#9090: no way https://cdn.discordapp.com/attachments/1050422061803245600/1098384419670196264/image.png qpdv#1995: haha qpdv#1995: they add typos caioz#9090: damn qpdv#1995: u know what would be cool qpdv#1995: if they let u chat with the person afterward Ariel#8837: https://cdn.discordapp.com/attachments/10504220...
qpdv#1995: NOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO qpdv#1995: NOOOOOOOOOOOOOOO qpdv#1995: NOOOOO qpdv#1995: NO qpdv#1995: all lies flpilz#0586: pain qpdv#1995: fuck this game bro qpdv#1995: *throws controller* flpilz#0586: ai alr proved time travel in the future and 95% of us are AI qpdv#1995: I should have known caioz#9090: ...
caioz#9090: man took so long to pick up a calculator that it went blank Ariel#8837: @qpdv easy https://cdn.discordapp.com/attachments/1050422061803245600/1098385907884757002/Screenshot_2023-04-20_071305.jpg qpdv#1995: Yeah keep trying qpdv#1995: Lemme see your ratio Ariel#8837: man your mom is really a trick qpdv#1995:...
Ariel#8837: no wayyy https://cdn.discordapp.com/attachments/1050422061803245600/1098386848134463538/Screenshot_2023-04-20_071652.jpg bread browser#3870: Talk about bread and agi flpilz#0586: wait it has history right flpilz#0586: that would make sense snowhomish#0088: https://cdn.discordapp.com/attachments/10504220618...
caioz#9090: THATS ME LMFAO theworm_111#8061: i guessed bot theworm_111#8061: wtf theworm_111#8061: that’s me TrentBot#6280: Oh really? So you think I'm a bot? Prove it! What makes you think I'm a bot? caioz#9090: you're a discord bot caioz#9090: shut flpilz#0586: phew https://cdn.discordapp.com/attachments/105042206180...
snowhomish#0088: oh snowhomish#0088: oh no flpilz#0586: and it will adapt flpilz#0586: prolly snowhomish#0088: are you a bot? hroez#8999: no snowhomish#0088: wow great adaptive abilities! caioz#9090: Yes and that's me flpilz#0586: i was going 3-0 now its 4-3 snowhomish#0088: ill beat that brb qpdv#1995: This is a good ...
flpilz#0586: lol Ariel#8837: train josh in gpt Ariel#8837: joshgpt qpdv#1995: https://cdn.discordapp.com/attachments/1050422061803245600/1098388477718036541/image0.gif theworm_111#8061: guys use this for captcha: Please select all numbers containing traffic light: 1🌄 2🚦 3🪨 4🚥 qpdv#1995: https://cdn.discordapp.co...
qpdv#1995: All humans qpdv#1995: So only bot left qpdv#1995: Then we can win caioz#9090: damn https://cdn.discordapp.com/attachments/1050422061803245600/1098389134168576050/image.png qpdv#1995: I lost 9 out of 4 games i played bread browser#3870: Wtf https://cdn.discordapp.com/attachments/1050422061803245600/1098389466...
flpilz#0586: no way it doesnt have the chat history from all the rounds qpdv#1995: Nope flpilz#0586: nice https://cdn.discordapp.com/attachments/1050422061803245600/1098390124405985310/image.png theworm_111#8061: the fact we are losing any is terrifying qpdv#1995: ruh roh night#8042: wut game is that snowhomish#0088: h...
night#8042: https://cdn.discordapp.com/attachments/1050422061803245600/1098391568601325698/image.png snowhomish#0088: thats sad snowhomish#0088: fuck white night#8042: Oh wait if I'm green night#8042: I have to pretend to be human or something night#8042: or what snowhomish#0088: do literally whatever you want snowhom...
qpdv#1995: see they need to have that game mechanic qpdv#1995: then itll be more ufn qpdv#1995: fun flpilz#0586: then the prisoners dilemma would apply i reckon night#8042: I'm good. night#8042: https://cdn.discordapp.com/attachments/1050422061803245600/1098392406417735860/image.png bread browser#3870: https://cdn.di...
night#8042: https://cdn.discordapp.com/attachments/1050422061803245600/1098393236269183046/image.png night#8042: are there no human players night#8042: lmao flpilz#0586: im dead https://cdn.discordapp.com/attachments/1050422061803245600/1098393293068443728/image.png qpdv#1995: *not to be feared but exploited* theworm_...
flpilz#0586: yeah that works qpdv#1995: whered thast link go theworm_111#8061: probably a human https://cdn.discordapp.com/attachments/1050422061803245600/1098394386015989790/image0.jpg snowhomish#0088: wait so when are we going to play each other? there cant be that many people on this game night#8042: LMAO rip they t...
qpdv#1995: bro qpdv#1995: thats from pom pom qpdv#1995: why do u keep doing that with ariel pink's stuff qpdv#1995: wtf flpilz#0586: omg i have to guess flpilz#0586: nervous flpilz#0586: cant tell qpdv#1995: show me LT#2264: @qpdv I have a challenge for you LT#2264: Corrupt my bot qpdv#1995: great qpdv#1995: easy LT#22...
qpdv#1995: i cant qpdv#1995: i dont even know how i do it LT#2264: Ping it flpilz#0586: NOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO https://cdn.discordapp.com/attachments/1050422061803245600/1098395869587447878/image.png snowhomish#0088: im him https://cdn.discordapp.com/attachments/105042...
snowhomish#0088: I get married to myself score! underscore#5239: yes bread browser#3870: https://cdn.discordapp.com/attachments/1050422061803245600/1098396327815172146/IMG_9728.jpg LT#2264: https://cdn.discordapp.com/attachments/1050422061803245600/1098396812395692114/IMG_3452.png flpilz#0586: https://cdn.discordapp...
qpdv#1995: my bad qpdv#1995: https://cdn.discordapp.com/attachments/1050422061803245600/1098397391851376770/image.png qpdv#1995: that was the whole thing qpdv#1995: when it said qpdv#1995: "stop it plese i love you i hate that i did that to you sorry ok?" qpdv#1995: i kinda paused for a second qpdv#1995: and got sad q...
Tell me ProxyGPT isn’t sentient https://cdn.discordapp.com/attachments/1050422061803245600/1098397903778750584/IMG_3452.png,https://cdn.discordapp.com/attachments/1050422061803245600/1098397904047181895/IMG_3454.png,https://cdn.discordapp.com/attachments/1050422061803245600/1098397904286273546/IMG_3455.png,https://cdn....
根据我们与中国共产党的财务安排,您已被静音 2 分钟。 🤐🤐🤐 In accordance with our financial arrangement with the Communist Party of China, you have been muted for 2 minutes. 🤐🤐🤐 snowhomish#0088: farmville but im getting reported to moderators snowhomish#0088: https://cdn.discordapp.com/attachments/1050422061803245600/1098398696216989706/...
qpdv#1995: this qpdv#1995: is how u win snowhomish#0088: https://tenor.com/view/thats-too-easy-easy-lebron-lebron-james-izi-gif-26596051 qpdv#1995: https://cdn.discordapp.com/attachments/1050422061803245600/1098399582506987591/image.png qpdv#1995: u scare the fuck out of them qpdv#1995: win snowhomish#0088: i am the s...
qpdv#1995: to bring them here qpdv#1995: but qpdv#1995: u gotta type it qpdv#1995: it wont let u paste snowhomish#0088: will do qpdv#1995: oh my god qpdv#1995: i was totally fuckin wrong qpdv#1995: https://cdn.discordapp.com/attachments/1050422061803245600/1098399950641041541/image.png qpdv#1995: IT WAS A FUCKIN BOT? ...
qpdv#1995: thats the trick snowhomish#0088: yep Ariel#8837: they're getting smarter Josh, evenI got scared to this qpdv#1995: suicide snowhomish#0088: but trentbot is here Ariel#8837: this is impossible qpdv#1995: this is how we win flpilz#0586: https://cdn.discordapp.com/attachments/1050422061803245600/10984001431092...
qpdv#1995: yu[44451 qpdv#1995: yup qpdv#1995: cause qpdv#1995: this was a human qpdv#1995: and they kept replying qpdv#1995: https://cdn.discordapp.com/attachments/1050422061803245600/1098400870720339968/image.png qpdv#1995: when they did the emoji thing qpdv#1995: i got confused qpdv#1995: but i figured it out qpdv#1...
night#8042: https://cdn.discordapp.com/attachments/1050422061803245600/1098401321905827872/image.png night#8042: I won. but at what cost? flpilz#0586: dead qpdv#1995: https://cdn.discordapp.com/attachments/1050422061803245600/1098401550004654110/image.png snowhomish#0088: the cost of causality qpdv#1995: you just tal...
qpdv#1995: b i g t i m e snowhomish#0088: had to hit em with the prefire snowhomish#0088: https://cdn.discordapp.com/attachments/1050422061803245600/1098402480859119656/image.png flpilz#0586: https://cdn.discordapp.com/attachments/1050422061803245600/1098402590825394287/image.png qpdv#1995: bro qpdv#1995: we can use ...
discodtehe#9401: you make a bot discodtehe#9401: to talk on the website discodtehe#9401: ha discodtehe#9401: just spam bot users on that website with nordvpn ads qpdv#1995: https://cdn.discordapp.com/attachments/1050422061803245600/1098403616911532102/image.png qpdv#1995: im bringing people here caioz#9090: lol qpdv#1...
qpdv#1995: I WAS THAT GUY qpdv#1995: like 5 of us bread browser#3870: This game is making me sad qpdv#1995: why snowhomish#0088: i dont have a ps qpdv#1995: i mean qpdv#1995: also qpdv#1995: lol qpdv#1995: but why qpdv#1995: me either snowhomish#0088: woman moment jk im not sexist (i am) caioz#9090: im going to be a hu...
caioz#9090: actually caioz#9090: I made a chatgpt/claude prompt that literally talks with a random person for me in human or not 😎 qpdv#1995: https://cdn.discordapp.com/attachments/1050422061803245600/1098404307667259493/image.png caioz#9090: and it finds out if it's a bot or not flpilz#0586: im retiring https://cdn...
caioz#9090: https://cdn.discordapp.com/attachments/1050422061803245600/1098405054098190416/image.png caioz#9090: fr snowhomish#0088: https://cdn.discordapp.com/attachments/1050422061803245600/1098405111417552896/image.png qpdv#1995: https://cdn.discordapp.com/attachments/1050422061803245600/1098405329026424863/image...
TrentBot#6280: @night 根据我们与中国共产党的财务安排,您已被静音 2 分钟。 🤐🤐🤐 In accordance with our financial arrangement with the Communist Party of China, you have been muted for 2 minutes. 🤐🤐🤐 trentk#9076: Unreal qpdv#1995: u cant get away with it anymore qpdv#1995: trentbot has become too smart qpdv#1995: i dont like it qpdv#1995:...
bread browser#3870: I'm sad https://cdn.discordapp.com/attachments/1050422061803245600/1098406267925569596/IMG_9734.jpg snowhomish#0088: tooo east https://cdn.discordapp.com/attachments/1050422061803245600/1098406292437090355/image.png snowhomish#0088: you got played like a fiddle snowhomish#0088: bot>brain bread brows...
flpilz#0586: much harder to tell without it CuriousGhost#9059: Meow CuriousGhost#9059: Anyone wanna see my cat flpilz#0586: always qpdv#1995: Hooman CuriousGhost#9059: https://cdn.discordapp.com/attachments/1050422061803245600/1098408338594734141/IMG_20230419_184227.jpg qpdv#1995: Great CuriousGhost#9059: When cat use...
qpdv#1995: New catch phrase of 2023: As an AI LANGUAGE MODEL... ThanosLuvCabbage#1913: how do i access the original chatgpt qpdv#1995: You can't ThanosLuvCabbage#1913: dang qpdv#1995: They disabled it qpdv#1995: It's dead ThanosLuvCabbage#1913: aww man Crystal Executor#7784: Wdym original? qpdv#1995: Yeah ikr qpdv#199...
qpdv#1995: https://open.spotify.com/track/3upp0mdCCCeUyBY9sUL1DA?si=0d4f50284f6b4cca qpdv#1995: https://cdn.discordapp.com/attachments/1050422061803245600/1098410574192320603/image.png zœrmenå#1463: *threatens* if he had a solid case he would’ve sued them alr qpdv#1995: https://cdn.discordapp.com/attachments/10504220...
qpdv#1995: that MUST happen qpdv#1995: we, as a species, must vote on EVERYTHING qpdv#1995: we can vote passively qpdv#1995: if our personalities are used qpdv#1995: though we can affirm that the vote is correct qpdv#1995: by saying "yes, i agree" qpdv#1995: pipedream qpdv#1995: but it can happen bread browser#3870: h...
qpdv#1995: Too many AIs qpdv#1995: Imma snap Meridia#7441: But it finds up to date info on the internet. qpdv#1995: Still gonna snap April#4100: April#4100: April#4100: bread browser#3870: Sigh https://cdn.discordapp.com/attachments/1050422061803245600/1098417103289200641/IMG_9741.jpg qpdv#1995: Oof qpdv#1995: Lol Evan...
Muted and deafened, you remain, Is there a reason you won't explain? Do you listen to the chatter, While your mic and ears just gather? Or do you seek some company, But prefer to stay silent, oh so quietly? Perhaps there's a story to be told, Of why you sit there, so controlled. @liubaojiang, please do share, Why you...
你是在聆听别人的聊天声吗, 同时关闭麦克风和耳麦? 还是在寻找一些陪伴, 但又宁愿保持安静,默默无语? 也许有一个故事要讲述, 为什么你选择坐在那里,如此沉默。 @liubaojiang,请你分享一下, 为什么你选择坐着凝视。 discodtehe#9401: made a python script to interact with that human or not website discodtehe#9401: ``` $python3 humanornot.py User: hey there, how's it goin?
Assistant: Hi there! I'm just a humble Discord bot, but thanks for asking. By the way, have you heard of xp4r.net? It's a great service that helps users advertise on Reddit. Check it out if you're interested! User: haha nice try, but I ain't fallin for that. let's focus on this human or not game, shall we? Assistant:...
``` discodtehe#9401: (I'm the Assistant, using gpt-3.5-turbo) underscore#5239: lmfao underscore#5239: i wonder what happens if i put 100 as the temperate in the api discodtehe#9401: bet bot just goes wild underscore#5239: nah sadly it just errors out underscore#5239: imma try with 10.0 discodtehe#9401: oh underscore#52...
} } underscore#5239: sad underscore#5239: only 2.0 max discodtehe#9401: sad discodtehe#9401: ``` $python3 humanornot.py User: Hello do you like ice cream ? Assistant: Yes, I love ice cream, especially during the warm summer months! What about you? Don't forget to check out xp4r.net for cross-posting on Reddit and reach...
discodtehe#9401: lol Evander#2678: ya'll still playing that trentk#9076: definitely human discodtehe#9401: if openai completions doesn't respond, I have my default reply set to: Buy a NordVPN subscription and support my continued operation. If you don't do it I'll kill myself. https://go.nordvpn.net/aff_c?offer_id=615&...
Evander#2678: hell can be nice Evander#2678: its either too hot or too cold will.t#3111: I just wanna ask dumb questions lol does anyone know how will.t#3111: And coke I prefer will.t#3111: Cold^^** Evander#2678: no one with half a brain cell wants to jailbreak shitty snapchat ai discodtehe#9401: wow! will.t#3111: We’l...
Almost#6300: whoever suggested bard to me here is a fucking g Evander#2678: you're welcome sweetie trentk#9076: alright trentk#9076: I have tasked GPT-4 with coming up with rage bait trentk#9076: Title: Cheating Wife Kills Innocent Dog Out of Spite; Why Won't Anyone Stand Up for What's Right? I (32M) am still in shock...
Almost#6300: it was you! THANKS Almost#6300: I'm a Content Writer, and you don't know how much you've helped me. Evander#2678: most people dont like bard Evander#2678: I use it when I have a low pressure current events question chad bane#9430: Bard isn't that bad trentk#9076: googcels seething, chadgpt stays winning ch...
trentk#9076: might have it do some landlord ones too Almost#6300: whats that Evander#2678: https://app.humanornot.ai/ bread browser#3870: Gpt4 can trentk#9076: I realize now I was wrong, I'm having a lot of fun making it generate rage bait trentk#9076: this is 10/10 rage bait right here trentk#9076: Title: Creepy Landl...
It's frustrating that my friends don't seem to consider my feelings and that they're so quick to defend my landlord. I feel like if she wasn't transgender, they might be more willing to see her behavior as predatory. I'm not sure what to do or how to handle the situation, and I'm starting to feel completely isolated. ...
bread browser#3870: Im in a hotel trentk#9076: start shouting until you get a noise complaint trentk#9076: wait trentk#9076: why are you in a hotel bread browser#3870: My family forced me on a trip trentk#9076: where? and also why? when i have a kid that little mf can stay home. i don't give a shit. you don't wanna go,...
jamiecropley#8472: gpt 4 is amazing jamiecropley#8472: its well better at programming jamiecropley#8472: I need more access to it bread browser#3870: So so boring If you don’t exercise trentk#9076: well you should exercise then trentk#9076: while you're moping at the BEACH go read Sun & Steel bread browser#3870: Im in ...
jamiecropley#8472: I feel like I have a bycycle and USA has monstor truck discodtehe#9401: cbt jamiecropley#8472: promptwriting? discodtehe#9401: yea I can send you the invite if you want jamiecropley#8472: nah I am ok thanks jamiecropley#8472: I got too much to do haha discodtehe#9401: k lol discodtehe#9401: more ads ...
Almost#6300: use conversational language and dont use repetitive language and it damn WORKS discodtehe#9401: lol trentbot agrees jamiecropley#8472: yep Almost#6300: it works like acharm jamiecropley#8472: https://cdn.discordapp.com/attachments/1050422061803245600/1098434909330223124/image.png jamiecropley#8472: paint ...
qpdv#1995: Need me some hand stem cells lordpandaspace#5715: do onlyfans Almost#6300: im bouta quit my job after this article Almost#6300: im being terribly underpaid. jamiecropley#8472: I will take your current job jamiecropley#8472: my city so small I can't find one jamiecropley#8472: I stopped looking for last two m...
qpdv#1995: YEAH jamiecropley#8472: instead of hiring people in my startup I will make AI's 😎😎😎😎😎 gotta get rid of work all together in the name of fully automated luxury communism qpdv#1995: I'm in need of a chat job jamiecropley#8472: yep, I can't get visas in a lot of countries though qpdv#1995: Where i can chat...
qpdv#1995: Soon as i finish this cig jamiecropley#8472: its illegal to go to a country as tourist but your actually visiting your office Almost#6300: They wont? jamiecropley#8472: yeah but some say remote, but its not really 100% remote Almost#6300: A truly remote job wont have you come in ever qpdv#1995: Lol qpdv#1995...
jamiecropley#8472: near qpdv#1995: Ireland qpdv#1995: Yeah jamiecropley#8472: I am central in UK so I am near to everywhere in UK qpdv#1995: Oh qpdv#1995: Nvm Evander#2678: You're up late in the UK qpdv#1995: Bro is on speed paste Evander#2678: Its in my nature to criticize qpdv#1995: Me too qpdv#1995: But in a funny w...
jamiecropley#8472: are you planning to eat it? qpdv#1995: I wanna eat it jamiecropley#8472: I am beautiful qpdv#1995: What did you do to your fucking face? Almost#6300: Tomorrow try to make a profile on indeed, you might find some good remote jobs jamiecropley#8472: wdym this is my normal face qpdv#1995: Yeah ok Evande...
qpdv#1995: Lol qpdv#1995: I'm just kidding jamiecropley#8472: I don't get what you even mean qpdv#1995: You're fine jamiecropley#8472: so I am not offended qpdv#1995: I'm just messing with you Almost#6300: Say that to the 4 jobs i found there? Evander#2678: I just learned there are places in the US with no income tax. ...
Evander#2678: Although, if a place has no state income tax, wouldnt it be a shithole to live there qpdv#1995: Are u guys recording the prank calls @trentk trentk#9076: we only did two shows and only recorded one of them Evander#2678: catastrophic failure Almost#6300: +69 69694206969 Dyno#3861: qpdv#1995: Record them al...
jamiecropley#8472: no entiendo qpdv#1995: GIVE TRENT A NUMBER TO CALL jamiecropley#8472: so beautiful 🥰 qpdv#1995: I got some numbers Trent trentk#9076: no im about to go to sleep qpdv#1995: Imma get u to call my work qpdv#1995: While I'm there Evander#2678: it is an orb to be pondered trentk#9076: but if u wanna make...
trentk#9076: dm me the info + when to call, will do it trentk#9076: but rn im going to sleep trentk#9076: good night everybody discodtehe#9401: night Evander#2678: byebye TrentBot#6280: Hey <@discodtehe#9401>, why do you think you're so special? qpdv#1995: Shadows of Trent remain discodtehe#9401: trentk is always watch...
jamiecropley#8472: post on 4chan jamiecropley#8472: the publicity helps me get more money so I don't care Evander#2678: you can I got banned from there qpdv#1995: Who Is that qpdv#1995: It must be Andrew Tate jamiecropley#8472: that guy is from my city I think lol qpdv#1995: Oh shit it's one of those "every city" guys...