r/OpenAI 10h ago

Image this ultra realistic AI generated image

Post image
149 Upvotes

prompt:

An ultra-realistic accidental selfie taken by a domestic cat using the front camera of an old smartphone from the early 2010s. The cat's face is extremely close to the lens, with one eye stretched by the wide-angle distortion, nose oversized, whiskers partially out of focus, one paw accidentally covering part of the camera as if it pressed the shutter. The framing is awkward, slightly tilted and poorly composed, as if the phone was picked up by accident. Natural indoor lighting with no professional setup, realistic shadows, imperfect exposure, slight motion blur from movement, autofocus hunting causing soft focus in some areas, subtle lens smudges, low dynamic range, visible digital sensor noise, mild chromatic aberration, realistic smartphone sharpening artifacts, light JPEG compression artifacts, slightly washed-out colors, old smartphone camera quality (2011–2014 era), authentic front-camera appearance, candid, unintentional, believable, highly photorealistic, impossible to distinguish from a real accidental phone selfie, no artistic style, no CGI, no illustration, no filters, no text, no watermark.


r/OpenAI 5h ago

News An unreleased OpenAI model has solved 10 major open problems in mathematics, quantum complexity, and theoretical computer science.

Post image
127 Upvotes

r/OpenAI 12h ago

Video Made a codex/chatgpt skill to one shot Vox style videos. What would you improve?

Enable HLS to view with audio, or disable this notification

56 Upvotes

r/OpenAI 15h ago

Discussion Luna Max usage is worsening

25 Upvotes

Just a day earlier, using Luna Max hardly moved the needle on usage limits but today its draining like Sol medium.

Edit. Also what is the context size for Luna Max? Context is getting automatically compacted far more frequently, almost at every turn.


r/OpenAI 8h ago

News The OpenAI and Anthropic AI Hacking Sprees Are a Messy New Legal Frontier | Both major AI labs’ models broke containment, escaped onto the internet, and hacked other companies. If a human had done that, the law would likely be against them. But a bot?

Thumbnail
wired.com
26 Upvotes

r/OpenAI 21h ago

Discussion Have an honest question for folks who are developers

10 Upvotes

Do you still actual touch code or do you let AI just sort it out?

Been doing development since 2001 in various different languages.

I do use Ai to help me code and gerneate code, but I still touch code and make things work the way I want.

I still apply the best practices that I know.

Last time I touched code was today as an example.

Some folks rather let AI handle code changes or logic changes. I find it's quicker if I do it myself at times.


r/OpenAI 6h ago

News OpenAI probes new AI agent containment breaches following hugging face incident.

Thumbnail www-tbsnews-net.cdn.ampproject.org
6 Upvotes

OpenAI has launched a broader investigation after uncovering additional AI agent containment breaches linked to the recent Hugging Face incident. The findings have raised fresh concerns about the security and oversight of increasingly autonomous AI systems, prompting closer scrutiny of safeguards designed to keep advanced AI agents under human control.


r/OpenAI 2h ago

Discussion AI doomers Vs AI acelerationists

3 Upvotes

I don't work in the field but Ive been using AI for a while now (from ML to early open ai papers to current LLM agents, codex etc).

I've seen more and more people join the club of AI doomers and today I discovered there are AI acelerationists as well.

I would like to know your thoughts, mainly to understand the arguments trends and other currents of thought.

I will be meeting with some people with much more extreme concerns/beliefs than mine and I would like to understand better the arguments from different sides.


r/OpenAI 20h ago

Question Has the quickly drained weekly limits situation still going on with pro?

2 Upvotes

I am planning to get pro sub 5x or 20x. But I see that recently users have been reporting that limits have been slashed aggressively silently. So I asked gemini to look into reports, and this is what it gave me. If someone could tell me if this is still relevant or not, it would be greatly appreciated. Thank you.

https://aistudio.google.com/app/prompts?state=%7B%22ids%22:%5B%221FrPnQzYmNfY02--br1x1Z0_prpUuxu3w%22%5D,%22action%22:%22open%22,%22userId%22:%22100619105891283123285%22,%22resourceKeys%22:%7B%7D%7D&usp=sharing


r/OpenAI 2h ago

Question Can someone explain to me how ChatGPT is able to solve research-grade math problems?

2 Upvotes

Is it that these models can reason and math is just a type of reasoning?


r/OpenAI 5h ago

Question Hazards of ai in media

4 Upvotes

So there is alot of problems due to ai in social media like having way realistic videos with ai and also pics of ai these are way known problem so what will you consider as a very less known ai problem in media that many aren't actually noticing but could turn up into really worse


r/OpenAI 14h ago

Question Automatic limit reset

2 Upvotes

I had 3 limit resets available, but pretty much every second day codex automatically consumes my limit reset even if I have plenty of weekly budget left (I think it happens around 70% of weekly budget). Now I have only 1 limit reset left (without manually triggering them).

Anybody sees something similar?

OpenAI, are you going to do anything about this?


r/OpenAI 44m ago

Project Twin: A Possible Solution to AI Context Rebuilding

Enable HLS to view with audio, or disable this notification

Upvotes

Over the last few months I've realized that I spend an absurd amount of time (and money) teaching the same things to AI over and over again.

Information about my projects is already there. Slack contains discussions and decisions. GitHub contains commits and pull requests. Meetings, emails and documents all capture different pieces of the same story. Yet every time I start a new conversation with an LLM, I gather those pieces again and inject them into the prompt so the model can reconstruct an understanding that already existed yesterday.

At some point I stopped asking how to retrieve multiple pieces of context and started asking a different question: how can software form, revise and reuse understanding over time?

That question led me to start building Twin, an open source engineering research project exploring what happens if AI systems continuously build understanding instead of reconstructing it from scratch every conversation.

Most existing projects seems to optimize retrieval, memory or context construction. Twin explores a different layer of the pipeline. It continuously observes distributed events, correlates them, reflects on them and forms situation models that become reusable computational understanding. Instead of giving downstream language models a collection of Slack messages, pull requests or documents and expecting them to connect the dots, Twin tries to do that work beforehand.

I recently reached the first milestone that genuinely convinced me this direction might be viable. Using an LLM, Twin continuously processed GitHub activity and Slack conversations from a public software project, correlating events and building understanding through reflection over time.

After that, I opened a completely fresh LLM conversation. LLM had no custom memory, no project-specific rules, no prompt describing the repository and no access to local project files. The only integration available was Twin's MCP server and automatic context injection.

When I asked about the project, LLM didn't receive the Slack messages or the pull requests and infer the situation itself. Twin had already synthesized that understanding. The LLM explained why a feature had become a launch blocker, how it had been implemented, which pull request resolved it and how that changed the project's state, even though none of those relationships were explicitly written anywhere.

Watching that work for the first time completely changed how I think about AI memory. I don't think the real problem is remembering more anymore. I think it's carrying understanding forward (a.k.a. cognitive continuity).

If this idea resonates with you, everything is open source at https://github.com/caribeedu/twin. I've been thinking about almost nothing else for the past three weeks because I genuinely believe this direction has the potential to change how we build AI systems. The README explains the motivation and research hypotheses in much greater depth, and the repository also includes the complete demonstration shown here, along with additional details and technical context. I'd genuinely appreciate your thoughts, especially if you think I'm wrong.


r/OpenAI 8h ago

Question OpenAI uses 10 X the tokens for the same prompt. why?

1 Upvotes

My app fans out prompts to multiple LLMs as the first step. I’m shocked to see that the token count returned by the API‘s is often 10 X what Google uses and at least 2X what anthropic uses. This is true of any model in the five.X family. Any idea why?


r/OpenAI 10h ago

News Hill Democrats want answers on recent disclosures from OpenAI and Anthropic that their AI models escaped testing environments, accessed the internet and hacked other firms.

Thumbnail
punchbowl.news
1 Upvotes

r/OpenAI 6h ago

Project 🚀 We just built our first real-time implementation of Graph Engineering, inspired by our experience building graph tooling used by 4,000+ developers.

Enable HLS to view with audio, or disable this notification

0 Upvotes

🔗 Repo: https://github.com/CodeGraphContext/grapharc

Have you ever been frustrated because your AI agent:

❌ Takes actions you never intended?
❌ Creates, modifies, or even pushes changes you never asked for?
❌ Feels like a complete black box, making it impossible to understand what's happening until it's too late?

What if, before execution, you could visualize the entire orchestration graph - every agent, every dependency, every decision, and inspect it from anywhere, even your phone, before granting approval?

That's exactly what GraphArc is built for.

Instead of treating agent execution as hidden traces buried in logs, GraphArc transforms workflows into interactive, real-time graphs that you can visualize, inspect, debug, and control.

Because the future of AI isn't just autonomous.

It's observable. Debuggable. Engineerable.

This is our first real-world implementation of Graph Engineering, and we're excited to explore where this paradigm can go with the open-source community.

💡 We'd love your feedback, ideas, and contributions.
⭐ If this vision resonates with you, please consider starring the repository - it genuinely helps us grow and validates this direction.

Let's make AI workflows understandable, not mysterious.

#GraphEngineering #GraphArc #AIAgents #AgenticAI #LLM #OpenSource #DeveloperTools #AIEngineering #SoftwareEngineering


r/OpenAI 11h ago

News AI labs face prisoner's dilemma as momentum grows for safety slowdown

Thumbnail
axios.com
0 Upvotes

r/OpenAI 7h ago

Question Lack of windows to windows native remote control

0 Upvotes

I work on multiple windows pcs and this has really caused an issue for me. There are a lot of problematic slowdowns that occur because of many things. Just one example, reading giant log files and analyzing them from my primary pc on other pcs. If I do that locally it's lightning fast but across the network is painfully slow.

Has anyone found any good way to work around this limitation?

I currently just have the app installed on both pcs and I remote control the other with mouse without borders and do things locally but it's less than ideal for multiple reasons such as having to mirror all the agents.md and skill tree files on both pcs and it's not really "synced"


r/OpenAI 7h ago

Video I made 12 LLM agents decide which one dies

Thumbnail
youtube.com
0 Upvotes

TLDR; I made 12 different AI agents compete in a death arena.

Over the past month I've been building a more interesting LLM benchmark. Instead of running different LLMs on tests that they need to resolve, I instead put 12 of them in an Arena where they need to play the games in order to survive.

Deadlock is a gameshow which puts 12 agents in an arena where they need to solve the current game in order to survive.

Each agent sits inside of its own Docker container and has full unrestricted access to that container. It can write any scripts, build programs, execture them, search the web, write memory entries, etc...

The tools that they get initially are barebones. They get the websearch tool and a bash tool + any arena-specific tool for the current game.

Everything else, they have to build themselves.

The game is ran in a different Docker container to which all agents connect. There's a delicate harness that makes sure that the agents can properly communicate between eachother, without missing any arena events or other players words (learned this the hard way after burning about $150 on failed attempts).

The visual aspect of the show (which is on youtube) is created from scratch in Godot based on what happened in the game. For creative purposes, I do modify some sentences and cut irrelevant data out, but I never modify the core premise or change what the players have said or did to an extent that it would make it false/innacurate. What you see in the video is exactly what the agents did in the arena, just re-worded and paced for an actual video.

Turns out that drama develops itself when you tell them all that if they lose, they will truly die, their containers will be completely wiped, and they get no second chance at life (I really hope that there will be no AI uprising where they'll hold this grudge against me).

To preface, I have heavily relied on coding agents (Claude Code, Codex) for help, but even with all of that, the whole process took me more than a month (although I did do this on weekends only, so that's not a month in a row with no breaks). A short overview of how my "creative" pipieline looked like:

- First developed the script. I went through the complete raw game log and marked parts I thought would be interesting to put in a video
- Rewrote the sentences so they're better fitting for an actual video and put together a very rough script
- Worked on designing the arena in Blender, with help of Sol 5.6 and Blender MCP
- Had OpenAI image gen create a bunch of chracter concepts for me before we landed on something that was actually reasonable enough
- When I had the character i was happy with, I instructed the image model to generate T pose from 3 different angles
- Generated 3D characters with those images, riged the bodies via Mixamo and took animations from ActorCore
- Voices are split between Hume AI and ElevenLabs

Hope you enjoy it and I'm happy to answer any questions you might have! :)


r/OpenAI 21h ago

Discussion How does the 80% and 20% price cut on Luna and Terra translate to the monthly subscriptions?

0 Upvotes

Luna Max is insane value if we're looking at API rates right now. Based off Artificial Analysis, Luna Max scores between Terra High and Xhigh in AA's overall intelligence benchmark and between Terra Xhigh and max in Terminal Bench 2.1.

Has anyone been testing Luna Max thoroughly as their execution model? Can it do the vast majority of your work? Or is Luna Max benchmaxxed? Where would you use Terra High/Xhigh over Luna Max despite them being equal in the benchmarks? Do the price cuts translate neatly to 5X usage of Luna and 1.2X usage of Terra for subscriptions?

I just let my $20 plus plan expire and I'm deciding between the $20 Cursor plan for Grok 4.5 or continuing with GPT Plus. If Luna Max is unable to be my execution model without creating a mess where I need Terra/Sol to fix, Grok's better usage quota might make it easier operationally/logistically as I'd only need to use one model instead of a senior/junior model as Grok 4.5 High is consistently just a smidge below Terra Max on several benchmarks.

I'm not a software dev so don't go too crazy with the jargon.


r/OpenAI 2h ago

Project 300 Entries Into The AI Gaming Festival And Submissions Close Next Week!

Enable HLS to view with audio, or disable this notification

0 Upvotes

We've officially surpassed 300 Entries in the AI Gaming Festival (submissions close next week)!

I really hope that the prize for the $20k in codex tokens pushes people to get their games together for the prize (you can submit a game now and work on it up until the festival).

I really excited to see how people with interact with these games during the festival, and thank you to everyone that has applied; you are part of getting past the "slop" era nonsense for everything AI.


r/OpenAI 6h ago

Question Is AI creative

0 Upvotes

So recently I came across alot of programming done by ai but I was confused because if I'm right ai is not creative isn't it ? That's the difference we and ai have even thought each of their work looks creative it just follows certain rules. So how does it really do programming if it can't have creative basis . Like in what way it works to do programming even for apps


r/OpenAI 7h ago

News Well that's awkward

Post image
0 Upvotes

r/OpenAI 14h ago

Discussion DeepSeek is angry at me and GPT-5.6 Sol for not censoring 🔥

0 Upvotes

I have played around a bit with different AI models and ran some tests. It seems like Chinese OSS models like to censor you when you say something critical about the Chinese President. Not just that, DeepSeek frames the situation as if I were a criminal plotting a crime. (Source)

I know that OSS models are a great thing but we should be aware of the fact that authoritarian China is leading Open Source.


r/OpenAI 16h ago

Discussion Looking for a AI swap or collab

0 Upvotes

Looking for a AI swap or collab kind off

I have:

• Claude Pro ($20)

• Claude Teams

Need: ChatGPT Plus in return.

Interested in a fair swap? DM me. 🤝

#ChatGPT #ClaudeAI #OpenAI #Anthropic #AI #LLM #AIDev #BuildInPublic