thank you for sharing, is there a new container for each code run, or it stays the same for whole conversation?
ChatGPT Containers can now run bash, pip/npm install packages and download files
231–240 of 336 posts
Re: ChatGPT Containers can now run bash, pip/npm install packages and download files
#232Earlier quoted context omitted.
I've found it's terrible at digesting a few codebases I've needed to deal with (to wit, 2007-era C# which used lots of libraries which were popular then, and 1993-era Visual Basic which also used from third party library that no LLM seems to understand the first thing about).
I had great results recently with ~22 year old PHP: https://simonwillison.net/2025/Jul/1/mid-2000s/ It even guessed the vintage correctly! > This appears to be a custom template system from the mid-2000s era, designed to separate presentation logic from PHP code while maintaining database connectivity for dynamic content generation.
Re: ChatGPT Containers can now run bash, pip/npm install packages and download files
#233I wonder how long npm/pip etc even makes sense. Dependancies introduce unnecessary LOC and features which are, more and more, just written by LLMs themselves. It is easier to just write the necessary functionality directly. Whether that is more maintainable or not is a bit YMMV at this stage, but I would wager it is improving.
Interesting thought (I think recently more than ever it's a good idea to question assumptions) - but IMO abstractions are important as ever. Maybe the smallest/most convenient packages (looking at you is-even) are obsolete, but meaningful packages still abstract a lot of complexity that IMO aren't easier to one-shot with an LLM
Re: ChatGPT Containers can now run bash, pip/npm install packages and download files
#234Giving agents linux has compounding benefits in our experience. They're able to sort through weirdness that normal tooling wouldn't allow. Like they can read and image, get an error back from the API and see it wasn't the expected format. They read the magic bytes to see it was a jpeg despite being named .png, and read it correctly.
Re: ChatGPT Containers can now run bash, pip/npm install packages and download files
#235Not sure if this is still working. I tried getting it to install cowsay and it ran into authentication issues. Does it work for other people?
Re: ChatGPT Containers can now run bash, pip/npm install packages and download files
#236Did I miss the boat on chatgpt? Is there something more to it than the web chat interface? I jumped on the Claude Code bandwagon and I dropped off chatgpt. I find the chatgpt voice interface to be infuriating; it literally talks in circles and just spews summary garbage whenever I ask it anything remotely specific.
Re: ChatGPT Containers can now run bash, pip/npm install packages and download files
#237Earlier quoted context omitted.
That might work! You would have to figure out how to get Whisper working in there but I'm sure that's possible with a bit of creativity concerning uploading files and maybe running a build with the available C compiler. It appears to have 4GB of RAM and 56 (!?) CPU cores https://chatgpt.com/share/6977e1f8-0f94-8006-9973-e9fab6d244...
Huh... If people are getting this for free or even as an offering with chatgpt consideirng it becomes subsidized too. Lowend providers are a little in threat with their 7$/year deals if Chatgpt provides 56 cores for free. this doesn't seem right to provide so many cores for (free??) Are you running this in your free account as you mention in blog post simon or in your paid account?
Re: ChatGPT Containers can now run bash, pip/npm install packages and download files
#238I wonder how long npm/pip etc even makes sense. Dependancies introduce unnecessary LOC and features which are, more and more, just written by LLMs themselves. It is easier to just write the necessary functionality directly. Whether that is more maintainable or not is a bit YMMV at this stage, but I would wager it is improving.
Scikit-learn
Pandas
Polars
Re: ChatGPT Containers can now run bash, pip/npm install packages and download files
#239Earlier quoted context omitted.
Backend has always been easier than frontend. AI has made backend absolutely trivial, the code only has to work on one type of machine in one environment. If you think it's rare or will remain rare you're just not being exposed to it, because it's on the backend.
Might be a surprise to you, but some backends are more than just a Nextjs endpoint that calls a database.
Re: ChatGPT Containers can now run bash, pip/npm install packages and download files
#240Earlier quoted context omitted.
Might be a surprise to you, but some backends are more than just a Nextjs endpoint that calls a database.
Honestly, I am also at a faang working on a tier 0 distributed system in infra and the amount of AI generated code that is shipped on this service is probably like 40%+ at this point.