[wip] goal shift (#23858)

This commit is contained in:
jif-oai
2026-05-26 11:22:18 +02:00
committed by GitHub
parent 04a8580f33
commit 7f9ab6e083
7 changed files with 623 additions and 184 deletions
+11
View File
@@ -244,6 +244,17 @@ impl CodexThread {
.await
}
/// Injects hidden model-visible items into the currently active turn.
///
/// This is the runtime-owned counterpart to user-facing `steer_input`.
/// It returns the unchanged items when this thread has no active turn.
pub async fn inject_response_items_into_active_turn(
&self,
items: Vec<ResponseInputItem>,
) -> Result<(), Vec<ResponseInputItem>> {
self.codex.session.inject_response_items(items).await
}
pub async fn set_app_server_client_info(
&self,
app_server_client_name: Option<String>,