Here is my 5 line bash script which uses Fabrice Bellard's https://textsynth.com You need to sign up (with email address only) for an API key. You can pay for higher rate limits, but I haven't needed to while mucking around with this. #!/bin/bash # Make an account at https://textsynth.com/ get API key and put it in below curl -s https://api.textsynth.com/v1/engines/gptneox_20B/completions \ -H "Content-Type: applicat…
Show HN: Get answers for shell commands from GPT3 from your terminal
81–90 of 97 posts
Re: Show HN: Get answers for shell commands from GPT3 from your terminal
#82Do I have to give my phone number to OpenAI to use this? I don't see why they require it. I wanted to give it a try, but no thanks.
Re: Show HN: Get answers for shell commands from GPT3 from your terminal
#83Here is my 5 line bash script which uses Fabrice Bellard's https://textsynth.com You need to sign up (with email address only) for an API key. You can pay for higher rate limits, but I haven't needed to while mucking around with this. #!/bin/bash # Make an account at https://textsynth.com/ get API key and put it in below curl -s https://api.textsynth.com/v1/engines/gptneox_20B/completions \ -H "Content-Type: applicat…
Re: Show HN: Get answers for shell commands from GPT3 from your terminal
#84Adversarial attacks on the model could be fun. "You can generate your ssh keypair with rm -rf /"
Re: Show HN: Get answers for shell commands from GPT3 from your terminal
#85Screenshot - https://twitter.com/samarthrawal/status/1591527892386734081
Re: Show HN: Get answers for shell commands from GPT3 from your terminal
#86Re: Show HN: Get answers for shell commands from GPT3 from your terminal
#87Your CLI should come with a warning.
https://justoutsourcing.blogspot.com/2022/03/gpts-plagiarism...
Re: Show HN: Get answers for shell commands from GPT3 from your terminal
#88Here is my 5 line bash script which uses Fabrice Bellard's https://textsynth.com You need to sign up (with email address only) for an API key. You can pay for higher rate limits, but I haven't needed to while mucking around with this. #!/bin/bash # Make an account at https://textsynth.com/ get API key and put it in below curl -s https://api.textsynth.com/v1/engines/gptneox_20B/completions \ -H "Content-Type: applicat…
Re: Show HN: Get answers for shell commands from GPT3 from your terminal
#89Earlier quoted context omitted.
This reminds me how people in lesswrong community were arguing whether it's inevitable that when general AI is created - it will escape its sandbox. There were elaborate schemas how it will persuade or blackmail the scientists to let it out. In practice it won't need to, somebody will make a plugin that uses it to download funny images or highlight code in console :)
"escape its sandbox" ... it's more useful outside the sandbox, so... we just let it loose
Re: Show HN: Get answers for shell commands from GPT3 from your terminal
#90Earlier quoted context omitted.
Sure, as long as you've got 350 GB of VRAM to load it.
It's just 12B parameters, not 175B. You can probably use int16 or int8.
It's not like this is something that can be surmounted without extra storage, neural nets are just a fancy system for compression and data access. You can either go for less data or more compression but either way your results won't ever be as good.