echo_tools 0.2.0

Domain tools for echo-agent framework (chart, data, database, git, media, web, rag)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Research and paper retrieval tools.
//!
//! Provides academic paper search (arxiv, Semantic Scholar),
//! PDF download + parse, and BibTeX generation.

pub mod arxiv;
pub mod bibtex;
pub mod pdf_fetch;
pub mod semantic_scholar;

pub use arxiv::ArxivSearchTool;
pub use bibtex::BibtexGenerateTool;
pub use pdf_fetch::PdfFetchTool;
pub use semantic_scholar::SemanticScholarSearchTool;