agentic-tools-core 0.1.3

Core traits and types for agentic-tools library family
Documentation
1
2
3
4
5
6
7
8
9
10
//! Provider-specific schema renderers.
//!
//! Each provider has slightly different requirements for tool schemas:
//! - OpenAI: `{"type": "function", "function": {...}}`
//! - Anthropic: Direct object with `input_schema` field
//! - MCP: Direct object with `inputSchema`/`outputSchema`

pub mod anthropic;
pub mod mcp;
pub mod openai;