pub struct NotebookEditTool;Expand description
NotebookEdit tool - edit Jupyter notebook (.ipynb) cells
Implementations§
Source§impl NotebookEditTool
impl NotebookEditTool
pub fn new() -> Self
pub fn name(&self) -> &str
pub fn description(&self) -> &str
pub fn user_facing_name(&self, _input: Option<&Value>) -> String
pub fn get_tool_use_summary(&self, input: Option<&Value>) -> Option<String>
pub fn render_tool_result_message(&self, content: &Value) -> Option<String>
pub fn input_schema(&self) -> ToolInputSchema
pub async fn execute( &self, input: Value, context: &ToolContext, ) -> Result<ToolResult, AgentError>
Trait Implementations§
Source§impl Default for NotebookEditTool
impl Default for NotebookEditTool
Source§impl ToolRender for NotebookEditTool
impl ToolRender for NotebookEditTool
Auto Trait Implementations§
impl Freeze for NotebookEditTool
impl RefUnwindSafe for NotebookEditTool
impl Send for NotebookEditTool
impl Sync for NotebookEditTool
impl Unpin for NotebookEditTool
impl UnsafeUnpin for NotebookEditTool
impl UnwindSafe for NotebookEditTool
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more