mirror of
https://github.com/openai/codex.git
synced 2026-05-23 12:34:25 +00:00
## Why `list_dir` still carries a full spec/handler/test path, but nothing in the current model catalog advertises it via `experimental_supported_tools`. That leaves us maintaining an environment-backed tool surface that is effectively unused. ## What changed - delete the `list_dir` handler and its tests from `codex-core` - remove the `list_dir` spec builder, handler kind, and registry wiring from `codex-tools` - clean up the remaining internal README and registry tests so they no longer mention the removed tool
65 lines
2.7 KiB
Rust
65 lines
2.7 KiB
Rust
use super::*;
|
|
use crate::JsonSchema;
|
|
use pretty_assertions::assert_eq;
|
|
use std::collections::BTreeMap;
|
|
|
|
#[test]
|
|
fn test_sync_tool_matches_expected_spec() {
|
|
assert_eq!(
|
|
create_test_sync_tool(),
|
|
ToolSpec::Function(ResponsesApiTool {
|
|
name: "test_sync_tool".to_string(),
|
|
description: "Internal synchronization helper used by Codex integration tests."
|
|
.to_string(),
|
|
strict: false,
|
|
defer_loading: None,
|
|
parameters: JsonSchema::object(BTreeMap::from([
|
|
(
|
|
"barrier".to_string(),
|
|
JsonSchema::object(
|
|
BTreeMap::from([
|
|
(
|
|
"id".to_string(),
|
|
JsonSchema::string(Some(
|
|
"Identifier shared by concurrent calls that should rendezvous"
|
|
.to_string(),
|
|
)),
|
|
),
|
|
(
|
|
"participants".to_string(),
|
|
JsonSchema::number(Some(
|
|
"Number of tool calls that must arrive before the barrier opens"
|
|
.to_string(),
|
|
)),
|
|
),
|
|
(
|
|
"timeout_ms".to_string(),
|
|
JsonSchema::number(Some(
|
|
"Maximum time in milliseconds to wait at the barrier"
|
|
.to_string(),
|
|
)),
|
|
),
|
|
]),
|
|
Some(vec!["id".to_string(), "participants".to_string()]),
|
|
Some(false.into()),
|
|
),
|
|
),
|
|
(
|
|
"sleep_after_ms".to_string(),
|
|
JsonSchema::number(Some(
|
|
"Optional delay in milliseconds after completing the barrier"
|
|
.to_string(),
|
|
)),
|
|
),
|
|
(
|
|
"sleep_before_ms".to_string(),
|
|
JsonSchema::number(Some(
|
|
"Optional delay in milliseconds before any other action".to_string(),
|
|
)),
|
|
),
|
|
]), /*required*/ None, Some(false.into())),
|
|
output_schema: None,
|
|
})
|
|
);
|
|
}
|