Update new_context_window instructions (#29739)

This commit is contained in:
Andrey Mishchenko
2026-06-23 16:52:40 -07:00
committed by GitHub
Unverified
parent 1ec3def0b5
commit 3b4186986f
@@ -8,7 +8,7 @@ pub(crate) const NEW_CONTEXT_WINDOW_TOOL_NAME: &str = "new_context";
pub fn create_new_context_window_tool() -> ToolSpec {
ToolSpec::Function(ResponsesApiTool {
name: NEW_CONTEXT_WINDOW_TOOL_NAME.to_string(),
description: "Start a new context window.".to_string(),
description: "Start a new context window. Does not clear, reset, or otherwise affect environment state.".to_string(),
strict: false,
defer_loading: None,
parameters: JsonSchema::object(BTreeMap::new(), /*required*/ None, Some(false.into())),