←back to thread

376 points meetpateltech | 1 comments | | HN request time: 0.203s | source
Show context
sudohalt ◴[] No.44007991[source]
When it runs the code I assume it does so via a docker container, does anyone know how it is configured? Assuming the user hasn't specified an AGENTS.md file or a Dockerfile in the repo. Does it generate it via LLM based on the repo, and what it thinks is needed? Does it use static analysis (package.json, requirements txt, etc)? Do they just have a super generic Dockerfile that can handle most envs? Combination of different things?
replies(2): >>44008527 #>>44008833 #
hansonw ◴[] No.44008833[source]
More about that here! https://platform.openai.com/docs/codex#advanced-configuratio...
replies(2): >>44010151 #>>44010254 #
1. sudohalt ◴[] No.44010254[source]
It seems LLMs are doing a lot of the heavy lifting figuring out the exact test, build, lint commands to run (even if the AGENTS.md file gives it direction and hints). I wonder if there are any plans to support user defined build, test, and pre commit commands to avoid unnecessary cost and keep it deterministic. Also wonder how monolith repos (or distinct but related repos) are supported, does it run everything in one container or loop through the envs that are edited?

I assume one easy next step is to just run GitHub Actions in the container since everything is defined there (assuming the user set it up)