api_anthropic 0.1.0

API to LLMs from Anthropic.
Documentation
#![ doc( html_root_url = "https://docs.rs/api_anthropic/latest/api_anthropic/" ) ]
#![ doc = include_str!( concat!( env!( "CARGO_MANIFEST_DIR" ), "/", "Readme.md" ) ) ]

use mod_interface::mod_interface;
use error_tools::thiserror;

/// Define a private namespace for all its items.
mod private
{
}

/// Serde-related exports.
pub mod ser
{
  pub use serde::
  {
    Serialize,
    Deserialize,
  };
  pub use serde_with::*;
}

// pub mod client;

crate::mod_interface!
{

  // layer client;
  // layer config;

  // layer content;
  // layer client;
  // layer messaging;

//   own use ::asbytes::IntoBytes;
//
//   exposed use ::reflect_tools::
//   {
//     Fields,
//     _IteratorTrait,
//     IteratorTrait,
//   };

}