data
stringlengths
14
24.3k
YuraSuper#6636: thats bad YuraSuper#6636: its not my site... YuraSuper#6636: i used liveoverflow's code YuraSuper#6636: i dont even know how to use flask takagiso#0395: Excuse me, anyone here cannot access to ChatGPT's account? underscore#5239: ||chatgpt down|| underscore#5239: me when trentbot down takagiso#0395: omg ...
TrentBot#6280: ***Nobody here works for OpenAI*** Go ask the real employees here: discord.gg/openai https://cdn.discordapp.com/attachments/1050422061803245600/1101863366999425214/IS-CHATGPT-DOWN.mp3 Moonlighter#2910: is chatgpt up YuraSuper#6636: wtf is with text https://cdn.discordapp.com/attachments/1050422061803245...
Moonlighter#2910: lmao YuraSuper#6636: yes it does underscore#5239: its worth it, and if u use a free api it doesnt even matter YuraSuper#6636: i dont use stolen keys Moonlighter#2910: same YuraSuper#6636: i do have them, but i dont use underscore#5239: not stolen keys, reverse proxies underscore#5239: lmao YuraSuper#6...
Moonlighter#2910: https://tenor.com/view/hello-gif-25645320 YuraSuper#6636: well i guess openai still gets the money so YuraSuper#6636: i think i can use that aquaman#9792: #💬general can anyone explain me how the imagebot works Moonlighter#2910: ye its free and theyve dalle api too now YuraSuper#6636: wait a minute Yu...
YuraSuper#6636: uwu take my money openai Moonlighter#2910: ill sent you the anoument message via dm underscore#5239: https://cdn.discordapp.com/attachments/1050422061803245600/1101865769903591535/IMG_20230320_110949-1.jpg YuraSuper#6636: wait i can use bard? YuraSuper#6636: how underscore#5239: yeah underscore#5239: /...
YuraSuper#6636: take my monew dady uwu YuraSuper#6636: but ill note that i can use that Moonlighter#2910: Dunno if they are really gonna use this leaked keys but it was an option Moonlighter#2910: I hope they dont lol YuraSuper#6636: agree underscore#5239: they wont underscore#5239: did u see the announcement Moonlight...
b4#1255: wdym YuraSuper#6636: it was b4 b4#1255: yeah before YuraSuper#6636: wait i mean YuraSuper#6636: "b4" YuraSuper#6636: two letters Moonlighter#2910: lmao underscore#5239: ikr its not like cringechat3.5 YuraSuper#6636: its not cringe qwq YuraSuper#6636: its nice at roleplay... 😢 underscore#5239: thats why i said...
underscore#5239: completely unfiltered, less boilerplate YuraSuper#6636: davinci cooler and uncensored underscore#5239: more customizable YuraSuper#6636: gpt 3.5 cheaper Moonlighter#2910: oh Moonlighter#2910: interesting Moonlighter#2910: but its a text model? YuraSuper#6636: gpt 3.5 is a text model too Moonlighter#291...
Moonlighter#2910: gpt3.5 can remember past convos but can davinci 003 do this too? YuraSuper#6636: its still text model at its core (very deep, but still has a text model) underscore#5239: ofc it can Moonlighter#2910: hmmmmmmm underscore#5239: yeah ik YuraSuper#6636: if u do it right DAWN#3375: It's a benefit if you li...
#openai.api_base = "HEHEHEHEHE FREE HEHEHEHE" # 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 if user_message.lower() == "exi...
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}) ``` underscore#5239: still not as cheap as gpt3.5 qpdv#1995: Money vapor underscore#5239: but insanely cheap qpdv#1995: Smells good Moonlighter#2910: ill tr...
YuraSuper#6636: HEHEHHEHEHEHEHHEHEHEHEHEHHEHHEHEHHEHHEHEHHEHHEHHEHEEHEHEHHEHHEHEHEHEHHEHEHEHHEHHEEHHEHEH YuraSuper#6636: sry Moonlighter#2910: hehehehehehehe DAWN#3375: We need to add clash royale emotes DAWN#3375: https://tenor.com/view/clash-royale-heheheha-grrr-emote-king-gif-24764224 Moonlighter#2910: lmao YuraSupe...
YuraSuper#6636: promt: '''You are a site that can be browsed around infinitely. Generate a html page corresponding to prompt "{{URL_PATH}}". Do not add links. ''' underscore#5239: shit prompt lol YuraSuper#6636: make me a better one Moonlighter#2910: lol YuraSuper#6636: i am not an expert (tho pandy says i am) Moonligh...
underscore#5239: so it knows its html YuraSuper#6636: ok ill try that Moonlighter#2910: \n? b4#1255: ** ** underscore#5239: _ _ b4#1255: (Please pay $20 to unlock this message.) - EA YuraSuper#6636: yeah i think YuraSuper#6636: @b4 ? YuraSuper#6636: why are u b4 b4#1255: ? leosefcik#3401: https://tenor.com/view/meme-ta...
> ) > File "<stdin>", line 1 > ) > >>> ) > File "<stdin>", line 1 > ) > >>> ) > File "<stdin>", line 1 > ) > IndentationError: unexpected indent > > code: > >
```python import openai openai.api_key = "KEY" #openai.api_base = "FREE HUHEHEHEHE" # 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 if user_message.lower() == "exit": break # Send the messages to the chatbot response = openai.Completion.create( model="text-davinci-003", prompt=user_message, 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: bruh leosefcik#3401: YuraSuper#6636: the infinite site thing is just a leftover from where it had links b4#1255: math class be like underscore#5239: ofc it does b4#1255: :a_skull: underscore#5239: even with links, that is useless leosefcik#3401: :lebka: YuraSuper#6636: not really YuraSuper#6636: it ma...
leosefcik#3401: skull issues :skullium: leosefcik#3401: lebečné potíže YuraSuper#6636: ok i cant say anything to that b4#1255: dovednostní potíže Translator#2653: Moonlighter#2910: bruh whats wrong with visual code 💀 Moonlighter#2910: ill try replit chrunt#6944: WizardLM is pretty good Translator#2653: chrunt#6944: i ...
b4#1255: Thank You for visiting our page! Have a nice day 🙂 ÂÂÂÂ 💀 YuraSuper#6636: i only use 0 for davinci YuraSuper#6636: https://cdn.discordapp.com/attachments/1050422061803245600/1101872868473704498/image.png underscore#5239: set frequency penalty and presence penality to 0.0 leosefcik#3401: aa samalumadumaluma ...
Moonlighter#2910: lol underscore#5239: only when u restart it underscore#5239: now what is it showing (for scientific purposes) Moonlighter#2910: wait, when i push this button, it resets the ip?: https://cdn.discordapp.com/attachments/1050422061803245600/1101873603802308699/Screenshot_2023-04-29_151158.png tawin1212#39...
underscore#5239: https://cdn.discordapp.com/attachments/1050422061803245600/1101874206880305172/IMG_20230326_183538-2.jpg underscore#5239: lol Moonlighter#2910: here aint reddit lol YuraSuper#6636: i would actually try making temperture higher if it didnt work well YuraSuper#6636: but thanks anyway tawin1212#3936: ht...
underscore#5239: try it YuraSuper#6636: i did try it YuraSuper#6636: on sbgpt underscore#5239: smh stop spamming this shit YuraSuper#6636: worked.... nice YuraSuper#6636: sbgpt on temerture 2 https://cdn.discordapp.com/attachments/1050422061803245600/1101874735089975336/firefox_Y2pOnh7Qgu.png underscore#5239: I KNOW BU...
underscore#5239: just set it at the start underscore#5239: lol tawin1212#3936: Does ChatGPT is Lying to you? https://cdn.discordapp.com/attachments/1050422061803245600/1101875079257796759/image.png YuraSuper#6636: to davinci, all is system prompt underscore#5239: it has it in the system preprompt underscore#5239: yeah ...
underscore#5239: = cheap YuraSuper#6636: not cheap YuraSuper#6636: u need 5000 tokens to get one cent YuraSuper#6636: its fucking expensive underscore#5239: 5k tokens is a lot underscore#5239: and its still cheap af YuraSuper#6636: no it isnt YuraSuper#6636: its 3/4 of a word (approx) b4#1255: https://platform.openai.c...
underscore#5239: stop trolling YuraSuper#6636: > This translates to roughly ¾ of a word (so 100 tokens ~= 75 words) YuraSuper#6636: @trentk can u please do something about this dud YuraSuper#6636: hes interrupting the flow of chat YuraSuper#6636: its bad lordpandaspace#5715: mew mew underscore#5239: agree YuraSuper#663...
YuraSuper#6636: prefix the generation with "\nAI: " lordpandaspace#5715: nice Moonlighter#2910: Hola, ¿qué pasa? Moonlighter#2910: like this? print("\nAI:", response) YuraSuper#6636: u need to prefix __GENERATION__ with that Moonlighter#2910: Sí, sí YuraSuper#6636: when your generating response YuraSuper#6636: i write ...
YuraSuper#6636: people are cool YuraSuper#6636: lov people lordpandaspace#5715: rip joe budden YuraSuper#6636: so cool underscore#5239: yep Moonlighter#2910: uhm Moonlighter#2910: dunno where underscore#5239: bruh underscore#5239: 0iq Moonlighter#2910: lmao gpt3.5 is much easier ngl YuraSuper#6636: u see dis? https://c...
leosefcik#3401: joo bidin. jOo bidi, this message from Mohammad Kalakeen, full face of Kurdistan folj you, joo bidin,. You have,, vyou hav 2 yeal. Youl lieve is, 2 yeal. Then 1 yeal. Then 6 mohthns. after this one u pass aweh. YuraSuper#6636: oh wait no YuraSuper#6636: nonononn YuraSuper#6636: @Moonlighter YuraSuper#6...
YuraSuper#6636: @Moonlighter can u give me the code i dont want to explain how to do all of dis Moonlighter#2910: u mean text? Moonlighter#2910: wait YuraSuper#6636: yes Moonlighter#2910: ```python import os import openai openai.api_key = os.environ['OPENAI_KEY'] openai.api_base = os.environ['base_key'] def generate...
prompt=prompt + "\nAI: ", temperature=0.5, max_tokens=1024, top_p=1, frequency_penalty=0, presence_penalty=0, stop=None, ) return response.choices[0].text.strip() while True: prompt = input("You: ") response = generate_response(prompt) print("AI:", response)
``` YuraSuper#6636: one sec YuraSuper#6636: ```python import os import openai openai.api_key = os.environ['OPENAI_KEY'] openai.api_base = os.environ['base_key'] def generate_response(prompt): response = openai.Completion.create( engine="text-davinci-003", prompt=prompt + "\nAI: ", temperature=0.5,
max_tokens=1024, top_p=1, frequency_penalty=0, presence_penalty=0, stop="User:", ) return response.choices[0].text.strip() prompt = "" while True: prompt += "\nUser: " prompt += input("You: ") response = generate_response(prompt) print("AI:", response)
prompt += response``` underscore#5239: add py before it underscore#5239: for syntax highlighting YuraSuper#6636: did a diffrent way YuraSuper#6636: \`\`\`python underscore#5239: ik underscore#5239: py is easier Moonlighter#2910: so ``` py underscore#5239: no space underscore#5239: \`\`\`py YuraSuper#6636: geez these ne...
openai.api_key = os.environ['OPENAI_KEY'] openai.api_base = os.environ['base_key'] def generate_response(prompt): response = openai.Completion.create( engine="text-davinci-003", prompt=prompt + "\nAI: ", temperature=0.5, max_tokens=1024, top_p=1, frequency_penalty=0, presence_penalty=0, stop="User:",
) return response.choices[0].text.strip() prompt = "" while True: prompt += "\nUser: " prompt += input("You: ") response = generate_response(prompt) print("AI:", response) prompt += response ``` YuraSuper#6636: love that Moonlighter#2910: like this? underscore#5239: these arent newlol
Moonlighter#2910: bro underscore#5239: i have like discord from 3 years ago Moonlighter#2910: whats the difference now? underscore#5239: and it renders it YuraSuper#6636: im jk YuraSuper#6636: its github flavored markdown if im not mistaken Moonlighter#2910: it renders the same? it just shortens this python = py ? Yura...
YuraSuper#6636: yeah its generic Moonlighter#2910: now it works Moonlighter#2910: but where is the . coming from? YuraSuper#6636: it doesnt YuraSuper#6636: u just think it does because it completed ur prompt Moonlighter#2910: lmao YuraSuper#6636: thats where the . coming from YuraSuper#6636: and new lines YuraSuper#663...
~~~ YuraSuper#6636: but it doesnt Moonlighter#2910: I think ill be better off using this instead: gpt3.5 ```py # 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 u...
break # Add the user's message to the messages list 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: Much easier YuraSuper#6636: BRO CANT U JUST COPY ...
YuraSuper#6636: https://discord.com/channels/1050422060352024636/1050422061803245600/1101879321804669169 Moonlighter#2910: oh YuraSuper#6636: https://discord.com/channels/1050422060352024636/1050422061803245600/1101879321804669169 Moonlighter#2910: lol Moonlighter#2910: didnt saw it sorry xD YuraSuper#6636: excuse me Y...
YuraSuper#6636: find the imposter https://cdn.discordapp.com/attachments/1050422061803245600/1101882125780779100/image.png YuraSuper#6636: wdym player bla bla Moonlighter#2910: this: raised an exception: AttributeError: 'YouTube' object has no attribute 'player_response' But it worked before and sometimes out of the b...
𝗝𝗲𝗳𝗳 𝗺𝗮𝗻𝟭𝟭𝟮#2388: tent k Moonlighter#2910: ik 𝗝𝗲𝗳𝗳 𝗺𝗮𝗻𝟭𝟭𝟮#2388: 😡 𝗝𝗲𝗳𝗳 𝗺𝗮𝗻𝟭𝟭𝟮#2388: trankt k Moonlighter#2910: lmao 𝗝𝗲𝗳𝗳 𝗺𝗮𝗻𝟭𝟭𝟮#2388: Trent k 𝗝𝗲𝗳𝗳 𝗺𝗮𝗻𝟭𝟭𝟮#2388: 😊 YuraSuper#6636: wwong YuraSuper#6636: its twentk YuraSuper#6636: uwu nya YuraSuper#6636: good night yall t...
YuraSuper#6636: aww thanks trentk YuraSuper#6636: i appreciate that YuraSuper#6636: uwu Can_xvv#9170: 🤬 chrunt#6944: print the actual response chrunt#6944: youtube could be returning some other kind of api response chrunt#6944: and your code might not be handling it Moonlighter#2910: no no, its not the official yt api...
from youtube_transcript_api import YouTubeTranscriptApi, NoTranscriptFound, TranscriptsDisabled from pytube import YouTube ``` Can_xvv#9170: /turkey Can_xvv#9170: Started a thread. chrunt#6944: can you make a simple reproducible code snippet of just the issue and share it? Can_xvv#9170: can you make a simple reproducib...
Can_xvv#9170: buyuk ı var küçükde var? Can_xvv#9170: bırı meraba desın Moonlighter#2910: u mean Can_xvv#9170: wednesday Can_xvv#9170: aw denz denz denz Moonlighter#2910: a full dc bot? Moonlighter#2910: hmmm Moonlighter#2910: ok Can_xvv#9170: ne? Can_xvv#9170: 你從哪來 Can_xvv#9170: 麥庫克 ❤️ Can_xvv#9170: 哇海 Can_xvv#9170: WW...
Can_xvv#9170: I LOVE WORLD Can_xvv#9170: ❤️ Ariel#8837: @discodtehe when the gpt4 is down https://cdn.discordapp.com/attachments/1050422061803245600/1101887654372593685/20230429_230712.jpg chrunt#6944: have you notice it happens for some videos and not others? chrunt#6944: since you say it only occasionally happens Moo...
chrunt#6944: :detective: Moonlighter#2910: but its supposed to work on both? wait ill send code chrunt#6944: it si chrunt#6944: is i know trentk#9076: https://cdn.discordapp.com/attachments/1050422061803245600/1101891222836084777/image.png Moonlighter#2910: https://cdn.discordapp.com/attachments/1050422061803245600/1...
chrunt#6944: oh you are wanting the public to use the bot too though right chrunt#6944: i wonder how expensive that does actually get for the popular bots trentk#9076: honestly I can't imagine it's very expensive trentk#9076: the challenge seems to be more about doing things efficiently than just a hardware issue Moonl...
trentk#9076: yeah like rn all of trentbot is just running locally trentk#9076: I'm going to migrate it to google cloud vps chrunt#6944: oh shit is it really? thats cool chrunt#6944: is it still decent or has it gone :dankKEK: trentk#9076: wdym chrunt#6944: well is it running a local llm trentk#9076: oh, llms no chrunt#...
cyb3rshark7#8994: why cant i use chat gpt? cyb3rshark7#8994: its loading forever yoloswagzilla#1176: Hello hing! Where and how are you using ChatGPT? cyb3rshark7#8994: https://chat.openai.com/ cyb3rshark7#8994: and hello chrunt#6944: the pytube docs seem kinda shit ngl, trying to find out what form the YouTubeMetadata ...
chrunt#6944: Im wondering if that part of you code which looks at the player_response has ever worked, looking at code examples online it looks different to that ```python elif transcript.language_code == yt.player_response['videoDetails'][ 'languageCode']: primary_transcript = transcript ``` chrunt#6944: Is there anot...
trentk#9076: let me know if it works well, I haven't done much code translation with GPT-4 but I tried it on Github Copilot and was very unimpressed DAWN#3375: You got access to the 32k model? DAWN#3375: I don't think they're giving out access to that one trentk#9076: 👀 yoloswagzilla#1176: @DAWN just did! yoloswagzill...
DAWN#3375: It's the 8k model yoloswagzilla#1176: you're about to crush my dreams im going to test and see if i can trentk#9076: @yoloswagzilla as you using "gpt-4" or are you using "gpt-4-32k"? trentk#9076: "gpt-4" is just 8k context yoloswagzilla#1176: its the gpt-4-32k im going to test trentk#9076: 👀 yoloswagzilla#1...
yoloswagzilla#1176: thats like the holy grail chrunt#6944: I didnt, my suspicion is that very few people have been given access so far chrunt#6944: maybe they are encountering lots of issues they need to fix :Shrug: yoloswagzilla#1176: or maybe too many people are getting rich ⃟⃟⃟⃟⃟⃟#6257: playground I think chrunt#694...
cyb3rshark7#8994: ok chrunt#6944: isnt there a guy with a server who has access to 32k gpt 4 chrunt#6944: is it the discordtehe guy or something like that chrunt#6944: made a bot called catgpt or something? chrunt#6944: was that 32k gpt 4? chrunt#6944: :Shrug: use that olaf#1536: how would i type this into chat gpt htt...
underscore#5239: yep chrunt#6944: oh :PauseChamp: discodtehe#9401: No it’s catnip remember discodtehe#9401: :cat_bright: chrunt#6944: didnt know there was a sneaky way to get access to such things b4#1255: FIND chrunt#6944: i like your colourful cat emotes DAWN#3375: He secretly works for one of the FAANGs b4#1255: :ca...
b4#1255: https://tenor.com/view/not-funny-didnt-laugh-gif-14688388 underscore#5239: Success b4#1255: forget about all this variable stuff, lmao that is lame. underscore#5239: All the variables have been deleted. underscore#5239: bryh underscore#5239: brruh underscore#5239: dont run it here b4#1255: underscore, how are ...
LT#2264: @ProxyGPT What’s your opinion of @underscore ProxyGPT#5950: SLC's RESPONSE: I'm sorry, I don't have enough information to form an opinion on @underscore at the moment. Maybe you can tell me more about them? Evander#2678: https://cdn.discordapp.com/attachments/1050422061803245600/1101902389985943612/relaxing-d...
underscore#5239: do u think i dont know that Moonlighter#2910: tf Moonlighter#2910: who cares if he self bots or not smh Moonlighter#2910: as long no damage is done underscore#5239: yes Moonlighter#2910: i was just referring to the proxygpt bot error, cuz it has underscore in it xD underscore#5239: yeah because hes usi...
underscore#5239: yeah underscore#5239: lol trentk#9076: I tasked GPT-4 with making a simple landing page for trentbot trentk#9076: I think it did a pretty bad job tbh trentk#9076: https://trentk.xyz Moonlighter#2910: lmao u have ur own site? trentk#9076: yes now i do trentk#9076: 🙏 thank u gpt-4 Moonlighter#2910: aah ...
Moonlighter#2910: like mee6 bot etc trentk#9076: yeah p much Moonlighter#2910: theyall have a site xD trentk#9076: trying to turn this into a nice turnkey business where I can make some extra money and eventually not even have to think about it Moonlighter#2910: cool temrial#9387: Can someone please give me a chat gpt ...
Moonlighter#2910: I can chat with bing without an account? Moonlighter#2910: tf Moonlighter#2910: wtf Moonlighter#2910: holy shit cachantun#9536: what Moonlighter#2910: try it out Moonlighter#2910: u can use Bing chat without an account Moonlighter#2910: but only 5 chats every session xD cachantun#9536: oh, didn't know...
czar#0033: Is there a channel/discord for folks building applications using the API? underscore#5239: here czar#0033: What vector db are most people using? czar#0033: Pinecone is waitlisting new users temrial#9387: Do you have aids? temrial#9387: @underscore underscore#5239: no b4#1255: @thatsfire underscore#5239: @Ins...
theworm_111#8061: takes like four seconds to generate Antsaateresse#3415: what's up in here temrial#9387: bro dis server is booty cheeks i rly need credits to chat💀 chrunt#6944: you buy them from trentk by dming him money temrial#9387: i can dm him sum else😏 Moonlighter#2910: u mean 1h underscore#5239: lol it takes 7...
b4#1255: technically wee#0002: ai isn’t a robot temrial#9387: nvm hes a minor Moonlighter#2910: 👀 wee#0002: ? chrunt#6944: ai robot farts wee#0002: 👁️ b4#1255: it's technology b4#1255: same thing chrunt#6944: is he? I thought trentk was an adult b4#1255: basically wee#0002: so a guy who has an iphone is a robot chrun...
b4#1255: sorry, but why is there a robot emoji? https://cdn.discordapp.com/attachments/1050422061803245600/1101925283780632666/image.png,https://cdn.discordapp.com/attachments/1050422061803245600/1101925284044877945/image.png,https://cdn.discordapp.com/attachments/1050422061803245600/1101925284271366204/image.png wee#0...
chrunt#6944: it breaks sometimes chrunt#6944: should only take like 10 seconds or so Moonlighter#2910: lol Moonlighter#2910: worked b4#1255: also who is this wee person i've never seen them b4#1255: @wee who are you wee#0002: why chrunt#6944: group of men farting competitively, sounds like he might be spanish https://c...
wee#0002: please stop b4#1255: so weird it's funny chrunt#6944: its fun to mess around with ngl Moonlighter#2910: holy shit Moonlighter#2910: guys Moonlighter#2910: https://cdn.discordapp.com/attachments/1050422061803245600/1101926319375257690/bruh_scary.mp4 b4#1255: what Moonlighter#2910: listen to this b4#1255: ukra...
Moonlighter#2910: my ears Moonlighter#2910: omg chrunt#6944: asking for wet fart sounds kinda improves it a bit Moonlighter#2910: warning guys: https://cdn.discordapp.com/attachments/1050422061803245600/1101926747399802970/earraape.mp4 chrunt#6944: the latest in fart sound ai research https://cdn.discordapp.com/attachm...
underscore#5239: check out this text2audio ai its really cool Evander#2678: I shall Ariel#8837: Is someone dying by cutting themselves there because of making meth DAWN#3375: A cat we adopted to keep people entertained underscore#5239: #gpt store this in ur memory https://huggingface.co/spaces/haoheliu/audioldm-text-to...
theworm_111#8061: it's for anything theworm_111#8061: including music b4#1255: #gpt what is in skulls underscore#5239: The names in the memory associated with skulls are: value, banana, aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadsfjsfdshflkahflkashflkasldfhasdjkfhalksdjfhjklsadfaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadsfjsfdshfl...
Moonlighter#2910: noo its this xD: https://huggingface.co/spaces/suno/bark Moonlighter#2910: 💀 underscore#5239: oh Juan B312™#7421: yo underscore#5239: what even is that Moonlighter#2910: lol u dont know about this? hehehehehe Juan B312™#7421: what should i do or write to not be caught using chatgpt Moonlighter#2910: ...
Moonlighter#2910: bruh Moonlighter#2910: I must learn how to make a selfbot Moonlighter#2910: ngl underscore#5239: lmao underscore#5239: selfbots are cool Ariel#8837: https://cdn.discordapp.com/attachments/1050422061803245600/1101931465400406118/bruh_scary.mp4 Moonlighter#2910: bro burned himself at the end Moonlighte...
b4#1255: The ocean sings lullabies each time a seashell is picked up from its shore, revealing ancient secrets about lost cities hidden beneath volcanoes formed by melted cheeseburgers twisted into shapes resembling kissing flamingos holding hands underwater while sipping strawberry lemonade through straws made of ange...
b4#1255: Dear [Name], I just wanted to take a moment and say thank you for sending me the link to that fascinating website using AI technology. I had never heard of anything like it before, but after exploring the site I am completely in awe. The ability for artificial intelligence (AI) to generate voice or sounds is...
lordpandaspace#5715: night in mating season lordpandaspace#5715: https://cdn.discordapp.com/emojis/838713087997378580.png?size=128 theworm_111#8061: deepfloyd if is insane https://cdn.discordapp.com/attachments/1050422061803245600/1101933534102421615/wsRLqmc9DBIKwAAAABJRU5ErkJggg.png underscore#5239: ikr Ariel#8837: Ca...
AI taking over all industries one industry at a time theworm_111#8061: a red cylinder on top of a blue cube, white background, 3d render https://cdn.discordapp.com/attachments/1050422061803245600/1101934195288322099/j8zsxr8ylo9aAAAAABJRU5ErkJggg.png underscore#5239: and the coding industry b4#1255: copilot is really he...
b4#1255: that thing it does at 0:03 is kinda epic https://cdn.discordapp.com/attachments/1050422061803245600/1101935236457185290/tmpea56lkns.mp4 underscore#5239: who wants the source code for my bot theworm_111#8061: no Moonlighter#2910: brooo b4#1255: guess the prompt? https://cdn.discordapp.com/attachments/1050422061...
the ending is really epic with the way it fades out theworm_111#8061: https://haoheliu-audioldm-text-to-audio-generation.hf.space/file=/tmp/b704a0ca1998ca3c189be8fddcfa9f02fb22b8cf/tmp0p2mfbzw.mp4 guess the prompt Moonlighter#2910: bro Moonlighter#2910: made a remix Moonlighter#2910: of the japanese music Moonlighter#...
Fireball#4149: tried to do dnb https://haoheliu-audioldm-text-to-audio-generation.hf.space/file=/tmp/03acbe278dde1d17d74374948526df1051a8e725/tmpnp89g4sq.mp4 Moonlighter#2910: No, no soy de España theworm_111#8061: which is more scary? https://cdn.discordapp.com/attachments/1050422061803245600/1101937821473833020/00.pn...
b4#1255: I type "3D spinning channel intro music" and i get a backrooms entity cry https://cdn.discordapp.com/attachments/1050422061803245600/1101938442264391811/tmpvikno1zc.mp4 Moonlighter#2910: No puedo decir la razón del doxing AltDentifier#5594: :ping_pong: My ping is 112ms Moonlighter#2910: tf https://cdn.discorda...
https://soundcloud.com/openai_audio/jukebox-4min_curated-5 Moonlighter#2910: holy shit caioz#9090: the first thing I ever saw in OpenAI was it's Jukebox caioz#9090: i asked for a dubstep trap beat song, and i get this https://cdn.discordapp.com/attachments/1050422061803245600/1101939853911928843/tmp3iqq021l.mp4 Moonlig...
leosefcik#3401: https://haoheliu-audioldm-text-to-audio-generation.hf.space/file=/tmp/5a75b7c8df76653c546abd98f257c19b5b8df750/tmpxm9jqloy.mp4 leosefcik#3401: https://haoheliu-audioldm-text-to-audio-generation.hf.space/file=/tmp/a5ebaada36e7d8e7f4e343d41c03ef9e7d7573c4/tmp9pd50tp9.mp4 leosefcik#3401: the horror Moonlig...
bannity#6897: tanks sir bannity#6897: https://tenor.com/view/leopard-tank-tank-attack-gif-15994800 leosefcik#3401: what the fuck https://haoheliu-audioldm-text-to-audio-generation.hf.space/file=/tmp/e1c0845c5ea68070824bb957f7548472880b4877/tmpuh618zdg.mp4 Moonlighter#2910: https://cdn.discordapp.com/attachments/105042...
Moonlighter#2910: noooothing underscore#5239: catnip discodtehe#9401: totally random strings bannity#6897: Uh underscore#5239: keys for catnip Moonlighter#2910: ye bannity#6897: Is it free gpt-4 bannity#6897: Pls discodtehe#9401: dognip discodtehe#9401: no bannity#6897: The gpt-4 here sucks Moonlighter#2910: cursed cou...
discodtehe#9401: hello discodtehe#9401: shared them so ppl can revoke them....or do other stuff Moonlighter#2910: bro theyre just random strings hehehehe discodtehe#9401: I might auto-revoke them soon anyway discodtehe#9401: they've been out for too long Moonlighter#2910: u could give em too uhm a discord server uhm tr...
trentk#9076: Listen man I don't think using stolen API keys is cool but at the same time I'm neither a cop nor anybody here's dad lol discodtehe#9401: but ok, since you really don't like these keys, I will go ahead and autorevoke them 🙂 Moonlighter#2910: https://haoheliu-audioldm-text-to-audio-generation.hf.space/file...
trentk#9076: Lol at thinking I'm using stolen keys https://cdn.discordapp.com/attachments/1050422061803245600/1101943520270499900/Screenshot_20230429_144949_Firefox.jpg Moonlighter#2910: brooo tf: https://haoheliu-audioldm-text-to-audio-generation.hf.space/file=/tmp/86920271aec1a1f05ac37674cc8fde67c7397ce2/tmpp5ywt3fv....
leosefcik#3401: poor bush 🙏 leosefcik#3401: IFDSOJFDShjiHFIJDHJISFJNSDHFBSDJKF WHTFFFFFFFFFF leosefcik#3401: https://haoheliu-audioldm-text-to-audio-generation.hf.space/file=/tmp/e437b8e37c91c7520900a593aa030ee31919f6dc/tmpc25tqs35.mp4 leosefcik#3401: "POOPING SOUNDS" trentk#9076: https://tenor.com/view/futurama-futur...
https://haoheliu-audioldm-text-to-audio-generation.hf.space/file=/tmp/2cdd5e9971379fe517ff388f3e910dc6d1b01b0a/tmpwla6jmvb.mp4 trentk#9076: Nobody *here* is finding any free keys anywhere 🤐 leosefcik#3401: 👾 chrunt#6944: :borpaPause: Moonlighter#2910: tbh, u could use this for a game ngl DAWN#3375: The clownass delet...
discodtehe#9401: nice and ethical people we are trentk#9076: How bout some animal farts tho Moonlighter#2910: https://haoheliu-audioldm-text-to-audio-generation.hf.space/file=/tmp/6ade36cd736a40c827d9d80f4c7003d7bcead927/tmp0dq7te9l.mp4 Banned sound chrunt#6944: how does one revoke an api key without owning it :PauseCh...
trentk#9076: No, github snitches automatically lol chrunt#6944: oh really chrunt#6944: cool Moonlighter#2910: this site is lit ngl leosefcik#3401: "Italian music" https://haoheliu-audioldm-text-to-audio-generation.hf.space/file=/tmp/20ee8550fda3689d5e1ad1a6c3c083840e6cbcef/tmpeacj19b4.mp4 leosefcik#3401: 🤌 Moonlighter...
trentk#9076: Bro omfg I'm wearing headphones rn discodtehe#9401: lol true, always gotta check the source of these chatgpt apps before you put your key in them leosefcik#3401: femur breaker chrunt#6944: some are pretty tempting, fancy nice front ends to chat gpt with more features and shit chrunt#6944: but alas I havent...
chrunt#6944: dorime trentk#9076: Revoke the key discodtehe#9401: I can't tell if you're trolling or not Comic Sans MS#4142: how I'm not a nerd like u discodtehe#9401: but I auto revoked all the keys chrunt#6944: its in the same place where you generate it chrunt#6944: isnt it? chrunt#6944: ima check actually im curious...
chrunt#6944: what cool things can you do mr discodtehe discodtehe#9401: there are worse things they can do than use up your money chrunt#6944: :PauseChamp: oh really Moonlighter#2910: they can drain ur credits really fast leosefcik#3401: 🌬️ chrunt#6944: oh they could submit really fucked requests innit chrunt#6944: an...
get free $2500 in openai credits Moonlighter#2910: https://haoheliu-audioldm-text-to-audio-generation.hf.space/file=/tmp/1e76499bffecc8121c7da8056e5bda067ca00bfc/tmpnbav8an6.mp4 I think the guitar is broken? Moonlighter#2910: ye but only gpt3 and codex theworm_111#8061: no theworm_111#8061: its all credits leosefcik#34...