I suspect anything you make in these, the thinking traces or "safety evaluations" of the content allows whatever you build to become RL or eventual pre-training data.
OpenAI Agents API
191–200 of 202 posts
Re: OpenAI Agents API
#192Kind of shocked nobody is calling out at the flag at the bottom of the announcement saying that it's not eligible for Zero Data Retention and it's currently pretty nebulous what the "Don't train on my conversations" toggle means, as the TOS classifies "conversations" as "user visible input and outputs" - says nothing about thinking, etc. I suspect anything you make in these, the thinking traces or "safety evaluations…
In other words, what would the data be used to train for? It has to improve some kind of objective function. But it's a little hard to see what the objective function would be if it's just raw inner monologue.
Re: OpenAI Agents API
#193Kind of shocked nobody is calling out at the flag at the bottom of the announcement saying that it's not eligible for Zero Data Retention and it's currently pretty nebulous what the "Don't train on my conversations" toggle means, as the TOS classifies "conversations" as "user visible input and outputs" - says nothing about thinking, etc. I suspect anything you make in these, the thinking traces or "safety evaluations…
This is probably a silly question, but is the internal monologue useful training data? It's where the work is done, but without the input or output, it seems hard to get any useful context. In other words, what would the data be used to train for? It has to improve some kind of objective function. But it's a little hard to see what the objective function would be if it's just raw inner monologue.
If it was useless, they wouldn't bother.
It's probably not as useful as if you also have the prompts, but even assuming they really don't train on the prompts (which we can never verify), you can probably get to the prompts based on the monologue. Some agents essentially repeat the prompt in the monologue.
"The user asked me to build X using Y..."
Re: OpenAI Agents API
#194Re: OpenAI Agents API
#195I 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…
I just have a slack bot running on a VM that sees a message and invokes pi. 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
#196I actually have a good use case for this. For my project, I run a lot of Codex sessions in parallel (via Codex SDK[0]), because they are solving self-contained tasks (building crawlers for websites) and in theory I could scale it to hundreds or thousands of parallel sessions. But my VPS can handle maybe 10 parallel sessions max. Btw, the crawlers are for classical music websites, the project is https://classicalbot.c…
Re: OpenAI Agents API
#197This idea of remotely hosting the agent harness is honestly backwards to what I need. In so many cases, all the friction is about how to provision access to local data so the agent can work. So you started with the problem of how do I integrate an agent that is running locally with data that is hosted locally, and you have to deal with a bunch of security, data sensitivity and management issues around that. Now you m…
Re: OpenAI Agents API
#198I launched Epho a few weeks ago as an API like this but for all harnesses: https://epho.io I built it primarily for ourselves: we are building an AI data engineer, and we need a way to run many of them in parallel securely. An API for this seemed like the most obvious path forward. It makes it trivial to bring agentic capabilities into any product surface without having to deal with sandboxes, reliability issues, com…
Re: OpenAI Agents API
#199Earlier quoted context omitted.
do you mean like a cloud agent provider? What we're working on at noriagentic.com may be relevant -- you can fire events from slack/web/cli to kick off an agent in a box and talk to it as if it was running local
Do you guys support projects that span multiple repositories? (and can create multiple PRs across them?)
Re: OpenAI Agents API
#200would love if it would be possible to allow suer and signing with the open ai account and use exiting subscription. anyone knows how to do that and implement agent api with user actual account?