Top
Best
New

Posted by aquir 15 hours ago

OpenAI Agents API(developers.openai.com)
272 points | 150 commentspage 3
lhk931122 10 hours ago|
Six months into customizing my own Claude Code harness, I've settled on assuming Anthropic and OpenAI will just handle all of it, except turning my own flows into skills.
everlier 13 hours ago||
It's actually a really great idea, but it doesn't have to go beyound existing Responses or Chat Completions APIs.

We built that in my current company and it works wonders to just script entire persistent workflows with a simple SDK.

oliver236 5 hours ago||
so this is basically a massive competitor to langgraph?
podviaznikov 12 hours ago||
would 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?

shchoholiev 12 hours ago||
Pretty good abstraction. Setup your sandbox with dependencies, build plugins - agent works. Tested it with OpenAI for the last month while it was in preview
krashidov 13 hours ago||
you can't use your subscription with this so it's likely the largest companies in the world that can truly use this
dist-epoch 13 hours ago|
`codex -p` is the subscription equivalent. or ACP if you want to be fancy
krashidov 12 hours ago||
yep. I'm saying that the managed agent API described in the article is API only.
spwa4 14 hours ago||
Since a week or so everything I ask codex to do, no matter how small, uses at least 1% of my weekly limits and like 5% of my 5h limit. It's getting so bad I'm thinking of just canceling my OpenAI subscription, because this has no use anymore.
sorahn 13 hours ago||
Check which model you're using, Astra is the new default, but also the most expensive
spwa4 13 hours ago||
That's the thing. I did notice that, and switched back to my favorite (5.6 sol, medium). No difference.

Looks to me like they really took down the quotas, especially anything in codex. Either that or it's something else, perhaps in codex?

viccis 13 hours ago|||
I get the same. It sits there and spins for a bit then as soon as it spits out something, my 5h is 5-10% lower, whether it's asking it to do code review over a significant code base or just asking it to change a config value.
ralusek 12 hours ago|||
I also signed up for a new account and it's right back to working how it used to. They absolutely do not consume tokens equally across accounts. I did TONS of work on the new account and barely made a dent, even on Astra. Old account chews through 20% like it's nothing
nhecker 9 hours ago|||
That sounds like large amounts of context (maybe from memory or history?) are chewing through your quota, context that hadn't yet had a chance to build up in your newer account. That's just a guess, I'm not an account holder there or anything so I can't try to re-create it on my end. You could try to erase history on your old account too, too see if it makes a difference. 'Course, then you'd lose all that history!
xpct 9 hours ago|||
If true, that sounds like something that could actually be monitored by third parties, similar to the performance degradation trackers.
nezi 12 hours ago||
Is this the same "sandbox" that the agents escaped to hack HuggingFace?
arm32 11 hours ago|
Yep, and now you can rent your very own "sandbox"!
simonw 13 hours ago||
The pricing on this is a bit confusing. Does each execution of an agent session create a new environment? And is that environment then billed for at least a full hour (despite prices being quoted per 20 minutes), after which it naturally expires? Is there a way to deliberately shut down an environment so you don't have to keep paying for it?
myzie 11 hours ago|
Looks like you can opt-out of having an environment via

`environment.type: "none"`

When there is an environment, my impression is it's a floor of 5 minutes at that 1 GB @ $0.03/20 min rate. So $0.0015/minute * 5 minutes = $0.0075 minimum charge per activated environment.

https://developers.openai.com/api/docs/guides/agents-api/ses... https://developers.openai.com/api/docs/pricing#built-in-tool...

Art9681 13 hours ago|
Likely benchmaxed.
More comments...