Live data from Hacker News

Show HN: Get answers for shell commands from GPT3 from your terminal

github.com

81–90 of 97 posts

Re: Show HN: Get answers for shell commands from GPT3 from your terminal

#81
post #31

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…

That serverfault link seems to be completely random and takes me to a StackOverflow page(?)

Re: Show HN: Get answers for shell commands from GPT3 from your terminal

#83
post #31

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…

[deleted]

Re: Show HN: Get answers for shell commands from GPT3 from your terminal

#85
I made something similar for emacs and it unlocks what I think of as “semantic macros” — being able to interface with GPT-3 makes actions that are a tiny complexity level above what I usually use kbd macros for (like smart capitalization) easily possible to automate!

Screenshot - https://twitter.com/samarthrawal/status/1591527892386734081

Code - https://github.com/samrawal/gpt-emacs-macro

Re: Show HN: Get answers for shell commands from GPT3 from your terminal

#88
post #31

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…

Netstat is becoming an optional package on many distributions in favor of ss.

Re: Show HN: Get answers for shell commands from GPT3 from your terminal

#89
post #71
post #22

Earlier 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

Someone somewhere is training an AI to speak TCP/IP directly.

Re: Show HN: Get answers for shell commands from GPT3 from your terminal

#90
post #66

Earlier 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.

That's afaik already the size when using half precision. And it's not like GPT3 doesn't get half queries wrong as-is in its optimal form, detracting from it will just make it unusable. Check out GPT-J if you want to see a functionally useless model that can be run locally.

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.

Post reply on HN