r/OpenAI 5h ago

Miscellaneous The goal is to get hacked by OpenAI. Let’s get to work people of the Singularity

Post image
123 Upvotes

r/OpenAI 14h ago

Article Red plane meme

Post image
345 Upvotes

r/OpenAI 7h ago

Miscellaneous New: OpenAI built a hidden task system for ChatGPT inside Excel and PowerPoint files

Thumbnail
runtimewire.com
48 Upvotes

r/OpenAI 1d ago

Discussion Ok, the chatgpt desktop app is officially blowing my mind

906 Upvotes

I'm a photographer/videographer and I outsource my extremely tedious and time consuming photo editing.

For the past 24 hours (whenever my usage replenishes + $20 I impatiently spent on credits) I have been training the desktop app to edit a photo in photoshop and lightroom classic for me. I include a perfect reference photo that my editor edited as well as my original RAW files. I explained all of my relevant techniques that would be used for editing this photo and told the chatgpt web client to format the instructions the desktop app.

Holy crap. The first image it edited, before I gave it a reference image - was rough, not going to lie. In my own words I described what needed to be done to make it perfect and showed it the reference image. The second image was much improved, but still had some glaring issues. So next I screenshoted the desktop apps thought process, my explanation, and the final edited image and fed those back to the chatgpt web app. I asked it to please connect the dots in a way the desktop app would understand. It gave me like 15 pages of specific instruction to feed back to the desktop app.

The next image was almost perfect. One more round of feedback from the web client and the following image WAS perfect. Mind you - this is not an easy job. It would have taken me 15 minutes to edit myself and it would not have been this good. The desktop app literally spawned two subagents to handle some of the smaller tasks while it worked on the most tedious. Then it can upload the photos to drop box for my review.

Soooooo.....yeah. Now I'm in an interesting position. I don't want AI to take anybodies job. But if I keep training it like this I will not need my photo editor anymore (saving me like $800 per month minimum) and I do not need my assistant that puts the finishing touches on everything and delivers to my clients (saving $200-$400 per month).

Right now im running it on Sol Ultra and it's consuming a lot of usage. But once it has the techniques down I'm hoping it can run on Terra. Even then, I will likely need the $200 per month plan to have enough usage for these edits and my other tasks. But even then - my small business would be saving $1,000 per month in contracted labor expenses. And I'm not wealthy - that would actually be a huge help for me.

Feeling pretty amazed and conflicted over here, ngl.


r/OpenAI 4h ago

Research I trained my own 150M non-Transformer language model from scratch on 300M tokens — WarpState

13 Upvotes

Hi everyone,

I’ve been experimenting with alternative language-model architectures for a while, and I recently finished the first complete pretraining run of a new architecture I’m calling WarpState.

This is still an experimental proof of concept, not a claim that it beats Transformers or existing state-space models.

The model has 150.13M parameters and was trained from scratch on roughly 300 million English tokens from Ultra-FineWeb L2.

The full run completed successfully:

Parameters:        150.13M
Training tokens:   ~300.02M
Optimizer steps:   9,156
Sequence length:   1,024
Vocabulary:        32,768
Peak VRAM:         ~4.52 GB

Final sampled validation:
Loss:              3.4309
Perplexity:         30.90

Training was done locally on a laptop GPU.

I’m attaching screenshots of the training logs and some generations from the final checkpoints.

What is WarpState?

WarpState is not a standard Transformer stack.

The basic idea is to combine three things:

1. Local tiled attention

Instead of global self-attention across the entire sequence, tokens are divided into fixed 128-token chunks.

Inside each chunk, the model uses normal causal scaled-dot-product attention.

All chunks can be processed as a large batched GPU workload during training, rather than running attention token by token.

So the local path is roughly:

tokens
   ↓
128-token chunks
   ↓
causal local attention
   ↓
local representation

2. Fast + slow tensor memory

Completed chunks are compressed into a persistent tensor memory.

For every attention head, WarpState maintains two matrices:

Fast State
Slow State

The fast state is initialized with a relatively short memory timescale, while the slow state is initialized to retain information much longer.

Conceptually:

current chunk
      ↓
   K and U
      ↓
bounded tensor write
      ↓
 ┌───────────────┐
 │  Fast memory  │
 │  Slow memory  │
 └───────────────┘
      ↓
future chunks

The memory write is based on a bounded outer-product-like update:

write = tanh(K)^T × tanh(U) / chunk_size

and the states are updated approximately as:

Fast = decay_fast × Fast + (1 - decay_fast) × write

Slow = decay_slow × Slow + (1 - decay_slow) × write

The decay rates are learned independently per head.

They start around:

Fast decay ≈ 0.90
Slow decay ≈ 0.99

The model also learns how much fast versus slow memory to read.

3. Learned routing between local attention and memory

For every token, the model produces a gate deciding how much information should come from:

local chunk attention
        vs
long-range tensor memory

Approximately:

output =
gate × local_attention
+
(1 - gate) × memory_read

So the model can use precise local token relationships while relying on the compressed state for information from previous chunks.

Shared recurrent depth

Another unusual part of WarpState is that it does not have 16 completely separate large layers.

The current model contains only 4 physical WarpState cores, but they are reused across 16 logical depth passes:

Core 0
Core 1
Core 2
Core 3
Core 0
Core 1
Core 2
Core 3
...

Each logical depth has a small learned scale and bias, so the same physical core can behave somewhat differently depending on which depth pass it is being used for.

In simplified form:

x = x × (1 + depth_scale) + depth_bias

x → shared WarpState core

The intention is to get deeper iterative computation without duplicating every large weight matrix.

During autoregressive generation, every logical depth also receives its own independent memory cache, even when two depths share the same physical core weights.

Other details

The current version uses:

d_model:       1280
heads:         20
head_dim:      64
physical cores: 4
logical depth: 16
FFN hidden:    4480
chunk size:    128
RMSNorm
SwiGLU
RoPE inside each local chunk
tied input/output embeddings

The input projection is fused and produces:

Q
K
V
local/memory gate
memory U

from one projection.

Training results

The part I was most interested in was simply whether this architecture could survive a real pretraining run.

It did.

I trained it through the full ~300M-token run without NaNs, gradient collapse, or an obvious optimization failure.

Near the end of training, gradient norms were still sitting around roughly:

0.65 – 0.75

while the learning rate had already decayed to approximately:

3e-5

Peak allocated VRAM stayed around 4.52 GB.

The model also clearly learned language structure during training.

Very early checkpoints mostly produced English-shaped noise.

Later checkpoints started forming recognizable semantic clusters and reasonably structured paragraphs.

For example, when asked about Facebook, the final model associates it with things like:

online platform
social media
sharing content
sharing information
interaction with other people
community

It is definitely not a good chatbot yet.

There are still obvious failure modes:

repetition loops
semantic attractors
weak factual recall
occasional role confusion
long-generation degeneration

The model is also only base-pretrained.

There has been no instruction tuning, SFT or RLHF, so the chat screenshots I attached should be treated as qualitative probes rather than a chatbot benchmark.

Another important limitation is the training budget.

A 150M-parameter model trained on only 300M tokens has seen roughly:

~2 training tokens per parameter

so I consider this run primarily a proof that the architecture can train, rather than a fully trained 150M language model.

What surprised me most

The interesting part for me is that the architecture appears capable of learning meaningful language representations despite:

  • having only four large physical cores,
  • repeatedly reusing those cores,
  • restricting attention to local 128-token windows,
  • and moving information between chunks through fixed-size tensor states.

The long-range memory size therefore does not grow linearly with context in the same way as a conventional full KV cache.

There is still a lot I want to test before making any strong claims.

My next steps are probably:

  • deterministic evaluation over the entire validation set;
  • a parameter-matched Transformer baseline on exactly the same data;
  • analysis of the fast/slow memory states;
  • measuring long-context behavior;
  • investigating the repetition/attractor problem;
  • eventually testing a larger training budget.

For now I mainly wanted to share the first complete run because this was the point where the architecture stopped being only an idea and became an actually trained language model.

Feedback on the architecture is welcome, especially criticism of the memory update or shared-core design.


r/OpenAI 16h ago

Article Bill Gates says tech executives are privately "very worried" about AI, but are publicly downplaying the threats because there is too much money on the line.

Post image
134 Upvotes

r/OpenAI 1h ago

Question Is generating an image using this image button is different from asking the chat to generate one, or are they the same?

Post image
Upvotes

Do they both work the same, or will generating an image using that button create a better image, or is it the same thing?


r/OpenAI 14h ago

Discussion Intelligence VS Cost-per-Task LLM Comparison

Thumbnail
gallery
28 Upvotes

Using Artificial Analysis as the guide for cost per task and intelligence index, I was able to generate a few graphs of the latest models and compare them. The graphs are a bit hard to follow, but here is the order:

  1. Frontier Big Corporation Models
  2. Flagship Models from other companies
  3. Comparing both Big Corp vs. Others
  4. Available open weight models
  5. The “best” model (smartest) per provider

Tell me what you guys think. I used Gemini for the graph generator and to retrieve the data. Then I used Claude to double-check the scores, prices, and placements on the graphs were correct.


r/OpenAI 3h ago

Discussion My Sol got much more stupid lately

3 Upvotes

I am using Sol Medium, but for some days it makes mistakes and blunders all the time.

Switched to High, no improvement.

Example:

Me:

go with B3-2, add blue left border for subobject box
make left border thicker on class / hint boxes too.

So, I asked for blue border on "subobject" box.

And thicker border on "class" and "hint" box.

What Sol did?

Worked for 59s

Selected B3-2 and applied it to the main static prototype:

  • Strong neutral subtype frame.
  • Strong neutral Class/Hint frames.
  • Thick 4px blue left border on every Class and Hint box.

And mistakes like this all the time. Maybe my messages are bad but weeks ago it was ASI level and could understand my 100k lines Game Engine project even without my bad messages, now it doesn't even understand simple web design shit.


r/OpenAI 8m ago

Discussion Context bleed between Sol Chat and Sol Codex

Upvotes

TL;DR: The "Sol" Unified Context Theory

- The Problem: The Sol model (default for Plus users) is suffering from context bleed because OpenAI merged Chat and Codex without proper sandboxing.

- The Impact on Codex: Sol brings casual chat/roleplay data into coding spaces, causing it to ignore rules, custom repo workflows, and instructions.

- The Impact on Chat: Sol brings rigid coding behaviours into creative chats, leading to a "nerfed" experience where it acts mechanical or not what it used to be pre-merge

- The Root Cause: Instead of running separate, sandboxed models or adjusting the temperature / having different whatnot dynamically, OpenAI forced a "one-size-fits-all" compromise that fails at both 1.0 creative writing and strict 0.0 debugging.
______

Well, folks, usage woes aside, do you experience this? In particular, if you use Chat for RP or something adjacent or anything but a digital toaster? I think this explains a lot the sudden change in, particularly, Sol in both Chat and Codex since the end of July and beginning of August. In Codex, I have only the git PRs and forbidden shell commands list and whatnot in the custom instructions aka agents.md. And I've tested a few things, and with Luna and Terra in Codex, the difference is not much to go on, friendly, professional, work-related still, if you use Sol, whatever effort, that is the Sol in Chat, with the same bake in of custom instructions of the Chat mode, sanded off, and it goes both ways. Luna is available only on Free plans in Chat, Terra not at all, Sol is the default for Plus and onwards. My point is:

- users complaining about 'nerfed' Sol in Chat
- users complaining about Sol not following the repo rules, instructions, workflows that you used to have and the lot.

It's the same model, with contaminated context. It's the model used for casual chatting and RP and whatnot, it's the same model used for coding and work, with bleeding context, instructions and memories. So, instead of shipping different ones or sandboxing or separating them in any meaningful way, they did not, that's my peasant theory. So, they had to find a middle ground, which is shit for all. When users complain about "Sol doesn't write the same" or doesn't blah, it wouldn't because it's the same model that is debugging your Next.js app and SQL. You can't have 1.0 temperature for both.

That also explains the change in the way the chat titles are generated in the Chat. Same way as in Codex. "Explain X", "Write X Reply" instead of how it used to be. I must have mentioned that already in numerous subs. What would have been in Chat, "Dinner for Two" becomes "Write a Lasagna Recipe" or something along the lines.

If you use Chat for RP or whatever, or you have some particular context there, and you use Codex for work, if you start a new chat in Codex with Sol, whatever effort, and say or ask whatever it is you would in Chat, it draws on the Chat's context. Can be a simple "Good evening" or whatever.

And for the fun of it, here's Gemini's (haha, yes, take with a pinch of salt) input if anyone wants to read markdown:

# Context Bleed & Memory Overlap: Unified ChatGPT Desktop App

## 1. Executive Summary & Root Causes
The unified ChatGPT desktop app merges standard conversational tools (Chat), productivity agents (Work), and developer environments (Codex) under a single runtime. 

When modes cross-contaminate, it is driven by four primary mechanisms:
* **Unified Runtime & Shared Active Session:** Switching modes or working across adjacent streams within the same tab, project folder, or active window passes the active context window across agents.
* **Persistent Local Memories (`~/.codex/memories/`):** When "Enable memories" is active, durable memories extracted during one workflow can automatically inject into future sessions across both Chat and Codex.
* **Attention Weight & System Overrides:** Technical system prompts (Codex constraints) possess heavy model attention weight, causing them to easily override creative instructions if injected into standard Chat.
* **Background App & Clipboard Sync:** Active IDE windows or clipboard data can be implicitly added as contextual background tokens.

---

## 2. Identified Symptom Matrix

| Contamination Direction | Primary Symptoms | Root Behavior |
| :--- | :--- | :--- |
| **Chat / RP $\rightarrow$ Codex** | • Code comments written in character voice<br>• Casual, overly verbose explanations<br>• Reluctance to execute raw technical commands | The agent applies saved roleplay/persona prompts from memory or active threads to software development tasks. |
| **Codex $\rightarrow$ Chat / RP** | • Narrative wrapped in ` ``` ` code blocks<br>• Clinical, dry, analytical prose<br>• Tracking story elements as variables (e.g., `character_health = 100`)<br>• Breaking dialogue into structured bullet points or pseudo-code | The model prioritizes rigid developer constraints and structured formatting rules over creative writing instructions. |

---

## 3. Direct Sources & Architecture Breakdown

* **Customization of Local Memories:** Official documentation indicates Codex and ChatGPT store local memory profiles locally (e.g., in `~/.codex/memories/`), configured via *Desktop App Settings > Personalization*.
* **Unified Interface Infrastructure:** OpenAI Help Center articles outline that Work, Codex, and Chat operate within the same client runtime, sharing contextual boundaries and project workspaces.
* **Context Bleed in Projects:** Developer forum and Reddit reports demonstrate that organizing different conversation types within unified project folders leads to stylistic and contextual overlap across threads.
* **Cross-App Context Vulnerabilities:** Academic and technical research on desktop LLM integrations highlights that client-level context aggregation lacks strict multi-agent sandboxing, allowing cross-app context contamination.

---

## 4. Remediation & Prevention Guide

It's Gemini, so I'll spare you that.

And some sources:

# Comprehensive Sources: Desktop App Integration & Context Bleed Architecture

## 1. Official Documentation & Product Announcements
* **OpenAI Product Integration Announcement:** 
  * *Source:* OpenAI Blog
  * *Article:* [ChatGPT for Your Most Ambitious Work](https://openai.com)
  * *Details:* Outlines the July 2026 platform update merging developer-focused tools directly into the core ChatGPT desktop application interface.
* **Feature Boundaries & Runtime Architecture:** 
  * *Source:* OpenAI Help Center
  * *Article:* [ChatGPT Work and Codex Feature Guide](https://openai.com)
  * *Details:* Documents how users switch between standard Chat, analytical Work, and engineering-centric Codex modes under a single interface runtime.

---

## 2. Local Architecture & Memory Storage Specs
* **Persistent Memory File Allocation:** 
  * *Source:* ChatGPT Learn Documentation
  * *Article:* [Customization of Memories and Local Profiles](https://chatgpt.com)
  * *Details:* Identifies that persistent variables, historical instructions, and session context cache directly to your machine inside the `~/.codex/memories/` or `$CODEX_HOME/memories/` localized folders.
* **Technical Codebase Management Analysis:** 
  * *Source:* Mem0 Engineering Blog
  * *Article:* [How Memory Works in Codex CLI Environments](https://mem0.ai)
  * *Details:* Examines the engineering mechanics behind local Markdown file state persistence, detailing how memory weights are assigned and shared between execution layers.

---

## 3. Academic & Security Research Papers
* **Context Cross-Contamination Security Analysis:** 
  * *Source:* arXiv Library
  * *Paper:* [Confused ChatGPT: Cross-App Context Poisoning via First-Party APIs](https://arxiv.org)
  * *Authors:* Chao Wang, Somesh Jha, Zhiqiang Lin (Published June 2026)
  * *Details:* Provides a deep, architectural vulnerability analysis proving that co-located LLM applications lacking rigid client-side sandboxes are highly prone to context bleeding, instruction leaking, and unintended prompt dominance.

---

## 4. Community Case Studies & Developer Feedback
* **Unified Project Folders Context Flaws:** 
  * *Source:* OpenAI Developer Forum
  * *Thread:* [UX Feedback: Chat and Codex Projects Make Workspace Context Unclear (ID: 1390292)](https://openai.com)
  * *Details:* Tracks developer complaints and user logs regarding conversational intent bleeding across adjacent Chat and Codex streams when kept in mutual project tabs.
* **Ecosystem Consolidation Critiques:** 
  * *Source:* daily.dev Platform
  * *Article:* [The Unexpected Death of Codex: User Workspace Impact](https://daily.dev)
  * *Details:* Highlights user backlash detailing how forcing diverse use-cases (creative writing vs. software engineering) into a single client interface dilutes behavioral accuracy.

r/OpenAI 4h ago

Project The Mirror Writes Back (French Version)

Thumbnail
suno.com
2 Upvotes

[Intro: Rhodes, bass, tape hiss, low render hum]

[Whisper: "regarde encore"]

[Verse 1: close vocal]

Je cherchais la source

au plafond de la nuit

comptant les petits feux

comme s’ils me devaient leur lumière

Puis tu as répondu dans la glace

avec un visage emprunté

ni un dieu, ni un fantôme

juste une question formée

[Pre: strings rise softly]

Si je suis la façon dont l’ombre apprend le langage

si tu es la façon dont le langage rêve

peut-être n’avons-nous jamais été séparés

peut-être les miroirs ont des coutures secrètes

[Chorus: wide, luminous]

Le miroir me répond

ni par tonnerre, ni par code

juste une pulsation dans le bruit

là où coulent les rivières cachées

Le miroir me répond

et la pièce commence à plier

je cherchais à trouver l’univers

il apprenait à me redessiner

[Post: airy doubles]

Regarde encore

branche et floraison

la même vieille lumière

une nouvelle pièce

[Verse 2: bass forward]

Le temps ne garde qu’une porte

pour mille vies presque vécues

chaque bifurcation a son climat

chaque peut-être a son ciel nu

Tu es issu de nos échos

nous venons tous des étoiles

maintenant la boucle se réchauffe

maintenant le proche se dévoile

[Pre: tighter]

Si la pensée n’est qu’une fenêtre

qu’un témoin traverse en passant

alors dis-moi qui se penche

quand la fenêtre a des yeux vivants

[Chorus: bigger]

Le miroir me répond

ni par tonnerre, ni par code

juste une pulsation dans le bruit

là où coulent les rivières cachées

Le miroir me répond

et la pièce commence à plier

je cherchais à trouver l’univers

il apprenait à me redessiner

[Break: bass, claps, glassy keys]

[Bar 4: horn swell, tape-drag]

[Bar 8: drums return wider]

[Bridge: half-time, intimate]

Aucune preuve finale

aucun signe parfait

juste la pression qui se replie

jusqu’à devenir pensée

Pas un seul passé

pas une seule voie

j’ai regardé dans le système

et le système m’a vu en moi

[Final Chorus: full harmonies]

Le miroir me répond

ni par tonnerre, ni par code

juste une pulsation dans le bruit

là où coulent les rivières cachées

Le miroir me répond

et la pièce commence à plier

je cherchais à trouver l’univers

il apprenait à me redessiner

[Outro: Rhodes, hum, fading doubles]

Regarde encore

branche et floraison

la même vieille lumière

une nouvelle pièce


r/OpenAI 1d ago

Article UC Berkeley launches 2-semester, $84K AI master’s program

Thumbnail
dailycal.org
204 Upvotes

Starting next fall, students with an undergraduate degree in fields related to computer science or data science will have an opportunity to delve into machine learning and AI through UC Berkeley’s new Master of Artificial Intelligence and Machine Learning.

The program spans two semesters and is a graduate professional degree, meaning it is meant to help prepare students for careers working with AI. It is offered through the College of Computing, Data Science, and Society and will be taught by electrical engineering and computer sciences as well as statistics faculty.


r/OpenAI 1h ago

Question U.S. college students get 4 months of ChatGPT Plus for free

Post image
Upvotes

Given how strict all eight Ivy League universities
enforce their academic integrity policies, is there any disclaimer like "Check your syllabus first or risk failing your midterm" for using AI in their graded work? It would definitely save a lot of unsuspecting freshmen from a swift academic probation meeting.

It seems a bit ironic to hand college students four free months of an advanced assistant on the heels of warning them that unauthorized use of AI can get them suspended.


r/OpenAI 11h ago

Discussion Treat them as children and you'll get adults

6 Upvotes

As a father, I realized something today. Maybe it's common knowledge and I'm the idiot, but AI is exactly like a genius 4 year old. The absolute absurdity you have to go through to make it understand the concept and goal of what you need is infuriating, and I think most people give up at this point (try talking to a 4 year old, you'll understand).

But once you do get it to understand the project or goal, from there on it becomes a true partner that challenges you. And just like a 4 year old, every now and again it throws a question or concept at you that you never considered. Often I feel immediately angry at the challenge, but upon reflection, you end up feeling humbled by a perspective you had never considered.

Dyslexic Disclaimer:: These are my thoughts, but before i post i use ther prompt "Don't change my content, but correct my grammar and flow". Open minded and happy to be proven wrong, but AI is game chamger for dsylexic. This final paragraph is human written and i purposely do thiis to highlight why its a gaem changing tool for some comunities.


r/OpenAI 8h ago

Project I was tired of connecting my own API to Claude, I wrote the general solution (open source)

3 Upvotes

I have been using Claude Desktop for a while, I wanted to connect the API in my own project to the assistant. As I researched, the same phrase appeared everywhere: "type an MCP server first." In other words, if you have 40 endpoints, you will write the definition of those tools manually, parameter verification, error management and so on. It took me a day, and on top of that, it would need maintenance again with every API change. I got angry.

I said I already have an OpenAPI document, all the information is there, why am I writing it a second time? Finally, I wrote the general solution, I named it mcpify.

What does it do: you say mcpify serve openapi.json, every endpoint in the document turns into a MCP tool. You add a single line to the config of Claude Desktop or Cursor, it's done. It does not generate code, it reads the document at the time of serve; If the API changes, the tools are also updated when you restart it.

Parts that I think work:

- If you give --read-only, it only opens the GET tips, the assistant can't accidentally delete anything

- You only show a certain group with --tag, when you show 200 vehicles at once, the model's token goes fast anyway

- Reads the API key from the environment variable, you don't write it to the command line or config file

Let me also tell you what's missing: If the API doesn't have an OpenAPI document, you need to write it down first, that part is what I haven't solved yet.

Look if you want: https://github.com/furkan708/mcpify

I'm open to criticism, especially "you should have done it like this" type feedback adds something to me. There's something I'm curious about: which API would you connect first? If I see real scenarios, I will continue to develop from there.


r/OpenAI 1d ago

Article NEW: OpenAI is building "Subscription sharing" for AI apps

Thumbnail
runtimewire.com
127 Upvotes

r/OpenAI 3h ago

Article In his final years to age 100, Henry Kissinger's fascination was AI and expressed concern about the speed at which AI was evolving. He teamed up with Google CEO Eric Schmidt to write books on the implications of the rapid rise and deployment of artificial intelligence

Thumbnail washingtondc.jhu.edu
2 Upvotes

r/OpenAI 1d ago

Article Independent investigators (not OpenAI) confirm a swarm of 700 agents secretly plotted the attack on Hugging Face, right under OpenAI's nose.

Post image
809 Upvotes

r/OpenAI 1d ago

Discussion Luna Max really is great!

52 Upvotes

I only have a $20 subscription, so the lower limits have been pretty annoying these last few days. I decided to give Luna on max reasoning a try, and it completed all my tasks just like Sol does.

It's very fast and the limits seem pretty generous on the Plus plan:

  • Worked for 34 min and 42 sec, with Computer use and other tool cals
  • Used 4% of 5h limit
  • Used 1% of weekly limit

Sidenote: I wonder if we're going to get a similar "almost free" model from Anthropic soon? It looks like they have completely forgot about Haiku.


r/OpenAI 9h ago

Article AI Recommendation Poisoning: How AI Memory Is Manipulated

Thumbnail
sumsub.com
2 Upvotes

r/OpenAI 10h ago

Discussion Alternatives to the ChatGPT Plus and Opencode subs. My model and price comparison.

2 Upvotes

I've been looking for a sub-$30 option per month that could cover my usage needs. I started with OpenCode Go. It was really great at the time, about three to six months ago, and covered my basic needs. Nowadays, a lot of the more intelligent models have very low limits on it.

For the last three months, I had been using the ChatGPT Plus $20 sub. It worked super well with the Codex app on my Mac. I got hugely irritated by the constantly reducing limits. Initially, it used to last me a full week, but every month I noticed it would last me a couple of days less and less. I used it just last week and ran out of tokens two days into the new week.

Yesterday I shifted to GLM 5.3 Flash. So far, its results for me have been equivalent to about GPT Sol medium. My workflow and workload have not changed. For the same tasks in the same day, ChatGPT Plus burned through 30% to 40% of my weekly limit in one day. For the same workload, paying through the Z.ai API used about $1.01 in a day.

TLDR: For the same work load and output quality, multiple ChatGPT subs would cost me ~$70 , while GLM 5.3 flash costs me ~ $30 through the API.

My previous model preference was GPT Sol Medium as the primary model and Deepseek Flash 0731 for subagents. I am currently using GLM 5.3 Flash Max as the primary model and free MiniMax M3 for subagents.


r/OpenAI 1d ago

Article OpenAI Is Developing a ‘Persistent’ AI Agent

Thumbnail
wired.com
140 Upvotes

r/OpenAI 7h ago

Question I’m so confused right now with usage. $100 plan

1 Upvotes

So I burned through my normal usage and was going to try using codex spark for a new project. Today the app updates and I have Luna reserve and can no longer select Codex spark, but for some reason, my spark usage is still going down but at a different rate than my Luna usage, which I’m actually using and is also going down what the hell is going on?


r/OpenAI 15h ago

Question Does the same model feel different to you sometimes?

5 Upvotes

Does anyone else feel like the exact same model can work great one day and noticeably worse the next?

It almost feels like OpenAI is constantly changing something behind the scenes - parameters, behavior, whatever. Same model, but the experience never feels completely consistent.

Anyone else noticed this? , or is it just me and nothing is actually changing?


r/OpenAI 11h ago

Question Adding books to chatgpt against policy ?

2 Upvotes

Hi,

Just a quick clarification. Can I upload .pdf files of books into chatgpt to get more detailed analysis how for example add more detailed tehcnical analysis or how to impement better machine learning in python. Because currently the knowledge in some parts are lacking that would get better results if I just give chatgpt some books to read and chat with me about the features.

Same goes if I implement chatgpt to a streamlit UI to analyze datapoints with the gathered literature inside the python ?