codex: remove create-api-key process env mutation

Co-authored-by: Codex <noreply@openai.com>
This commit is contained in:
Michael Fan
2026-03-26 15:16:43 -04:00
parent b54bfc88d5
commit 44d1bc54a5
4 changed files with 82 additions and 41 deletions

View File

@@ -127,6 +127,10 @@ impl CodexThread {
self.codex.session.set_dependency_env(values).await;
}
pub async fn dependency_env(&self) -> HashMap<String, String> {
self.codex.session.dependency_env().await
}
pub(crate) fn subscribe_status(&self) -> watch::Receiver<AgentStatus> {
self.codex.agent_status.clone()
}