One thing I’d really like OpenAI to consider is a user-facing RAG / knowledge inspector for connected apps and user-owned data.
I actually had this need before: I wanted a way to inspect the mapping behind my own RAG layer — not the model’s internal reasoning, but the user-owned sources that ChatGPT is allowed to retrieve from.
Ideally, users could open an app/plugin and see something like:
Connected source → document → chunk/index → topic/relation → retrieval → answer
Useful views could include:
which files/sources are currently indexed
document/chunk mappings
metadata and freshness / last indexed time
topic or relationship mapping between documents
which chunks were retrieved for a specific question
retrieval ranking/score
stale, duplicate, missing, or excluded content
permission boundaries across connected apps
a manual “test retrieval” mode where a user enters a query and sees what the system would retrieve
It doesn’t need to expose raw embeddings or internal model reasoning. A visual knowledge map / retrieval trace would already be extremely useful.
This would help answer a very practical question:
“What does ChatGPT currently know from my connected data, and why did it retrieve this source instead of another one?”
I think this could be especially valuable as an OpenAI-provided plugin/app, so users can inspect the knowledge layer across the apps they have connected rather than every plugin developer building their own observability UI.
For advanced users, I could imagine an “index explorer” view similar to:
Query → candidate chunks → selected chunks → source documents → model response
That would make debugging stale retrieval, missing context, wrong document selection, and connector permission issues much easier.