Earlier quoted context omitted.
Considering the harness needs to be running how else would this work? Pretty easy these days with old school tools like tmux but more modern tooling like herdr [0] is really the path you'd want to take. [0] https://herdr.dev/
codex itself has a remote control mode that runs continuously. I wrote a systemd service to start it boot and interact with it via my phone.
OpenAI Agents API
41–50 of 202 posts
Re: OpenAI Agents API
#42This was sorely needed. Hopefully this kills the need to use the CLI and we can just use the API instead.
We use the OAI API because there is no local equivalent, I'm assuming this is just the codex client running on the cloud?
Re: OpenAI Agents API
#43I think we’re still figuring out the right abstraction for offering agents as a product. - LLMs are a great foundation but building your own harness is a huge undertaking, a deep rabbit hole. - There are harnesses available as open source libraries but that’s still coupled to an environment. Where does the state persist? Like maybe I’m a Cloudflare worker and don’t even have a file system. Agent as a service like thi…
It would be trivial for every request to clone a full lxd container and have all the tools and repos required if I wanted to allow it to do even more.
Not sure why anyone prefers to choose locked in options
Re: OpenAI Agents API
#44I've recently had great success running codex in a regular qemu VM and using codex remote control to talk to it from my phone. Honestly works extremely well as a personal assistant. I can see why turning it into an API makes sense, just be aware you might not need to lock yourself in if you can setup your own VMs.
Yes, I do the same with Claude Code. Create an instance on the server for a project and then can create sessions from any device, close my laptop while claude code keeps working, etc. without losing the convenience of dedicated apps.
Re: OpenAI Agents API
#45I've recently had great success running codex in a regular qemu VM and using codex remote control to talk to it from my phone. Honestly works extremely well as a personal assistant. I can see why turning it into an API makes sense, just be aware you might not need to lock yourself in if you can setup your own VMs.
Works really well and is a great use case for work laptops. Same shell, same memories, same sessions
Re: OpenAI Agents API
#46Re: OpenAI Agents API
#47I think we’re still figuring out the right abstraction for offering agents as a product. - LLMs are a great foundation but building your own harness is a huge undertaking, a deep rabbit hole. - There are harnesses available as open source libraries but that’s still coupled to an environment. Where does the state persist? Like maybe I’m a Cloudflare worker and don’t even have a file system. Agent as a service like thi…
Re: OpenAI Agents API
#48Earlier quoted context omitted.
Do you have 1 long running session?
Considering the harness needs to be running how else would this work? Pretty easy these days with old school tools like tmux but more modern tooling like herdr [0] is really the path you'd want to take. [0] https://herdr.dev/
you can just make new sessions for each new task?