TonboLite – SQLite Extension Based on Tonbo
Swiftide – Develop AI Agent with Rust Example of searching code with ripgrep. #[swiftide_macros::tool( description = "Searches code", param(name = "code_query", description = "The code query") )] async fn search_code( context: &dyn AgentContext, code_query: &str, ) -> Result<ToolOutput, ToolError> { let command_output = context .exec_cmd(&Command::shell(format!("rg '{code_query}'"))) .await?; Ok(command_output.into()) } agents::Agent::builder() .llm(&openai) .tools(vec![search_code()]) .build()? .query("In what … Read more