mirror of
https://github.com/openai/codex.git
synced 2026-05-14 16:22:51 +00:00
Deferred dynamic tools need to round-trip a namespace so a tool returned by `tool_search` can be called through the same registry key that core uses for dispatch. This change adds namespace support for dynamic tool specs/calls, persists it through app-server thread state, and routes dynamic tool calls by full `ToolName` while still sending the app the leaf tool name. Deferred dynamic tools must provide a namespace; non-deferred dynamic tools may remain top-level. It also introduces `LoadableToolSpec` as the shared function-or-namespace Responses shape used by both `tool_search` output and dynamic tool registration, so dynamic tools use the same wrapping logic in both paths. Validation: - `cargo test -p codex-tools` - `cargo test -p codex-core tool_search` --------- Co-authored-by: Sayan Sisodiya <sayan@openai.com>
18 lines
525 B
Rust
18 lines
525 B
Rust
use crate::ToolDefinition;
|
|
use crate::parse_tool_input_schema;
|
|
use codex_protocol::dynamic_tools::DynamicToolSpec;
|
|
|
|
pub fn parse_dynamic_tool(tool: &DynamicToolSpec) -> Result<ToolDefinition, serde_json::Error> {
|
|
Ok(ToolDefinition {
|
|
name: tool.name.clone(),
|
|
description: tool.description.clone(),
|
|
input_schema: parse_tool_input_schema(&tool.input_schema)?,
|
|
output_schema: None,
|
|
defer_loading: tool.defer_loading,
|
|
})
|
|
}
|
|
|
|
#[cfg(test)]
|
|
#[path = "dynamic_tool_tests.rs"]
|
|
mod tests;
|