Implement browser OAuth for ChatGPT subscriptions

Update app branding and OAuth callback handling, remove legacy Samsung
theme aliases, prune unavailable ChatGPT models, and delete cost data.
This commit is contained in:
Ryan Ward
2026-08-10 17:26:47 -05:00
parent 88ad290c7e
commit 10412c4c6f
11 changed files with 369 additions and 3774 deletions
+1 -1
View File
@@ -144,7 +144,7 @@ impl AgentRuntime for ChatGPTSubscriptionRuntime {
request: TurnRequest,
control: TurnControl,
) -> Result<AgentEventStream, AgentError> {
let mut builder = chatgpt::Client::builder().oauth();
let mut builder = chatgpt::Client::builder().oauth().allow_device_flow(false);
if let Some(auth_file) = &self.config.auth_file {
builder = builder.auth_file(auth_file);
}