api_claude 0.4.0

Claude API for accessing Anthropic's large language models (LLMs).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Server-Sent Events streaming support for Anthropic API

mod private {}

#[ cfg( feature = "streaming" ) ]
crate::mod_interface!
{
  layer types;
  layer client_impl;
}

#[ cfg( not( feature = "streaming" ) ) ]
crate::mod_interface!
{
  // Empty when streaming feature is disabled
}